blob: 2e03c17c249948135238c023998c01420d0172f5 [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 Roedel2b324502012-06-21 16:29:10 +020034#include <linux/irq.h>
35#include <linux/msi.h>
36#include <asm/irq_remapping.h>
37#include <asm/io_apic.h>
38#include <asm/apic.h>
39#include <asm/hw_irq.h>
Joerg Roedel17f5b562011-07-06 17:14:44 +020040#include <asm/msidef.h>
Joerg Roedelb6c02712008-06-26 21:27:53 +020041#include <asm/proto.h>
FUJITA Tomonori46a7fa22008-07-11 10:23:42 +090042#include <asm/iommu.h>
Joerg Roedel1d9b16d2008-11-27 18:39:15 +010043#include <asm/gart.h>
Joerg Roedel27c21272011-05-30 15:56:24 +020044#include <asm/dma.h>
Joerg Roedel403f81d2011-06-14 16:44:25 +020045
46#include "amd_iommu_proto.h"
47#include "amd_iommu_types.h"
Joerg Roedel6b474b82012-06-26 16:46:04 +020048#include "irq_remapping.h"
Joerg Roedelb6c02712008-06-26 21:27:53 +020049
50#define CMD_SET_TYPE(cmd, t) ((cmd)->data[1] |= ((t) << 28))
51
Joerg Roedel815b33f2011-04-06 17:26:49 +020052#define LOOP_TIMEOUT 100000
Joerg Roedel136f78a2008-07-11 17:14:27 +020053
Ohad Ben-Cohenaa3de9c2011-11-10 11:32:29 +020054/*
55 * This bitmap is used to advertise the page sizes our hardware support
56 * to the IOMMU core, which will then use this information to split
57 * physically contiguous memory regions it is mapping into page sizes
58 * that we support.
59 *
Joerg Roedel954e3dd2012-12-02 15:35:37 +010060 * 512GB Pages are not supported due to a hardware bug
Ohad Ben-Cohenaa3de9c2011-11-10 11:32:29 +020061 */
Joerg Roedel954e3dd2012-12-02 15:35:37 +010062#define AMD_IOMMU_PGSIZES ((~0xFFFUL) & ~(2ULL << 38))
Ohad Ben-Cohenaa3de9c2011-11-10 11:32:29 +020063
Joerg Roedelb6c02712008-06-26 21:27:53 +020064static DEFINE_RWLOCK(amd_iommu_devtable_lock);
65
Joerg Roedelbd60b732008-09-11 10:24:48 +020066/* A list of preallocated protection domains */
67static LIST_HEAD(iommu_pd_list);
68static DEFINE_SPINLOCK(iommu_pd_list_lock);
69
Joerg Roedel8fa5f802011-06-09 12:24:45 +020070/* List of all available dev_data structures */
71static LIST_HEAD(dev_data_list);
72static DEFINE_SPINLOCK(dev_data_list_lock);
73
Joerg Roedel6efed632012-06-14 15:52:58 +020074LIST_HEAD(ioapic_map);
75LIST_HEAD(hpet_map);
76
Joerg Roedel0feae532009-08-26 15:26:30 +020077/*
78 * Domain for untranslated devices - only allocated
79 * if iommu=pt passed on kernel cmd line.
80 */
81static struct protection_domain *pt_domain;
82
Joerg Roedel26961ef2008-12-03 17:00:17 +010083static struct iommu_ops amd_iommu_ops;
Joerg Roedel26961ef2008-12-03 17:00:17 +010084
Joerg Roedel72e1dcc2011-11-10 19:13:51 +010085static ATOMIC_NOTIFIER_HEAD(ppr_notifier);
Joerg Roedel52815b72011-11-17 17:24:28 +010086int amd_iommu_max_glx_val = -1;
Joerg Roedel72e1dcc2011-11-10 19:13:51 +010087
Joerg Roedelac1534a2012-06-21 14:52:40 +020088static struct dma_map_ops amd_iommu_dma_ops;
89
Joerg Roedel431b2a22008-07-11 17:14:22 +020090/*
91 * general struct to manage commands send to an IOMMU
92 */
Joerg Roedeld6449532008-07-11 17:14:28 +020093struct iommu_cmd {
Joerg Roedelb6c02712008-06-26 21:27:53 +020094 u32 data[4];
95};
96
Joerg Roedel05152a02012-06-15 16:53:51 +020097struct kmem_cache *amd_iommu_irq_cache;
98
Joerg Roedel04bfdd82009-09-02 16:00:23 +020099static void update_domain(struct protection_domain *domain);
Joerg Roedel5abcdba2011-12-01 15:49:45 +0100100static int __init alloc_passthrough_domain(void);
Chris Wrightc1eee672009-05-21 00:56:58 -0700101
Joerg Roedel15898bb2009-11-24 15:39:42 +0100102/****************************************************************************
103 *
104 * Helper functions
105 *
106 ****************************************************************************/
107
Joerg Roedelf62dda62011-06-09 12:55:35 +0200108static struct iommu_dev_data *alloc_dev_data(u16 devid)
Joerg Roedel8fa5f802011-06-09 12:24:45 +0200109{
110 struct iommu_dev_data *dev_data;
111 unsigned long flags;
112
113 dev_data = kzalloc(sizeof(*dev_data), GFP_KERNEL);
114 if (!dev_data)
115 return NULL;
116
Joerg Roedelf62dda62011-06-09 12:55:35 +0200117 dev_data->devid = devid;
Joerg Roedel8fa5f802011-06-09 12:24:45 +0200118 atomic_set(&dev_data->bind, 0);
119
120 spin_lock_irqsave(&dev_data_list_lock, flags);
121 list_add_tail(&dev_data->dev_data_list, &dev_data_list);
122 spin_unlock_irqrestore(&dev_data_list_lock, flags);
123
124 return dev_data;
125}
126
127static void free_dev_data(struct iommu_dev_data *dev_data)
128{
129 unsigned long flags;
130
131 spin_lock_irqsave(&dev_data_list_lock, flags);
132 list_del(&dev_data->dev_data_list);
133 spin_unlock_irqrestore(&dev_data_list_lock, flags);
134
135 kfree(dev_data);
136}
137
Joerg Roedel3b03bb72011-06-09 18:53:25 +0200138static struct iommu_dev_data *search_dev_data(u16 devid)
139{
140 struct iommu_dev_data *dev_data;
141 unsigned long flags;
142
143 spin_lock_irqsave(&dev_data_list_lock, flags);
144 list_for_each_entry(dev_data, &dev_data_list, dev_data_list) {
145 if (dev_data->devid == devid)
146 goto out_unlock;
147 }
148
149 dev_data = NULL;
150
151out_unlock:
152 spin_unlock_irqrestore(&dev_data_list_lock, flags);
153
154 return dev_data;
155}
156
157static struct iommu_dev_data *find_dev_data(u16 devid)
158{
159 struct iommu_dev_data *dev_data;
160
161 dev_data = search_dev_data(devid);
162
163 if (dev_data == NULL)
164 dev_data = alloc_dev_data(devid);
165
166 return dev_data;
167}
168
Joerg Roedel15898bb2009-11-24 15:39:42 +0100169static inline u16 get_device_id(struct device *dev)
170{
171 struct pci_dev *pdev = to_pci_dev(dev);
172
Shuah Khan6f2729b2013-02-27 17:07:30 -0700173 return PCI_DEVID(pdev->bus->number, pdev->devfn);
Joerg Roedel15898bb2009-11-24 15:39:42 +0100174}
175
Joerg Roedel657cbb62009-11-23 15:26:46 +0100176static struct iommu_dev_data *get_dev_data(struct device *dev)
177{
178 return dev->archdata.iommu;
179}
180
Joerg Roedel5abcdba2011-12-01 15:49:45 +0100181static bool pci_iommuv2_capable(struct pci_dev *pdev)
182{
183 static const int caps[] = {
184 PCI_EXT_CAP_ID_ATS,
Joerg Roedel46277b72011-12-07 14:34:02 +0100185 PCI_EXT_CAP_ID_PRI,
186 PCI_EXT_CAP_ID_PASID,
Joerg Roedel5abcdba2011-12-01 15:49:45 +0100187 };
188 int i, pos;
189
190 for (i = 0; i < 3; ++i) {
191 pos = pci_find_ext_capability(pdev, caps[i]);
192 if (pos == 0)
193 return false;
194 }
195
196 return true;
197}
198
Joerg Roedel6a113dd2011-12-01 12:04:58 +0100199static bool pdev_pri_erratum(struct pci_dev *pdev, u32 erratum)
200{
201 struct iommu_dev_data *dev_data;
202
203 dev_data = get_dev_data(&pdev->dev);
204
205 return dev_data->errata & (1 << erratum) ? true : false;
206}
207
Joerg Roedel71c70982009-11-24 16:43:06 +0100208/*
209 * In this function the list of preallocated protection domains is traversed to
210 * find the domain for a specific device
211 */
212static struct dma_ops_domain *find_protection_domain(u16 devid)
213{
214 struct dma_ops_domain *entry, *ret = NULL;
215 unsigned long flags;
216 u16 alias = amd_iommu_alias_table[devid];
217
218 if (list_empty(&iommu_pd_list))
219 return NULL;
220
221 spin_lock_irqsave(&iommu_pd_list_lock, flags);
222
223 list_for_each_entry(entry, &iommu_pd_list, list) {
224 if (entry->target_dev == devid ||
225 entry->target_dev == alias) {
226 ret = entry;
227 break;
228 }
229 }
230
231 spin_unlock_irqrestore(&iommu_pd_list_lock, flags);
232
233 return ret;
234}
235
Joerg Roedel98fc5a62009-11-24 17:19:23 +0100236/*
237 * This function checks if the driver got a valid device from the caller to
238 * avoid dereferencing invalid pointers.
239 */
240static bool check_device(struct device *dev)
241{
242 u16 devid;
243
244 if (!dev || !dev->dma_mask)
245 return false;
246
Yijing Wangb82a2272013-12-05 19:42:41 +0800247 /* No PCI device */
248 if (!dev_is_pci(dev))
Joerg Roedel98fc5a62009-11-24 17:19:23 +0100249 return false;
250
251 devid = get_device_id(dev);
252
253 /* Out of our scope? */
254 if (devid > amd_iommu_last_bdf)
255 return false;
256
257 if (amd_iommu_rlookup_table[devid] == NULL)
258 return false;
259
260 return true;
261}
262
Alex Williamson2851db22012-10-08 22:49:41 -0600263static int init_iommu_group(struct device *dev)
264{
Alex Williamson2851db22012-10-08 22:49:41 -0600265 struct iommu_group *group;
Alex Williamson2851db22012-10-08 22:49:41 -0600266
Alex Williamson65d53522014-07-03 09:51:30 -0600267 group = iommu_group_get_for_dev(dev);
Alex Williamson2851db22012-10-08 22:49:41 -0600268
Alex Williamson65d53522014-07-03 09:51:30 -0600269 if (IS_ERR(group))
270 return PTR_ERR(group);
Alex Williamson2851db22012-10-08 22:49:41 -0600271
Alex Williamson65d53522014-07-03 09:51:30 -0600272 iommu_group_put(group);
273 return 0;
Alex Williamsoneb9c9522012-10-08 22:49:35 -0600274}
275
Alex Williamsonc1931092014-07-03 09:51:24 -0600276static int __last_alias(struct pci_dev *pdev, u16 alias, void *data)
277{
278 *(u16 *)data = alias;
279 return 0;
280}
281
282static u16 get_alias(struct device *dev)
283{
284 struct pci_dev *pdev = to_pci_dev(dev);
285 u16 devid, ivrs_alias, pci_alias;
286
287 devid = get_device_id(dev);
288 ivrs_alias = amd_iommu_alias_table[devid];
289 pci_for_each_dma_alias(pdev, __last_alias, &pci_alias);
290
291 if (ivrs_alias == pci_alias)
292 return ivrs_alias;
293
294 /*
295 * DMA alias showdown
296 *
297 * The IVRS is fairly reliable in telling us about aliases, but it
298 * can't know about every screwy device. If we don't have an IVRS
299 * reported alias, use the PCI reported alias. In that case we may
300 * still need to initialize the rlookup and dev_table entries if the
301 * alias is to a non-existent device.
302 */
303 if (ivrs_alias == devid) {
304 if (!amd_iommu_rlookup_table[pci_alias]) {
305 amd_iommu_rlookup_table[pci_alias] =
306 amd_iommu_rlookup_table[devid];
307 memcpy(amd_iommu_dev_table[pci_alias].data,
308 amd_iommu_dev_table[devid].data,
309 sizeof(amd_iommu_dev_table[pci_alias].data));
310 }
311
312 return pci_alias;
313 }
314
315 pr_info("AMD-Vi: Using IVRS reported alias %02x:%02x.%d "
316 "for device %s[%04x:%04x], kernel reported alias "
317 "%02x:%02x.%d\n", PCI_BUS_NUM(ivrs_alias), PCI_SLOT(ivrs_alias),
318 PCI_FUNC(ivrs_alias), dev_name(dev), pdev->vendor, pdev->device,
319 PCI_BUS_NUM(pci_alias), PCI_SLOT(pci_alias),
320 PCI_FUNC(pci_alias));
321
322 /*
323 * If we don't have a PCI DMA alias and the IVRS alias is on the same
324 * bus, then the IVRS table may know about a quirk that we don't.
325 */
326 if (pci_alias == devid &&
327 PCI_BUS_NUM(ivrs_alias) == pdev->bus->number) {
328 pdev->dev_flags |= PCI_DEV_FLAGS_DMA_ALIAS_DEVFN;
329 pdev->dma_alias_devfn = ivrs_alias & 0xff;
330 pr_info("AMD-Vi: Added PCI DMA alias %02x.%d for %s\n",
331 PCI_SLOT(ivrs_alias), PCI_FUNC(ivrs_alias),
332 dev_name(dev));
333 }
334
335 return ivrs_alias;
336}
337
Alex Williamsoneb9c9522012-10-08 22:49:35 -0600338static int iommu_init_device(struct device *dev)
339{
340 struct pci_dev *pdev = to_pci_dev(dev);
341 struct iommu_dev_data *dev_data;
342 u16 alias;
343 int ret;
344
345 if (dev->archdata.iommu)
346 return 0;
347
348 dev_data = find_dev_data(get_device_id(dev));
349 if (!dev_data)
350 return -ENOMEM;
351
Alex Williamsonc1931092014-07-03 09:51:24 -0600352 alias = get_alias(dev);
353
Alex Williamsoneb9c9522012-10-08 22:49:35 -0600354 if (alias != dev_data->devid) {
355 struct iommu_dev_data *alias_data;
356
357 alias_data = find_dev_data(alias);
358 if (alias_data == NULL) {
359 pr_err("AMD-Vi: Warning: Unhandled device %s\n",
360 dev_name(dev));
361 free_dev_data(dev_data);
362 return -ENOTSUPP;
363 }
364 dev_data->alias_data = alias_data;
365 }
366
367 ret = init_iommu_group(dev);
Radmila Kompováe644a012013-05-02 17:24:25 +0200368 if (ret) {
369 free_dev_data(dev_data);
Alex Williamson9dcd6132012-05-30 14:19:07 -0600370 return ret;
Radmila Kompováe644a012013-05-02 17:24:25 +0200371 }
Alex Williamson9dcd6132012-05-30 14:19:07 -0600372
Joerg Roedel5abcdba2011-12-01 15:49:45 +0100373 if (pci_iommuv2_capable(pdev)) {
374 struct amd_iommu *iommu;
375
376 iommu = amd_iommu_rlookup_table[dev_data->devid];
377 dev_data->iommu_v2 = iommu->is_iommu_v2;
378 }
379
Joerg Roedel657cbb62009-11-23 15:26:46 +0100380 dev->archdata.iommu = dev_data;
381
Joerg Roedel657cbb62009-11-23 15:26:46 +0100382 return 0;
383}
384
Joerg Roedel26018872011-06-06 16:50:14 +0200385static void iommu_ignore_device(struct device *dev)
386{
387 u16 devid, alias;
388
389 devid = get_device_id(dev);
390 alias = amd_iommu_alias_table[devid];
391
392 memset(&amd_iommu_dev_table[devid], 0, sizeof(struct dev_table_entry));
393 memset(&amd_iommu_dev_table[alias], 0, sizeof(struct dev_table_entry));
394
395 amd_iommu_rlookup_table[devid] = NULL;
396 amd_iommu_rlookup_table[alias] = NULL;
397}
398
Joerg Roedel657cbb62009-11-23 15:26:46 +0100399static void iommu_uninit_device(struct device *dev)
400{
Alex Williamsonc1931092014-07-03 09:51:24 -0600401 struct iommu_dev_data *dev_data = search_dev_data(get_device_id(dev));
402
403 if (!dev_data)
404 return;
405
Alex Williamson9dcd6132012-05-30 14:19:07 -0600406 iommu_group_remove_device(dev);
407
Alex Williamsonc1931092014-07-03 09:51:24 -0600408 /* Unlink from alias, it may change if another device is re-plugged */
409 dev_data->alias_data = NULL;
410
Joerg Roedel8fa5f802011-06-09 12:24:45 +0200411 /*
Alex Williamsonc1931092014-07-03 09:51:24 -0600412 * We keep dev_data around for unplugged devices and reuse it when the
413 * device is re-plugged - not doing so would introduce a ton of races.
Joerg Roedel8fa5f802011-06-09 12:24:45 +0200414 */
Joerg Roedel657cbb62009-11-23 15:26:46 +0100415}
Joerg Roedelb7cc9552009-12-10 11:03:39 +0100416
417void __init amd_iommu_uninit_devices(void)
418{
Joerg Roedel8fa5f802011-06-09 12:24:45 +0200419 struct iommu_dev_data *dev_data, *n;
Joerg Roedelb7cc9552009-12-10 11:03:39 +0100420 struct pci_dev *pdev = NULL;
421
422 for_each_pci_dev(pdev) {
423
424 if (!check_device(&pdev->dev))
425 continue;
426
427 iommu_uninit_device(&pdev->dev);
428 }
Joerg Roedel8fa5f802011-06-09 12:24:45 +0200429
430 /* Free all of our dev_data structures */
431 list_for_each_entry_safe(dev_data, n, &dev_data_list, dev_data_list)
432 free_dev_data(dev_data);
Joerg Roedelb7cc9552009-12-10 11:03:39 +0100433}
434
435int __init amd_iommu_init_devices(void)
436{
437 struct pci_dev *pdev = NULL;
438 int ret = 0;
439
440 for_each_pci_dev(pdev) {
441
442 if (!check_device(&pdev->dev))
443 continue;
444
445 ret = iommu_init_device(&pdev->dev);
Joerg Roedel26018872011-06-06 16:50:14 +0200446 if (ret == -ENOTSUPP)
447 iommu_ignore_device(&pdev->dev);
448 else if (ret)
Joerg Roedelb7cc9552009-12-10 11:03:39 +0100449 goto out_free;
450 }
451
452 return 0;
453
454out_free:
455
456 amd_iommu_uninit_devices();
457
458 return ret;
459}
Joerg Roedel7f265082008-12-12 13:50:21 +0100460#ifdef CONFIG_AMD_IOMMU_STATS
461
462/*
463 * Initialization code for statistics collection
464 */
465
Joerg Roedelda49f6d2008-12-12 14:59:58 +0100466DECLARE_STATS_COUNTER(compl_wait);
Joerg Roedel0f2a86f2008-12-12 15:05:16 +0100467DECLARE_STATS_COUNTER(cnt_map_single);
Joerg Roedel146a6912008-12-12 15:07:12 +0100468DECLARE_STATS_COUNTER(cnt_unmap_single);
Joerg Roedeld03f0672008-12-12 15:09:48 +0100469DECLARE_STATS_COUNTER(cnt_map_sg);
Joerg Roedel55877a62008-12-12 15:12:14 +0100470DECLARE_STATS_COUNTER(cnt_unmap_sg);
Joerg Roedelc8f0fb32008-12-12 15:14:21 +0100471DECLARE_STATS_COUNTER(cnt_alloc_coherent);
Joerg Roedel5d31ee72008-12-12 15:16:38 +0100472DECLARE_STATS_COUNTER(cnt_free_coherent);
Joerg Roedelc1858972008-12-12 15:42:39 +0100473DECLARE_STATS_COUNTER(cross_page);
Joerg Roedelf57d98a2008-12-12 15:46:29 +0100474DECLARE_STATS_COUNTER(domain_flush_single);
Joerg Roedel18811f52008-12-12 15:48:28 +0100475DECLARE_STATS_COUNTER(domain_flush_all);
Joerg Roedel5774f7c2008-12-12 15:57:30 +0100476DECLARE_STATS_COUNTER(alloced_io_mem);
Joerg Roedel8ecaf8f2008-12-12 16:13:04 +0100477DECLARE_STATS_COUNTER(total_map_requests);
Joerg Roedel399be2f2011-12-01 16:53:47 +0100478DECLARE_STATS_COUNTER(complete_ppr);
479DECLARE_STATS_COUNTER(invalidate_iotlb);
480DECLARE_STATS_COUNTER(invalidate_iotlb_all);
481DECLARE_STATS_COUNTER(pri_requests);
482
Joerg Roedel7f265082008-12-12 13:50:21 +0100483static struct dentry *stats_dir;
Joerg Roedel7f265082008-12-12 13:50:21 +0100484static struct dentry *de_fflush;
485
486static void amd_iommu_stats_add(struct __iommu_counter *cnt)
487{
488 if (stats_dir == NULL)
489 return;
490
491 cnt->dent = debugfs_create_u64(cnt->name, 0444, stats_dir,
492 &cnt->value);
493}
494
495static void amd_iommu_stats_init(void)
496{
497 stats_dir = debugfs_create_dir("amd-iommu", NULL);
498 if (stats_dir == NULL)
499 return;
500
Joerg Roedel7f265082008-12-12 13:50:21 +0100501 de_fflush = debugfs_create_bool("fullflush", 0444, stats_dir,
Dan Carpenter3775d482012-06-27 12:09:18 +0300502 &amd_iommu_unmap_flush);
Joerg Roedelda49f6d2008-12-12 14:59:58 +0100503
504 amd_iommu_stats_add(&compl_wait);
Joerg Roedel0f2a86f2008-12-12 15:05:16 +0100505 amd_iommu_stats_add(&cnt_map_single);
Joerg Roedel146a6912008-12-12 15:07:12 +0100506 amd_iommu_stats_add(&cnt_unmap_single);
Joerg Roedeld03f0672008-12-12 15:09:48 +0100507 amd_iommu_stats_add(&cnt_map_sg);
Joerg Roedel55877a62008-12-12 15:12:14 +0100508 amd_iommu_stats_add(&cnt_unmap_sg);
Joerg Roedelc8f0fb32008-12-12 15:14:21 +0100509 amd_iommu_stats_add(&cnt_alloc_coherent);
Joerg Roedel5d31ee72008-12-12 15:16:38 +0100510 amd_iommu_stats_add(&cnt_free_coherent);
Joerg Roedelc1858972008-12-12 15:42:39 +0100511 amd_iommu_stats_add(&cross_page);
Joerg Roedelf57d98a2008-12-12 15:46:29 +0100512 amd_iommu_stats_add(&domain_flush_single);
Joerg Roedel18811f52008-12-12 15:48:28 +0100513 amd_iommu_stats_add(&domain_flush_all);
Joerg Roedel5774f7c2008-12-12 15:57:30 +0100514 amd_iommu_stats_add(&alloced_io_mem);
Joerg Roedel8ecaf8f2008-12-12 16:13:04 +0100515 amd_iommu_stats_add(&total_map_requests);
Joerg Roedel399be2f2011-12-01 16:53:47 +0100516 amd_iommu_stats_add(&complete_ppr);
517 amd_iommu_stats_add(&invalidate_iotlb);
518 amd_iommu_stats_add(&invalidate_iotlb_all);
519 amd_iommu_stats_add(&pri_requests);
Joerg Roedel7f265082008-12-12 13:50:21 +0100520}
521
522#endif
523
Joerg Roedel431b2a22008-07-11 17:14:22 +0200524/****************************************************************************
525 *
Joerg Roedela80dc3e2008-09-11 16:51:41 +0200526 * Interrupt handling functions
527 *
528 ****************************************************************************/
529
Joerg Roedele3e59872009-09-03 14:02:10 +0200530static void dump_dte_entry(u16 devid)
531{
532 int i;
533
Joerg Roedelee6c2862011-11-09 12:06:03 +0100534 for (i = 0; i < 4; ++i)
535 pr_err("AMD-Vi: DTE[%d]: %016llx\n", i,
Joerg Roedele3e59872009-09-03 14:02:10 +0200536 amd_iommu_dev_table[devid].data[i]);
537}
538
Joerg Roedel945b4ac2009-09-03 14:25:02 +0200539static void dump_command(unsigned long phys_addr)
540{
541 struct iommu_cmd *cmd = phys_to_virt(phys_addr);
542 int i;
543
544 for (i = 0; i < 4; ++i)
545 pr_err("AMD-Vi: CMD[%d]: %08x\n", i, cmd->data[i]);
546}
547
Joerg Roedela345b232009-09-03 15:01:43 +0200548static void iommu_print_event(struct amd_iommu *iommu, void *__evt)
Joerg Roedel90008ee2008-09-09 16:41:05 +0200549{
Joerg Roedel3d06fca2012-04-12 14:12:00 +0200550 int type, devid, domid, flags;
551 volatile u32 *event = __evt;
552 int count = 0;
553 u64 address;
554
555retry:
556 type = (event[1] >> EVENT_TYPE_SHIFT) & EVENT_TYPE_MASK;
557 devid = (event[0] >> EVENT_DEVID_SHIFT) & EVENT_DEVID_MASK;
558 domid = (event[1] >> EVENT_DOMID_SHIFT) & EVENT_DOMID_MASK;
559 flags = (event[1] >> EVENT_FLAGS_SHIFT) & EVENT_FLAGS_MASK;
560 address = (u64)(((u64)event[3]) << 32) | event[2];
561
562 if (type == 0) {
563 /* Did we hit the erratum? */
564 if (++count == LOOP_TIMEOUT) {
565 pr_err("AMD-Vi: No event written to event log\n");
566 return;
567 }
568 udelay(1);
569 goto retry;
570 }
Joerg Roedel90008ee2008-09-09 16:41:05 +0200571
Joerg Roedel4c6f40d2009-09-01 16:43:58 +0200572 printk(KERN_ERR "AMD-Vi: Event logged [");
Joerg Roedel90008ee2008-09-09 16:41:05 +0200573
574 switch (type) {
575 case EVENT_TYPE_ILL_DEV:
576 printk("ILLEGAL_DEV_TABLE_ENTRY device=%02x:%02x.%x "
577 "address=0x%016llx flags=0x%04x]\n",
Shuah Khanc5081cd2013-02-27 17:07:19 -0700578 PCI_BUS_NUM(devid), PCI_SLOT(devid), PCI_FUNC(devid),
Joerg Roedel90008ee2008-09-09 16:41:05 +0200579 address, flags);
Joerg Roedele3e59872009-09-03 14:02:10 +0200580 dump_dte_entry(devid);
Joerg Roedel90008ee2008-09-09 16:41:05 +0200581 break;
582 case EVENT_TYPE_IO_FAULT:
583 printk("IO_PAGE_FAULT device=%02x:%02x.%x "
584 "domain=0x%04x address=0x%016llx flags=0x%04x]\n",
Shuah Khanc5081cd2013-02-27 17:07:19 -0700585 PCI_BUS_NUM(devid), PCI_SLOT(devid), PCI_FUNC(devid),
Joerg Roedel90008ee2008-09-09 16:41:05 +0200586 domid, address, flags);
587 break;
588 case EVENT_TYPE_DEV_TAB_ERR:
589 printk("DEV_TAB_HARDWARE_ERROR device=%02x:%02x.%x "
590 "address=0x%016llx flags=0x%04x]\n",
Shuah Khanc5081cd2013-02-27 17:07:19 -0700591 PCI_BUS_NUM(devid), PCI_SLOT(devid), PCI_FUNC(devid),
Joerg Roedel90008ee2008-09-09 16:41:05 +0200592 address, flags);
593 break;
594 case EVENT_TYPE_PAGE_TAB_ERR:
595 printk("PAGE_TAB_HARDWARE_ERROR device=%02x:%02x.%x "
596 "domain=0x%04x address=0x%016llx flags=0x%04x]\n",
Shuah Khanc5081cd2013-02-27 17:07:19 -0700597 PCI_BUS_NUM(devid), PCI_SLOT(devid), PCI_FUNC(devid),
Joerg Roedel90008ee2008-09-09 16:41:05 +0200598 domid, address, flags);
599 break;
600 case EVENT_TYPE_ILL_CMD:
601 printk("ILLEGAL_COMMAND_ERROR address=0x%016llx]\n", address);
Joerg Roedel945b4ac2009-09-03 14:25:02 +0200602 dump_command(address);
Joerg Roedel90008ee2008-09-09 16:41:05 +0200603 break;
604 case EVENT_TYPE_CMD_HARD_ERR:
605 printk("COMMAND_HARDWARE_ERROR address=0x%016llx "
606 "flags=0x%04x]\n", address, flags);
607 break;
608 case EVENT_TYPE_IOTLB_INV_TO:
609 printk("IOTLB_INV_TIMEOUT device=%02x:%02x.%x "
610 "address=0x%016llx]\n",
Shuah Khanc5081cd2013-02-27 17:07:19 -0700611 PCI_BUS_NUM(devid), PCI_SLOT(devid), PCI_FUNC(devid),
Joerg Roedel90008ee2008-09-09 16:41:05 +0200612 address);
613 break;
614 case EVENT_TYPE_INV_DEV_REQ:
615 printk("INVALID_DEVICE_REQUEST device=%02x:%02x.%x "
616 "address=0x%016llx flags=0x%04x]\n",
Shuah Khanc5081cd2013-02-27 17:07:19 -0700617 PCI_BUS_NUM(devid), PCI_SLOT(devid), PCI_FUNC(devid),
Joerg Roedel90008ee2008-09-09 16:41:05 +0200618 address, flags);
619 break;
620 default:
621 printk(KERN_ERR "UNKNOWN type=0x%02x]\n", type);
622 }
Joerg Roedel3d06fca2012-04-12 14:12:00 +0200623
624 memset(__evt, 0, 4 * sizeof(u32));
Joerg Roedel90008ee2008-09-09 16:41:05 +0200625}
626
627static void iommu_poll_events(struct amd_iommu *iommu)
628{
629 u32 head, tail;
Joerg Roedel90008ee2008-09-09 16:41:05 +0200630
631 head = readl(iommu->mmio_base + MMIO_EVT_HEAD_OFFSET);
632 tail = readl(iommu->mmio_base + MMIO_EVT_TAIL_OFFSET);
633
634 while (head != tail) {
Joerg Roedela345b232009-09-03 15:01:43 +0200635 iommu_print_event(iommu, iommu->evt_buf + head);
Joerg Roedel90008ee2008-09-09 16:41:05 +0200636 head = (head + EVENT_ENTRY_SIZE) % iommu->evt_buf_size;
637 }
638
639 writel(head, iommu->mmio_base + MMIO_EVT_HEAD_OFFSET);
Joerg Roedel90008ee2008-09-09 16:41:05 +0200640}
641
Joerg Roedeleee53532012-06-01 15:20:23 +0200642static void iommu_handle_ppr_entry(struct amd_iommu *iommu, u64 *raw)
Joerg Roedel72e1dcc2011-11-10 19:13:51 +0100643{
644 struct amd_iommu_fault fault;
Joerg Roedel72e1dcc2011-11-10 19:13:51 +0100645
Joerg Roedel399be2f2011-12-01 16:53:47 +0100646 INC_STATS_COUNTER(pri_requests);
647
Joerg Roedel72e1dcc2011-11-10 19:13:51 +0100648 if (PPR_REQ_TYPE(raw[0]) != PPR_REQ_FAULT) {
649 pr_err_ratelimited("AMD-Vi: Unknown PPR request received\n");
650 return;
651 }
652
653 fault.address = raw[1];
654 fault.pasid = PPR_PASID(raw[0]);
655 fault.device_id = PPR_DEVID(raw[0]);
656 fault.tag = PPR_TAG(raw[0]);
657 fault.flags = PPR_FLAGS(raw[0]);
658
Joerg Roedel72e1dcc2011-11-10 19:13:51 +0100659 atomic_notifier_call_chain(&ppr_notifier, 0, &fault);
660}
661
662static void iommu_poll_ppr_log(struct amd_iommu *iommu)
663{
Joerg Roedel72e1dcc2011-11-10 19:13:51 +0100664 u32 head, tail;
665
666 if (iommu->ppr_log == NULL)
667 return;
668
Joerg Roedel72e1dcc2011-11-10 19:13:51 +0100669 head = readl(iommu->mmio_base + MMIO_PPR_HEAD_OFFSET);
670 tail = readl(iommu->mmio_base + MMIO_PPR_TAIL_OFFSET);
671
672 while (head != tail) {
Joerg Roedeleee53532012-06-01 15:20:23 +0200673 volatile u64 *raw;
674 u64 entry[2];
675 int i;
Joerg Roedel72e1dcc2011-11-10 19:13:51 +0100676
Joerg Roedeleee53532012-06-01 15:20:23 +0200677 raw = (u64 *)(iommu->ppr_log + head);
Joerg Roedel72e1dcc2011-11-10 19:13:51 +0100678
Joerg Roedeleee53532012-06-01 15:20:23 +0200679 /*
680 * Hardware bug: Interrupt may arrive before the entry is
681 * written to memory. If this happens we need to wait for the
682 * entry to arrive.
683 */
684 for (i = 0; i < LOOP_TIMEOUT; ++i) {
685 if (PPR_REQ_TYPE(raw[0]) != 0)
686 break;
687 udelay(1);
688 }
689
690 /* Avoid memcpy function-call overhead */
691 entry[0] = raw[0];
692 entry[1] = raw[1];
693
694 /*
695 * To detect the hardware bug we need to clear the entry
696 * back to zero.
697 */
698 raw[0] = raw[1] = 0UL;
699
700 /* Update head pointer of hardware ring-buffer */
Joerg Roedel72e1dcc2011-11-10 19:13:51 +0100701 head = (head + PPR_ENTRY_SIZE) % PPR_LOG_SIZE;
702 writel(head, iommu->mmio_base + MMIO_PPR_HEAD_OFFSET);
Joerg Roedeleee53532012-06-01 15:20:23 +0200703
Joerg Roedeleee53532012-06-01 15:20:23 +0200704 /* Handle PPR entry */
705 iommu_handle_ppr_entry(iommu, entry);
706
Joerg Roedeleee53532012-06-01 15:20:23 +0200707 /* Refresh ring-buffer information */
708 head = readl(iommu->mmio_base + MMIO_PPR_HEAD_OFFSET);
Joerg Roedel72e1dcc2011-11-10 19:13:51 +0100709 tail = readl(iommu->mmio_base + MMIO_PPR_TAIL_OFFSET);
710 }
Joerg Roedel72e1dcc2011-11-10 19:13:51 +0100711}
712
Joerg Roedel72fe00f2011-05-10 10:50:42 +0200713irqreturn_t amd_iommu_int_thread(int irq, void *data)
Joerg Roedela80dc3e2008-09-11 16:51:41 +0200714{
Suravee Suthikulpanit3f398bc2013-04-22 16:32:34 -0500715 struct amd_iommu *iommu = (struct amd_iommu *) data;
716 u32 status = readl(iommu->mmio_base + MMIO_STATUS_OFFSET);
Joerg Roedel90008ee2008-09-09 16:41:05 +0200717
Suravee Suthikulpanit3f398bc2013-04-22 16:32:34 -0500718 while (status & (MMIO_STATUS_EVT_INT_MASK | MMIO_STATUS_PPR_INT_MASK)) {
719 /* Enable EVT and PPR interrupts again */
720 writel((MMIO_STATUS_EVT_INT_MASK | MMIO_STATUS_PPR_INT_MASK),
721 iommu->mmio_base + MMIO_STATUS_OFFSET);
722
723 if (status & MMIO_STATUS_EVT_INT_MASK) {
724 pr_devel("AMD-Vi: Processing IOMMU Event Log\n");
725 iommu_poll_events(iommu);
726 }
727
728 if (status & MMIO_STATUS_PPR_INT_MASK) {
729 pr_devel("AMD-Vi: Processing IOMMU PPR Log\n");
730 iommu_poll_ppr_log(iommu);
731 }
732
733 /*
734 * Hardware bug: ERBT1312
735 * When re-enabling interrupt (by writing 1
736 * to clear the bit), the hardware might also try to set
737 * the interrupt bit in the event status register.
738 * In this scenario, the bit will be set, and disable
739 * subsequent interrupts.
740 *
741 * Workaround: The IOMMU driver should read back the
742 * status register and check if the interrupt bits are cleared.
743 * If not, driver will need to go through the interrupt handler
744 * again and re-clear the bits
745 */
746 status = readl(iommu->mmio_base + MMIO_STATUS_OFFSET);
Joerg Roedel72e1dcc2011-11-10 19:13:51 +0100747 }
Joerg Roedel90008ee2008-09-09 16:41:05 +0200748 return IRQ_HANDLED;
Joerg Roedela80dc3e2008-09-11 16:51:41 +0200749}
750
Joerg Roedel72fe00f2011-05-10 10:50:42 +0200751irqreturn_t amd_iommu_int_handler(int irq, void *data)
752{
753 return IRQ_WAKE_THREAD;
754}
755
Joerg Roedela80dc3e2008-09-11 16:51:41 +0200756/****************************************************************************
757 *
Joerg Roedel431b2a22008-07-11 17:14:22 +0200758 * IOMMU command queuing functions
759 *
760 ****************************************************************************/
761
Joerg Roedelac0ea6e2011-04-06 18:38:20 +0200762static int wait_on_sem(volatile u64 *sem)
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200763{
Joerg Roedelac0ea6e2011-04-06 18:38:20 +0200764 int i = 0;
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200765
Joerg Roedelac0ea6e2011-04-06 18:38:20 +0200766 while (*sem == 0 && i < LOOP_TIMEOUT) {
767 udelay(1);
768 i += 1;
769 }
770
771 if (i == LOOP_TIMEOUT) {
772 pr_alert("AMD-Vi: Completion-Wait loop timed out\n");
773 return -EIO;
774 }
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200775
776 return 0;
777}
778
Joerg Roedelac0ea6e2011-04-06 18:38:20 +0200779static void copy_cmd_to_buffer(struct amd_iommu *iommu,
780 struct iommu_cmd *cmd,
781 u32 tail)
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200782{
Joerg Roedelac0ea6e2011-04-06 18:38:20 +0200783 u8 *target;
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200784
Joerg Roedelac0ea6e2011-04-06 18:38:20 +0200785 target = iommu->cmd_buf + tail;
786 tail = (tail + sizeof(*cmd)) % iommu->cmd_buf_size;
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200787
Joerg Roedelac0ea6e2011-04-06 18:38:20 +0200788 /* Copy command to buffer */
789 memcpy(target, cmd, sizeof(*cmd));
790
791 /* Tell the IOMMU about it */
792 writel(tail, iommu->mmio_base + MMIO_CMD_TAIL_OFFSET);
793}
794
Joerg Roedel815b33f2011-04-06 17:26:49 +0200795static void build_completion_wait(struct iommu_cmd *cmd, u64 address)
Joerg Roedelded46732011-04-06 10:53:48 +0200796{
Joerg Roedel815b33f2011-04-06 17:26:49 +0200797 WARN_ON(address & 0x7ULL);
798
Joerg Roedelded46732011-04-06 10:53:48 +0200799 memset(cmd, 0, sizeof(*cmd));
Joerg Roedel815b33f2011-04-06 17:26:49 +0200800 cmd->data[0] = lower_32_bits(__pa(address)) | CMD_COMPL_WAIT_STORE_MASK;
801 cmd->data[1] = upper_32_bits(__pa(address));
802 cmd->data[2] = 1;
Joerg Roedelded46732011-04-06 10:53:48 +0200803 CMD_SET_TYPE(cmd, CMD_COMPL_WAIT);
804}
805
Joerg Roedel94fe79e2011-04-06 11:07:21 +0200806static void build_inv_dte(struct iommu_cmd *cmd, u16 devid)
807{
808 memset(cmd, 0, sizeof(*cmd));
809 cmd->data[0] = devid;
810 CMD_SET_TYPE(cmd, CMD_INV_DEV_ENTRY);
811}
812
Joerg Roedel11b64022011-04-06 11:49:28 +0200813static void build_inv_iommu_pages(struct iommu_cmd *cmd, u64 address,
814 size_t size, u16 domid, int pde)
815{
816 u64 pages;
817 int s;
818
819 pages = iommu_num_pages(address, size, PAGE_SIZE);
820 s = 0;
821
822 if (pages > 1) {
823 /*
824 * If we have to flush more than one page, flush all
825 * TLB entries for this domain
826 */
827 address = CMD_INV_IOMMU_ALL_PAGES_ADDRESS;
828 s = 1;
829 }
830
831 address &= PAGE_MASK;
832
833 memset(cmd, 0, sizeof(*cmd));
834 cmd->data[1] |= domid;
835 cmd->data[2] = lower_32_bits(address);
836 cmd->data[3] = upper_32_bits(address);
837 CMD_SET_TYPE(cmd, CMD_INV_IOMMU_PAGES);
838 if (s) /* size bit - we flush more than one 4kb page */
839 cmd->data[2] |= CMD_INV_IOMMU_PAGES_SIZE_MASK;
Frank Arnolddf805ab2012-08-27 19:21:04 +0200840 if (pde) /* PDE bit - we want to flush everything, not only the PTEs */
Joerg Roedel11b64022011-04-06 11:49:28 +0200841 cmd->data[2] |= CMD_INV_IOMMU_PAGES_PDE_MASK;
842}
843
Joerg Roedelcb41ed82011-04-05 11:00:53 +0200844static void build_inv_iotlb_pages(struct iommu_cmd *cmd, u16 devid, int qdep,
845 u64 address, size_t size)
846{
847 u64 pages;
848 int s;
849
850 pages = iommu_num_pages(address, size, PAGE_SIZE);
851 s = 0;
852
853 if (pages > 1) {
854 /*
855 * If we have to flush more than one page, flush all
856 * TLB entries for this domain
857 */
858 address = CMD_INV_IOMMU_ALL_PAGES_ADDRESS;
859 s = 1;
860 }
861
862 address &= PAGE_MASK;
863
864 memset(cmd, 0, sizeof(*cmd));
865 cmd->data[0] = devid;
866 cmd->data[0] |= (qdep & 0xff) << 24;
867 cmd->data[1] = devid;
868 cmd->data[2] = lower_32_bits(address);
869 cmd->data[3] = upper_32_bits(address);
870 CMD_SET_TYPE(cmd, CMD_INV_IOTLB_PAGES);
871 if (s)
872 cmd->data[2] |= CMD_INV_IOMMU_PAGES_SIZE_MASK;
873}
874
Joerg Roedel22e266c2011-11-21 15:59:08 +0100875static void build_inv_iommu_pasid(struct iommu_cmd *cmd, u16 domid, int pasid,
876 u64 address, bool size)
877{
878 memset(cmd, 0, sizeof(*cmd));
879
880 address &= ~(0xfffULL);
881
Suravee Suthikulpanita919a012014-03-05 18:54:18 -0600882 cmd->data[0] = pasid;
Joerg Roedel22e266c2011-11-21 15:59:08 +0100883 cmd->data[1] = domid;
884 cmd->data[2] = lower_32_bits(address);
885 cmd->data[3] = upper_32_bits(address);
886 cmd->data[2] |= CMD_INV_IOMMU_PAGES_PDE_MASK;
887 cmd->data[2] |= CMD_INV_IOMMU_PAGES_GN_MASK;
888 if (size)
889 cmd->data[2] |= CMD_INV_IOMMU_PAGES_SIZE_MASK;
890 CMD_SET_TYPE(cmd, CMD_INV_IOMMU_PAGES);
891}
892
893static void build_inv_iotlb_pasid(struct iommu_cmd *cmd, u16 devid, int pasid,
894 int qdep, u64 address, bool size)
895{
896 memset(cmd, 0, sizeof(*cmd));
897
898 address &= ~(0xfffULL);
899
900 cmd->data[0] = devid;
Jay Cornwalle8d2d822014-02-26 15:49:31 -0600901 cmd->data[0] |= ((pasid >> 8) & 0xff) << 16;
Joerg Roedel22e266c2011-11-21 15:59:08 +0100902 cmd->data[0] |= (qdep & 0xff) << 24;
903 cmd->data[1] = devid;
Jay Cornwalle8d2d822014-02-26 15:49:31 -0600904 cmd->data[1] |= (pasid & 0xff) << 16;
Joerg Roedel22e266c2011-11-21 15:59:08 +0100905 cmd->data[2] = lower_32_bits(address);
906 cmd->data[2] |= CMD_INV_IOMMU_PAGES_GN_MASK;
907 cmd->data[3] = upper_32_bits(address);
908 if (size)
909 cmd->data[2] |= CMD_INV_IOMMU_PAGES_SIZE_MASK;
910 CMD_SET_TYPE(cmd, CMD_INV_IOTLB_PAGES);
911}
912
Joerg Roedelc99afa22011-11-21 18:19:25 +0100913static void build_complete_ppr(struct iommu_cmd *cmd, u16 devid, int pasid,
914 int status, int tag, bool gn)
915{
916 memset(cmd, 0, sizeof(*cmd));
917
918 cmd->data[0] = devid;
919 if (gn) {
Suravee Suthikulpanita919a012014-03-05 18:54:18 -0600920 cmd->data[1] = pasid;
Joerg Roedelc99afa22011-11-21 18:19:25 +0100921 cmd->data[2] = CMD_INV_IOMMU_PAGES_GN_MASK;
922 }
923 cmd->data[3] = tag & 0x1ff;
924 cmd->data[3] |= (status & PPR_STATUS_MASK) << PPR_STATUS_SHIFT;
925
926 CMD_SET_TYPE(cmd, CMD_COMPLETE_PPR);
927}
928
Joerg Roedel58fc7f12011-04-11 11:13:24 +0200929static void build_inv_all(struct iommu_cmd *cmd)
930{
931 memset(cmd, 0, sizeof(*cmd));
932 CMD_SET_TYPE(cmd, CMD_INV_ALL);
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200933}
934
Joerg Roedel7ef27982012-06-21 16:46:04 +0200935static void build_inv_irt(struct iommu_cmd *cmd, u16 devid)
936{
937 memset(cmd, 0, sizeof(*cmd));
938 cmd->data[0] = devid;
939 CMD_SET_TYPE(cmd, CMD_INV_IRT);
940}
941
Joerg Roedel431b2a22008-07-11 17:14:22 +0200942/*
Joerg Roedelb6c02712008-06-26 21:27:53 +0200943 * Writes the command to the IOMMUs command buffer and informs the
Joerg Roedelac0ea6e2011-04-06 18:38:20 +0200944 * hardware about the new command.
Joerg Roedel431b2a22008-07-11 17:14:22 +0200945 */
Joerg Roedelf1ca1512011-09-02 14:10:32 +0200946static int iommu_queue_command_sync(struct amd_iommu *iommu,
947 struct iommu_cmd *cmd,
948 bool sync)
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200949{
Joerg Roedelac0ea6e2011-04-06 18:38:20 +0200950 u32 left, tail, head, next_tail;
Joerg Roedel815b33f2011-04-06 17:26:49 +0200951 unsigned long flags;
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200952
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200953 WARN_ON(iommu->cmd_buf_size & CMD_BUFFER_UNINITIALIZED);
Joerg Roedelda49f6d2008-12-12 14:59:58 +0100954
Joerg Roedelac0ea6e2011-04-06 18:38:20 +0200955again:
Joerg Roedel815b33f2011-04-06 17:26:49 +0200956 spin_lock_irqsave(&iommu->lock, flags);
Joerg Roedelac0ea6e2011-04-06 18:38:20 +0200957
958 head = readl(iommu->mmio_base + MMIO_CMD_HEAD_OFFSET);
959 tail = readl(iommu->mmio_base + MMIO_CMD_TAIL_OFFSET);
960 next_tail = (tail + sizeof(*cmd)) % iommu->cmd_buf_size;
961 left = (head - next_tail) % iommu->cmd_buf_size;
962
963 if (left <= 2) {
964 struct iommu_cmd sync_cmd;
965 volatile u64 sem = 0;
966 int ret;
967
968 build_completion_wait(&sync_cmd, (u64)&sem);
969 copy_cmd_to_buffer(iommu, &sync_cmd, tail);
970
971 spin_unlock_irqrestore(&iommu->lock, flags);
972
973 if ((ret = wait_on_sem(&sem)) != 0)
974 return ret;
975
976 goto again;
Joerg Roedel136f78a2008-07-11 17:14:27 +0200977 }
978
Joerg Roedelac0ea6e2011-04-06 18:38:20 +0200979 copy_cmd_to_buffer(iommu, cmd, tail);
Joerg Roedel519c31b2008-08-14 19:55:15 +0200980
Joerg Roedelac0ea6e2011-04-06 18:38:20 +0200981 /* We need to sync now to make sure all commands are processed */
Joerg Roedelf1ca1512011-09-02 14:10:32 +0200982 iommu->need_sync = sync;
Joerg Roedelac0ea6e2011-04-06 18:38:20 +0200983
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200984 spin_unlock_irqrestore(&iommu->lock, flags);
985
Joerg Roedel815b33f2011-04-06 17:26:49 +0200986 return 0;
Joerg Roedel8d201962008-12-02 20:34:41 +0100987}
988
Joerg Roedelf1ca1512011-09-02 14:10:32 +0200989static int iommu_queue_command(struct amd_iommu *iommu, struct iommu_cmd *cmd)
990{
991 return iommu_queue_command_sync(iommu, cmd, true);
992}
993
Joerg Roedel8d201962008-12-02 20:34:41 +0100994/*
995 * This function queues a completion wait command into the command
996 * buffer of an IOMMU
997 */
Joerg Roedel8d201962008-12-02 20:34:41 +0100998static int iommu_completion_wait(struct amd_iommu *iommu)
999{
Joerg Roedel815b33f2011-04-06 17:26:49 +02001000 struct iommu_cmd cmd;
1001 volatile u64 sem = 0;
Joerg Roedelac0ea6e2011-04-06 18:38:20 +02001002 int ret;
Joerg Roedel8d201962008-12-02 20:34:41 +01001003
1004 if (!iommu->need_sync)
Joerg Roedel815b33f2011-04-06 17:26:49 +02001005 return 0;
Joerg Roedel8d201962008-12-02 20:34:41 +01001006
Joerg Roedel815b33f2011-04-06 17:26:49 +02001007 build_completion_wait(&cmd, (u64)&sem);
Joerg Roedel8d201962008-12-02 20:34:41 +01001008
Joerg Roedelf1ca1512011-09-02 14:10:32 +02001009 ret = iommu_queue_command_sync(iommu, &cmd, false);
Joerg Roedel8d201962008-12-02 20:34:41 +01001010 if (ret)
Joerg Roedel815b33f2011-04-06 17:26:49 +02001011 return ret;
Joerg Roedel8d201962008-12-02 20:34:41 +01001012
Joerg Roedelac0ea6e2011-04-06 18:38:20 +02001013 return wait_on_sem(&sem);
Joerg Roedela19ae1e2008-06-26 21:27:55 +02001014}
1015
Joerg Roedeld8c13082011-04-06 18:51:26 +02001016static int iommu_flush_dte(struct amd_iommu *iommu, u16 devid)
Joerg Roedela19ae1e2008-06-26 21:27:55 +02001017{
1018 struct iommu_cmd cmd;
1019
Joerg Roedeld8c13082011-04-06 18:51:26 +02001020 build_inv_dte(&cmd, devid);
Joerg Roedela19ae1e2008-06-26 21:27:55 +02001021
Joerg Roedeld8c13082011-04-06 18:51:26 +02001022 return iommu_queue_command(iommu, &cmd);
1023}
1024
Joerg Roedel7d0c5cc2011-04-07 08:16:10 +02001025static void iommu_flush_dte_all(struct amd_iommu *iommu)
1026{
1027 u32 devid;
1028
1029 for (devid = 0; devid <= 0xffff; ++devid)
1030 iommu_flush_dte(iommu, devid);
1031
1032 iommu_completion_wait(iommu);
Joerg Roedela19ae1e2008-06-26 21:27:55 +02001033}
1034
1035/*
Joerg Roedel7d0c5cc2011-04-07 08:16:10 +02001036 * This function uses heavy locking and may disable irqs for some time. But
1037 * this is no issue because it is only called during resume.
Joerg Roedela19ae1e2008-06-26 21:27:55 +02001038 */
Joerg Roedel7d0c5cc2011-04-07 08:16:10 +02001039static void iommu_flush_tlb_all(struct amd_iommu *iommu)
Joerg Roedela19ae1e2008-06-26 21:27:55 +02001040{
Joerg Roedel7d0c5cc2011-04-07 08:16:10 +02001041 u32 dom_id;
Joerg Roedela19ae1e2008-06-26 21:27:55 +02001042
Joerg Roedel7d0c5cc2011-04-07 08:16:10 +02001043 for (dom_id = 0; dom_id <= 0xffff; ++dom_id) {
1044 struct iommu_cmd cmd;
1045 build_inv_iommu_pages(&cmd, 0, CMD_INV_IOMMU_ALL_PAGES_ADDRESS,
1046 dom_id, 1);
1047 iommu_queue_command(iommu, &cmd);
1048 }
Joerg Roedel431b2a22008-07-11 17:14:22 +02001049
Joerg Roedel7d0c5cc2011-04-07 08:16:10 +02001050 iommu_completion_wait(iommu);
Joerg Roedela19ae1e2008-06-26 21:27:55 +02001051}
1052
Joerg Roedel58fc7f12011-04-11 11:13:24 +02001053static void iommu_flush_all(struct amd_iommu *iommu)
1054{
1055 struct iommu_cmd cmd;
1056
1057 build_inv_all(&cmd);
1058
1059 iommu_queue_command(iommu, &cmd);
1060 iommu_completion_wait(iommu);
1061}
1062
Joerg Roedel7ef27982012-06-21 16:46:04 +02001063static void iommu_flush_irt(struct amd_iommu *iommu, u16 devid)
1064{
1065 struct iommu_cmd cmd;
1066
1067 build_inv_irt(&cmd, devid);
1068
1069 iommu_queue_command(iommu, &cmd);
1070}
1071
1072static void iommu_flush_irt_all(struct amd_iommu *iommu)
1073{
1074 u32 devid;
1075
1076 for (devid = 0; devid <= MAX_DEV_TABLE_ENTRIES; devid++)
1077 iommu_flush_irt(iommu, devid);
1078
1079 iommu_completion_wait(iommu);
1080}
1081
Joerg Roedel7d0c5cc2011-04-07 08:16:10 +02001082void iommu_flush_all_caches(struct amd_iommu *iommu)
1083{
Joerg Roedel58fc7f12011-04-11 11:13:24 +02001084 if (iommu_feature(iommu, FEATURE_IA)) {
1085 iommu_flush_all(iommu);
1086 } else {
1087 iommu_flush_dte_all(iommu);
Joerg Roedel7ef27982012-06-21 16:46:04 +02001088 iommu_flush_irt_all(iommu);
Joerg Roedel58fc7f12011-04-11 11:13:24 +02001089 iommu_flush_tlb_all(iommu);
1090 }
Joerg Roedel7d0c5cc2011-04-07 08:16:10 +02001091}
1092
Joerg Roedel431b2a22008-07-11 17:14:22 +02001093/*
Joerg Roedelcb41ed82011-04-05 11:00:53 +02001094 * Command send function for flushing on-device TLB
1095 */
Joerg Roedel6c542042011-06-09 17:07:31 +02001096static int device_flush_iotlb(struct iommu_dev_data *dev_data,
1097 u64 address, size_t size)
Joerg Roedelcb41ed82011-04-05 11:00:53 +02001098{
Joerg Roedelcb41ed82011-04-05 11:00:53 +02001099 struct amd_iommu *iommu;
1100 struct iommu_cmd cmd;
Joerg Roedelcb41ed82011-04-05 11:00:53 +02001101 int qdep;
1102
Joerg Roedelea61cdd2011-06-09 12:56:30 +02001103 qdep = dev_data->ats.qdep;
1104 iommu = amd_iommu_rlookup_table[dev_data->devid];
Joerg Roedelcb41ed82011-04-05 11:00:53 +02001105
Joerg Roedelea61cdd2011-06-09 12:56:30 +02001106 build_inv_iotlb_pages(&cmd, dev_data->devid, qdep, address, size);
Joerg Roedelcb41ed82011-04-05 11:00:53 +02001107
1108 return iommu_queue_command(iommu, &cmd);
1109}
1110
1111/*
Joerg Roedel431b2a22008-07-11 17:14:22 +02001112 * Command send function for invalidating a device table entry
1113 */
Joerg Roedel6c542042011-06-09 17:07:31 +02001114static int device_flush_dte(struct iommu_dev_data *dev_data)
Joerg Roedel3fa43652009-11-26 15:04:38 +01001115{
1116 struct amd_iommu *iommu;
Joerg Roedelcb41ed82011-04-05 11:00:53 +02001117 int ret;
Joerg Roedel3fa43652009-11-26 15:04:38 +01001118
Joerg Roedel6c542042011-06-09 17:07:31 +02001119 iommu = amd_iommu_rlookup_table[dev_data->devid];
Joerg Roedel3fa43652009-11-26 15:04:38 +01001120
Joerg Roedelf62dda62011-06-09 12:55:35 +02001121 ret = iommu_flush_dte(iommu, dev_data->devid);
Joerg Roedelcb41ed82011-04-05 11:00:53 +02001122 if (ret)
1123 return ret;
1124
Joerg Roedelea61cdd2011-06-09 12:56:30 +02001125 if (dev_data->ats.enabled)
Joerg Roedel6c542042011-06-09 17:07:31 +02001126 ret = device_flush_iotlb(dev_data, 0, ~0UL);
Joerg Roedelcb41ed82011-04-05 11:00:53 +02001127
1128 return ret;
Joerg Roedel3fa43652009-11-26 15:04:38 +01001129}
1130
Joerg Roedel431b2a22008-07-11 17:14:22 +02001131/*
1132 * TLB invalidation function which is called from the mapping functions.
1133 * It invalidates a single PTE if the range to flush is within a single
1134 * page. Otherwise it flushes the whole TLB of the IOMMU.
1135 */
Joerg Roedel17b124b2011-04-06 18:01:35 +02001136static void __domain_flush_pages(struct protection_domain *domain,
1137 u64 address, size_t size, int pde)
Joerg Roedela19ae1e2008-06-26 21:27:55 +02001138{
Joerg Roedelcb41ed82011-04-05 11:00:53 +02001139 struct iommu_dev_data *dev_data;
Joerg Roedel11b64022011-04-06 11:49:28 +02001140 struct iommu_cmd cmd;
1141 int ret = 0, i;
Joerg Roedela19ae1e2008-06-26 21:27:55 +02001142
Joerg Roedel11b64022011-04-06 11:49:28 +02001143 build_inv_iommu_pages(&cmd, address, size, domain->id, pde);
Joerg Roedel999ba412008-07-03 19:35:08 +02001144
Joerg Roedel6de8ad92009-11-23 18:30:32 +01001145 for (i = 0; i < amd_iommus_present; ++i) {
1146 if (!domain->dev_iommu[i])
1147 continue;
1148
1149 /*
1150 * Devices of this domain are behind this IOMMU
1151 * We need a TLB flush
1152 */
Joerg Roedel11b64022011-04-06 11:49:28 +02001153 ret |= iommu_queue_command(amd_iommus[i], &cmd);
Joerg Roedel6de8ad92009-11-23 18:30:32 +01001154 }
1155
Joerg Roedelcb41ed82011-04-05 11:00:53 +02001156 list_for_each_entry(dev_data, &domain->dev_list, list) {
Joerg Roedelcb41ed82011-04-05 11:00:53 +02001157
Joerg Roedelea61cdd2011-06-09 12:56:30 +02001158 if (!dev_data->ats.enabled)
Joerg Roedelcb41ed82011-04-05 11:00:53 +02001159 continue;
1160
Joerg Roedel6c542042011-06-09 17:07:31 +02001161 ret |= device_flush_iotlb(dev_data, address, size);
Joerg Roedelcb41ed82011-04-05 11:00:53 +02001162 }
1163
Joerg Roedel11b64022011-04-06 11:49:28 +02001164 WARN_ON(ret);
Joerg Roedel6de8ad92009-11-23 18:30:32 +01001165}
1166
Joerg Roedel17b124b2011-04-06 18:01:35 +02001167static void domain_flush_pages(struct protection_domain *domain,
1168 u64 address, size_t size)
Joerg Roedel6de8ad92009-11-23 18:30:32 +01001169{
Joerg Roedel17b124b2011-04-06 18:01:35 +02001170 __domain_flush_pages(domain, address, size, 0);
Joerg Roedela19ae1e2008-06-26 21:27:55 +02001171}
Joerg Roedelb6c02712008-06-26 21:27:53 +02001172
Joerg Roedel1c655772008-09-04 18:40:05 +02001173/* Flush the whole IO/TLB for a given protection domain */
Joerg Roedel17b124b2011-04-06 18:01:35 +02001174static void domain_flush_tlb(struct protection_domain *domain)
Joerg Roedel1c655772008-09-04 18:40:05 +02001175{
Joerg Roedel17b124b2011-04-06 18:01:35 +02001176 __domain_flush_pages(domain, 0, CMD_INV_IOMMU_ALL_PAGES_ADDRESS, 0);
Joerg Roedel1c655772008-09-04 18:40:05 +02001177}
1178
Chris Wright42a49f92009-06-15 15:42:00 +02001179/* Flush the whole IO/TLB for a given protection domain - including PDE */
Joerg Roedel17b124b2011-04-06 18:01:35 +02001180static void domain_flush_tlb_pde(struct protection_domain *domain)
Chris Wright42a49f92009-06-15 15:42:00 +02001181{
Joerg Roedel17b124b2011-04-06 18:01:35 +02001182 __domain_flush_pages(domain, 0, CMD_INV_IOMMU_ALL_PAGES_ADDRESS, 1);
1183}
1184
1185static void domain_flush_complete(struct protection_domain *domain)
Joerg Roedelb6c02712008-06-26 21:27:53 +02001186{
1187 int i;
1188
1189 for (i = 0; i < amd_iommus_present; ++i) {
1190 if (!domain->dev_iommu[i])
1191 continue;
1192
1193 /*
1194 * Devices of this domain are behind this IOMMU
1195 * We need to wait for completion of all commands.
1196 */
1197 iommu_completion_wait(amd_iommus[i]);
1198 }
1199}
1200
Joerg Roedelb00d3bc2009-11-26 15:35:33 +01001201
Joerg Roedel43f49602008-12-02 21:01:12 +01001202/*
Joerg Roedelb00d3bc2009-11-26 15:35:33 +01001203 * This function flushes the DTEs for all devices in domain
Joerg Roedel43f49602008-12-02 21:01:12 +01001204 */
Joerg Roedel17b124b2011-04-06 18:01:35 +02001205static void domain_flush_devices(struct protection_domain *domain)
Joerg Roedelbfd1be12009-05-05 15:33:57 +02001206{
Joerg Roedelb00d3bc2009-11-26 15:35:33 +01001207 struct iommu_dev_data *dev_data;
Joerg Roedelb00d3bc2009-11-26 15:35:33 +01001208
1209 list_for_each_entry(dev_data, &domain->dev_list, list)
Joerg Roedel6c542042011-06-09 17:07:31 +02001210 device_flush_dte(dev_data);
Joerg Roedelb00d3bc2009-11-26 15:35:33 +01001211}
1212
Joerg Roedel431b2a22008-07-11 17:14:22 +02001213/****************************************************************************
1214 *
1215 * The functions below are used the create the page table mappings for
1216 * unity mapped regions.
1217 *
1218 ****************************************************************************/
1219
1220/*
Joerg Roedel308973d2009-11-24 17:43:32 +01001221 * This function is used to add another level to an IO page table. Adding
1222 * another level increases the size of the address space by 9 bits to a size up
1223 * to 64 bits.
1224 */
1225static bool increase_address_space(struct protection_domain *domain,
1226 gfp_t gfp)
1227{
1228 u64 *pte;
1229
1230 if (domain->mode == PAGE_MODE_6_LEVEL)
1231 /* address space already 64 bit large */
1232 return false;
1233
1234 pte = (void *)get_zeroed_page(gfp);
1235 if (!pte)
1236 return false;
1237
1238 *pte = PM_LEVEL_PDE(domain->mode,
1239 virt_to_phys(domain->pt_root));
1240 domain->pt_root = pte;
1241 domain->mode += 1;
1242 domain->updated = true;
1243
1244 return true;
1245}
1246
1247static u64 *alloc_pte(struct protection_domain *domain,
1248 unsigned long address,
Joerg Roedelcbb9d722010-01-15 14:41:15 +01001249 unsigned long page_size,
Joerg Roedel308973d2009-11-24 17:43:32 +01001250 u64 **pte_page,
1251 gfp_t gfp)
1252{
Joerg Roedelcbb9d722010-01-15 14:41:15 +01001253 int level, end_lvl;
Joerg Roedel308973d2009-11-24 17:43:32 +01001254 u64 *pte, *page;
Joerg Roedelcbb9d722010-01-15 14:41:15 +01001255
1256 BUG_ON(!is_power_of_2(page_size));
Joerg Roedel308973d2009-11-24 17:43:32 +01001257
1258 while (address > PM_LEVEL_SIZE(domain->mode))
1259 increase_address_space(domain, gfp);
1260
Joerg Roedelcbb9d722010-01-15 14:41:15 +01001261 level = domain->mode - 1;
1262 pte = &domain->pt_root[PM_LEVEL_INDEX(level, address)];
1263 address = PAGE_SIZE_ALIGN(address, page_size);
1264 end_lvl = PAGE_SIZE_LEVEL(page_size);
Joerg Roedel308973d2009-11-24 17:43:32 +01001265
1266 while (level > end_lvl) {
1267 if (!IOMMU_PTE_PRESENT(*pte)) {
1268 page = (u64 *)get_zeroed_page(gfp);
1269 if (!page)
1270 return NULL;
1271 *pte = PM_LEVEL_PDE(level, virt_to_phys(page));
1272 }
1273
Joerg Roedelcbb9d722010-01-15 14:41:15 +01001274 /* No level skipping support yet */
1275 if (PM_PTE_LEVEL(*pte) != level)
1276 return NULL;
1277
Joerg Roedel308973d2009-11-24 17:43:32 +01001278 level -= 1;
1279
1280 pte = IOMMU_PTE_PAGE(*pte);
1281
1282 if (pte_page && level == end_lvl)
1283 *pte_page = pte;
1284
1285 pte = &pte[PM_LEVEL_INDEX(level, address)];
1286 }
1287
1288 return pte;
1289}
1290
1291/*
1292 * This function checks if there is a PTE for a given dma address. If
1293 * there is one, it returns the pointer to it.
1294 */
Joerg Roedel24cd7722010-01-19 17:27:39 +01001295static u64 *fetch_pte(struct protection_domain *domain, unsigned long address)
Joerg Roedel308973d2009-11-24 17:43:32 +01001296{
1297 int level;
1298 u64 *pte;
1299
Joerg Roedel24cd7722010-01-19 17:27:39 +01001300 if (address > PM_LEVEL_SIZE(domain->mode))
1301 return NULL;
Joerg Roedel308973d2009-11-24 17:43:32 +01001302
Joerg Roedel24cd7722010-01-19 17:27:39 +01001303 level = domain->mode - 1;
1304 pte = &domain->pt_root[PM_LEVEL_INDEX(level, address)];
1305
1306 while (level > 0) {
1307
1308 /* Not Present */
Joerg Roedel308973d2009-11-24 17:43:32 +01001309 if (!IOMMU_PTE_PRESENT(*pte))
1310 return NULL;
1311
Joerg Roedel24cd7722010-01-19 17:27:39 +01001312 /* Large PTE */
1313 if (PM_PTE_LEVEL(*pte) == 0x07) {
1314 unsigned long pte_mask, __pte;
1315
1316 /*
1317 * If we have a series of large PTEs, make
1318 * sure to return a pointer to the first one.
1319 */
1320 pte_mask = PTE_PAGE_SIZE(*pte);
1321 pte_mask = ~((PAGE_SIZE_PTE_COUNT(pte_mask) << 3) - 1);
1322 __pte = ((unsigned long)pte) & pte_mask;
1323
1324 return (u64 *)__pte;
1325 }
1326
1327 /* No level skipping support yet */
1328 if (PM_PTE_LEVEL(*pte) != level)
1329 return NULL;
1330
Joerg Roedel308973d2009-11-24 17:43:32 +01001331 level -= 1;
1332
Joerg Roedel24cd7722010-01-19 17:27:39 +01001333 /* Walk to the next level */
Joerg Roedel308973d2009-11-24 17:43:32 +01001334 pte = IOMMU_PTE_PAGE(*pte);
1335 pte = &pte[PM_LEVEL_INDEX(level, address)];
Joerg Roedel308973d2009-11-24 17:43:32 +01001336 }
1337
1338 return pte;
1339}
1340
1341/*
Joerg Roedel431b2a22008-07-11 17:14:22 +02001342 * Generic mapping functions. It maps a physical address into a DMA
1343 * address space. It allocates the page table pages if necessary.
1344 * In the future it can be extended to a generic mapping function
1345 * supporting all features of AMD IOMMU page tables like level skipping
1346 * and full 64 bit address spaces.
1347 */
Joerg Roedel38e817f2008-12-02 17:27:52 +01001348static int iommu_map_page(struct protection_domain *dom,
1349 unsigned long bus_addr,
1350 unsigned long phys_addr,
Joerg Roedelabdc5eb2009-09-03 11:33:51 +02001351 int prot,
Joerg Roedelcbb9d722010-01-15 14:41:15 +01001352 unsigned long page_size)
Joerg Roedelbd0e5212008-06-26 21:27:56 +02001353{
Joerg Roedel8bda3092009-05-12 12:02:46 +02001354 u64 __pte, *pte;
Joerg Roedelcbb9d722010-01-15 14:41:15 +01001355 int i, count;
Joerg Roedelabdc5eb2009-09-03 11:33:51 +02001356
Joerg Roedelbad1cac2009-09-02 16:52:23 +02001357 if (!(prot & IOMMU_PROT_MASK))
Joerg Roedelbd0e5212008-06-26 21:27:56 +02001358 return -EINVAL;
1359
Joerg Roedelcbb9d722010-01-15 14:41:15 +01001360 bus_addr = PAGE_ALIGN(bus_addr);
1361 phys_addr = PAGE_ALIGN(phys_addr);
1362 count = PAGE_SIZE_PTE_COUNT(page_size);
1363 pte = alloc_pte(dom, bus_addr, page_size, NULL, GFP_KERNEL);
Joerg Roedelbd0e5212008-06-26 21:27:56 +02001364
Joerg Roedelcbb9d722010-01-15 14:41:15 +01001365 for (i = 0; i < count; ++i)
1366 if (IOMMU_PTE_PRESENT(pte[i]))
1367 return -EBUSY;
Joerg Roedelbd0e5212008-06-26 21:27:56 +02001368
Joerg Roedelcbb9d722010-01-15 14:41:15 +01001369 if (page_size > PAGE_SIZE) {
1370 __pte = PAGE_SIZE_PTE(phys_addr, page_size);
1371 __pte |= PM_LEVEL_ENC(7) | IOMMU_PTE_P | IOMMU_PTE_FC;
1372 } else
1373 __pte = phys_addr | IOMMU_PTE_P | IOMMU_PTE_FC;
1374
Joerg Roedelbd0e5212008-06-26 21:27:56 +02001375 if (prot & IOMMU_PROT_IR)
1376 __pte |= IOMMU_PTE_IR;
1377 if (prot & IOMMU_PROT_IW)
1378 __pte |= IOMMU_PTE_IW;
1379
Joerg Roedelcbb9d722010-01-15 14:41:15 +01001380 for (i = 0; i < count; ++i)
1381 pte[i] = __pte;
Joerg Roedelbd0e5212008-06-26 21:27:56 +02001382
Joerg Roedel04bfdd82009-09-02 16:00:23 +02001383 update_domain(dom);
1384
Joerg Roedelbd0e5212008-06-26 21:27:56 +02001385 return 0;
1386}
1387
Joerg Roedel24cd7722010-01-19 17:27:39 +01001388static unsigned long iommu_unmap_page(struct protection_domain *dom,
1389 unsigned long bus_addr,
1390 unsigned long page_size)
Joerg Roedeleb74ff62008-12-02 19:59:10 +01001391{
Joerg Roedel24cd7722010-01-19 17:27:39 +01001392 unsigned long long unmap_size, unmapped;
1393 u64 *pte;
Joerg Roedeleb74ff62008-12-02 19:59:10 +01001394
Joerg Roedel24cd7722010-01-19 17:27:39 +01001395 BUG_ON(!is_power_of_2(page_size));
1396
1397 unmapped = 0;
1398
1399 while (unmapped < page_size) {
1400
1401 pte = fetch_pte(dom, bus_addr);
1402
1403 if (!pte) {
1404 /*
1405 * No PTE for this address
1406 * move forward in 4kb steps
1407 */
1408 unmap_size = PAGE_SIZE;
1409 } else if (PM_PTE_LEVEL(*pte) == 0) {
1410 /* 4kb PTE found for this address */
1411 unmap_size = PAGE_SIZE;
1412 *pte = 0ULL;
1413 } else {
1414 int count, i;
1415
1416 /* Large PTE found which maps this address */
1417 unmap_size = PTE_PAGE_SIZE(*pte);
Alex Williamson60d0ca32013-06-21 14:33:19 -06001418
1419 /* Only unmap from the first pte in the page */
1420 if ((unmap_size - 1) & bus_addr)
1421 break;
Joerg Roedel24cd7722010-01-19 17:27:39 +01001422 count = PAGE_SIZE_PTE_COUNT(unmap_size);
1423 for (i = 0; i < count; i++)
1424 pte[i] = 0ULL;
1425 }
1426
1427 bus_addr = (bus_addr & ~(unmap_size - 1)) + unmap_size;
1428 unmapped += unmap_size;
1429 }
1430
Alex Williamson60d0ca32013-06-21 14:33:19 -06001431 BUG_ON(unmapped && !is_power_of_2(unmapped));
Joerg Roedel24cd7722010-01-19 17:27:39 +01001432
1433 return unmapped;
Joerg Roedeleb74ff62008-12-02 19:59:10 +01001434}
Joerg Roedeleb74ff62008-12-02 19:59:10 +01001435
Joerg Roedel431b2a22008-07-11 17:14:22 +02001436/*
1437 * This function checks if a specific unity mapping entry is needed for
1438 * this specific IOMMU.
1439 */
Joerg Roedelbd0e5212008-06-26 21:27:56 +02001440static int iommu_for_unity_map(struct amd_iommu *iommu,
1441 struct unity_map_entry *entry)
1442{
1443 u16 bdf, i;
1444
1445 for (i = entry->devid_start; i <= entry->devid_end; ++i) {
1446 bdf = amd_iommu_alias_table[i];
1447 if (amd_iommu_rlookup_table[bdf] == iommu)
1448 return 1;
1449 }
1450
1451 return 0;
1452}
1453
Joerg Roedel431b2a22008-07-11 17:14:22 +02001454/*
Joerg Roedel431b2a22008-07-11 17:14:22 +02001455 * This function actually applies the mapping to the page table of the
1456 * dma_ops domain.
1457 */
Joerg Roedelbd0e5212008-06-26 21:27:56 +02001458static int dma_ops_unity_map(struct dma_ops_domain *dma_dom,
1459 struct unity_map_entry *e)
1460{
1461 u64 addr;
1462 int ret;
1463
1464 for (addr = e->address_start; addr < e->address_end;
1465 addr += PAGE_SIZE) {
Joerg Roedelabdc5eb2009-09-03 11:33:51 +02001466 ret = iommu_map_page(&dma_dom->domain, addr, addr, e->prot,
Joerg Roedelcbb9d722010-01-15 14:41:15 +01001467 PAGE_SIZE);
Joerg Roedelbd0e5212008-06-26 21:27:56 +02001468 if (ret)
1469 return ret;
1470 /*
1471 * if unity mapping is in aperture range mark the page
1472 * as allocated in the aperture
1473 */
1474 if (addr < dma_dom->aperture_size)
Joerg Roedelc3239562009-05-12 10:56:44 +02001475 __set_bit(addr >> PAGE_SHIFT,
Joerg Roedel384de722009-05-15 12:30:05 +02001476 dma_dom->aperture[0]->bitmap);
Joerg Roedelbd0e5212008-06-26 21:27:56 +02001477 }
1478
1479 return 0;
1480}
1481
Joerg Roedel431b2a22008-07-11 17:14:22 +02001482/*
Joerg Roedel171e7b32009-11-24 17:47:56 +01001483 * Init the unity mappings for a specific IOMMU in the system
1484 *
1485 * Basically iterates over all unity mapping entries and applies them to
1486 * the default domain DMA of that IOMMU if necessary.
1487 */
1488static int iommu_init_unity_mappings(struct amd_iommu *iommu)
1489{
1490 struct unity_map_entry *entry;
1491 int ret;
1492
1493 list_for_each_entry(entry, &amd_iommu_unity_map, list) {
1494 if (!iommu_for_unity_map(iommu, entry))
1495 continue;
1496 ret = dma_ops_unity_map(iommu->default_dom, entry);
1497 if (ret)
1498 return ret;
1499 }
1500
1501 return 0;
1502}
1503
1504/*
Joerg Roedel431b2a22008-07-11 17:14:22 +02001505 * Inits the unity mappings required for a specific device
1506 */
Joerg Roedelbd0e5212008-06-26 21:27:56 +02001507static int init_unity_mappings_for_device(struct dma_ops_domain *dma_dom,
1508 u16 devid)
1509{
1510 struct unity_map_entry *e;
1511 int ret;
1512
1513 list_for_each_entry(e, &amd_iommu_unity_map, list) {
1514 if (!(devid >= e->devid_start && devid <= e->devid_end))
1515 continue;
1516 ret = dma_ops_unity_map(dma_dom, e);
1517 if (ret)
1518 return ret;
1519 }
1520
1521 return 0;
1522}
1523
Joerg Roedel431b2a22008-07-11 17:14:22 +02001524/****************************************************************************
1525 *
1526 * The next functions belong to the address allocator for the dma_ops
1527 * interface functions. They work like the allocators in the other IOMMU
1528 * drivers. Its basically a bitmap which marks the allocated pages in
1529 * the aperture. Maybe it could be enhanced in the future to a more
1530 * efficient allocator.
1531 *
1532 ****************************************************************************/
Joerg Roedeld3086442008-06-26 21:27:57 +02001533
Joerg Roedel431b2a22008-07-11 17:14:22 +02001534/*
Joerg Roedel384de722009-05-15 12:30:05 +02001535 * The address allocator core functions.
Joerg Roedel431b2a22008-07-11 17:14:22 +02001536 *
1537 * called with domain->lock held
1538 */
Joerg Roedel384de722009-05-15 12:30:05 +02001539
Joerg Roedel9cabe892009-05-18 16:38:55 +02001540/*
Joerg Roedel171e7b32009-11-24 17:47:56 +01001541 * Used to reserve address ranges in the aperture (e.g. for exclusion
1542 * ranges.
1543 */
1544static void dma_ops_reserve_addresses(struct dma_ops_domain *dom,
1545 unsigned long start_page,
1546 unsigned int pages)
1547{
1548 unsigned int i, last_page = dom->aperture_size >> PAGE_SHIFT;
1549
1550 if (start_page + pages > last_page)
1551 pages = last_page - start_page;
1552
1553 for (i = start_page; i < start_page + pages; ++i) {
1554 int index = i / APERTURE_RANGE_PAGES;
1555 int page = i % APERTURE_RANGE_PAGES;
1556 __set_bit(page, dom->aperture[index]->bitmap);
1557 }
1558}
1559
1560/*
Joerg Roedel9cabe892009-05-18 16:38:55 +02001561 * This function is used to add a new aperture range to an existing
1562 * aperture in case of dma_ops domain allocation or address allocation
1563 * failure.
1564 */
Joerg Roedel576175c2009-11-23 19:08:46 +01001565static int alloc_new_range(struct dma_ops_domain *dma_dom,
Joerg Roedel9cabe892009-05-18 16:38:55 +02001566 bool populate, gfp_t gfp)
1567{
1568 int index = dma_dom->aperture_size >> APERTURE_RANGE_SHIFT;
Joerg Roedel576175c2009-11-23 19:08:46 +01001569 struct amd_iommu *iommu;
Joerg Roedel17f5b562011-07-06 17:14:44 +02001570 unsigned long i, old_size;
Joerg Roedel9cabe892009-05-18 16:38:55 +02001571
Joerg Roedelf5e97052009-05-22 12:31:53 +02001572#ifdef CONFIG_IOMMU_STRESS
1573 populate = false;
1574#endif
1575
Joerg Roedel9cabe892009-05-18 16:38:55 +02001576 if (index >= APERTURE_MAX_RANGES)
1577 return -ENOMEM;
1578
1579 dma_dom->aperture[index] = kzalloc(sizeof(struct aperture_range), gfp);
1580 if (!dma_dom->aperture[index])
1581 return -ENOMEM;
1582
1583 dma_dom->aperture[index]->bitmap = (void *)get_zeroed_page(gfp);
1584 if (!dma_dom->aperture[index]->bitmap)
1585 goto out_free;
1586
1587 dma_dom->aperture[index]->offset = dma_dom->aperture_size;
1588
1589 if (populate) {
1590 unsigned long address = dma_dom->aperture_size;
1591 int i, num_ptes = APERTURE_RANGE_PAGES / 512;
1592 u64 *pte, *pte_page;
1593
1594 for (i = 0; i < num_ptes; ++i) {
Joerg Roedelcbb9d722010-01-15 14:41:15 +01001595 pte = alloc_pte(&dma_dom->domain, address, PAGE_SIZE,
Joerg Roedel9cabe892009-05-18 16:38:55 +02001596 &pte_page, gfp);
1597 if (!pte)
1598 goto out_free;
1599
1600 dma_dom->aperture[index]->pte_pages[i] = pte_page;
1601
1602 address += APERTURE_RANGE_SIZE / 64;
1603 }
1604 }
1605
Joerg Roedel17f5b562011-07-06 17:14:44 +02001606 old_size = dma_dom->aperture_size;
Joerg Roedel9cabe892009-05-18 16:38:55 +02001607 dma_dom->aperture_size += APERTURE_RANGE_SIZE;
1608
Joerg Roedel17f5b562011-07-06 17:14:44 +02001609 /* Reserve address range used for MSI messages */
1610 if (old_size < MSI_ADDR_BASE_LO &&
1611 dma_dom->aperture_size > MSI_ADDR_BASE_LO) {
1612 unsigned long spage;
1613 int pages;
1614
1615 pages = iommu_num_pages(MSI_ADDR_BASE_LO, 0x10000, PAGE_SIZE);
1616 spage = MSI_ADDR_BASE_LO >> PAGE_SHIFT;
1617
1618 dma_ops_reserve_addresses(dma_dom, spage, pages);
1619 }
1620
Uwe Kleine-Königb5950762010-11-01 15:38:34 -04001621 /* Initialize the exclusion range if necessary */
Joerg Roedel576175c2009-11-23 19:08:46 +01001622 for_each_iommu(iommu) {
1623 if (iommu->exclusion_start &&
1624 iommu->exclusion_start >= dma_dom->aperture[index]->offset
1625 && iommu->exclusion_start < dma_dom->aperture_size) {
1626 unsigned long startpage;
1627 int pages = iommu_num_pages(iommu->exclusion_start,
1628 iommu->exclusion_length,
1629 PAGE_SIZE);
1630 startpage = iommu->exclusion_start >> PAGE_SHIFT;
1631 dma_ops_reserve_addresses(dma_dom, startpage, pages);
1632 }
Joerg Roedel00cd1222009-05-19 09:52:40 +02001633 }
1634
1635 /*
1636 * Check for areas already mapped as present in the new aperture
1637 * range and mark those pages as reserved in the allocator. Such
1638 * mappings may already exist as a result of requested unity
1639 * mappings for devices.
1640 */
1641 for (i = dma_dom->aperture[index]->offset;
1642 i < dma_dom->aperture_size;
1643 i += PAGE_SIZE) {
Joerg Roedel24cd7722010-01-19 17:27:39 +01001644 u64 *pte = fetch_pte(&dma_dom->domain, i);
Joerg Roedel00cd1222009-05-19 09:52:40 +02001645 if (!pte || !IOMMU_PTE_PRESENT(*pte))
1646 continue;
1647
Joerg Roedelfcd08612011-10-11 17:41:32 +02001648 dma_ops_reserve_addresses(dma_dom, i >> PAGE_SHIFT, 1);
Joerg Roedel00cd1222009-05-19 09:52:40 +02001649 }
1650
Joerg Roedel04bfdd82009-09-02 16:00:23 +02001651 update_domain(&dma_dom->domain);
1652
Joerg Roedel9cabe892009-05-18 16:38:55 +02001653 return 0;
1654
1655out_free:
Joerg Roedel04bfdd82009-09-02 16:00:23 +02001656 update_domain(&dma_dom->domain);
1657
Joerg Roedel9cabe892009-05-18 16:38:55 +02001658 free_page((unsigned long)dma_dom->aperture[index]->bitmap);
1659
1660 kfree(dma_dom->aperture[index]);
1661 dma_dom->aperture[index] = NULL;
1662
1663 return -ENOMEM;
1664}
1665
Joerg Roedel384de722009-05-15 12:30:05 +02001666static unsigned long dma_ops_area_alloc(struct device *dev,
1667 struct dma_ops_domain *dom,
1668 unsigned int pages,
1669 unsigned long align_mask,
1670 u64 dma_mask,
1671 unsigned long start)
1672{
Joerg Roedel803b8cb2009-05-18 15:32:48 +02001673 unsigned long next_bit = dom->next_address % APERTURE_RANGE_SIZE;
Joerg Roedel384de722009-05-15 12:30:05 +02001674 int max_index = dom->aperture_size >> APERTURE_RANGE_SHIFT;
1675 int i = start >> APERTURE_RANGE_SHIFT;
1676 unsigned long boundary_size;
1677 unsigned long address = -1;
1678 unsigned long limit;
1679
Joerg Roedel803b8cb2009-05-18 15:32:48 +02001680 next_bit >>= PAGE_SHIFT;
1681
Joerg Roedel384de722009-05-15 12:30:05 +02001682 boundary_size = ALIGN(dma_get_seg_boundary(dev) + 1,
1683 PAGE_SIZE) >> PAGE_SHIFT;
1684
1685 for (;i < max_index; ++i) {
1686 unsigned long offset = dom->aperture[i]->offset >> PAGE_SHIFT;
1687
1688 if (dom->aperture[i]->offset >= dma_mask)
1689 break;
1690
1691 limit = iommu_device_max_index(APERTURE_RANGE_PAGES, offset,
1692 dma_mask >> PAGE_SHIFT);
1693
1694 address = iommu_area_alloc(dom->aperture[i]->bitmap,
1695 limit, next_bit, pages, 0,
1696 boundary_size, align_mask);
1697 if (address != -1) {
1698 address = dom->aperture[i]->offset +
1699 (address << PAGE_SHIFT);
Joerg Roedel803b8cb2009-05-18 15:32:48 +02001700 dom->next_address = address + (pages << PAGE_SHIFT);
Joerg Roedel384de722009-05-15 12:30:05 +02001701 break;
1702 }
1703
1704 next_bit = 0;
1705 }
1706
1707 return address;
1708}
1709
Joerg Roedeld3086442008-06-26 21:27:57 +02001710static unsigned long dma_ops_alloc_addresses(struct device *dev,
1711 struct dma_ops_domain *dom,
Joerg Roedel6d4f3432008-09-04 19:18:02 +02001712 unsigned int pages,
Joerg Roedel832a90c2008-09-18 15:54:23 +02001713 unsigned long align_mask,
1714 u64 dma_mask)
Joerg Roedeld3086442008-06-26 21:27:57 +02001715{
Joerg Roedeld3086442008-06-26 21:27:57 +02001716 unsigned long address;
Joerg Roedeld3086442008-06-26 21:27:57 +02001717
Joerg Roedelfe16f082009-05-22 12:27:53 +02001718#ifdef CONFIG_IOMMU_STRESS
1719 dom->next_address = 0;
1720 dom->need_flush = true;
1721#endif
Joerg Roedeld3086442008-06-26 21:27:57 +02001722
Joerg Roedel384de722009-05-15 12:30:05 +02001723 address = dma_ops_area_alloc(dev, dom, pages, align_mask,
Joerg Roedel803b8cb2009-05-18 15:32:48 +02001724 dma_mask, dom->next_address);
Joerg Roedeld3086442008-06-26 21:27:57 +02001725
Joerg Roedel1c655772008-09-04 18:40:05 +02001726 if (address == -1) {
Joerg Roedel803b8cb2009-05-18 15:32:48 +02001727 dom->next_address = 0;
Joerg Roedel384de722009-05-15 12:30:05 +02001728 address = dma_ops_area_alloc(dev, dom, pages, align_mask,
1729 dma_mask, 0);
Joerg Roedel1c655772008-09-04 18:40:05 +02001730 dom->need_flush = true;
1731 }
Joerg Roedeld3086442008-06-26 21:27:57 +02001732
Joerg Roedel384de722009-05-15 12:30:05 +02001733 if (unlikely(address == -1))
FUJITA Tomonori8fd524b2009-11-15 21:19:53 +09001734 address = DMA_ERROR_CODE;
Joerg Roedeld3086442008-06-26 21:27:57 +02001735
1736 WARN_ON((address + (PAGE_SIZE*pages)) > dom->aperture_size);
1737
1738 return address;
1739}
1740
Joerg Roedel431b2a22008-07-11 17:14:22 +02001741/*
1742 * The address free function.
1743 *
1744 * called with domain->lock held
1745 */
Joerg Roedeld3086442008-06-26 21:27:57 +02001746static void dma_ops_free_addresses(struct dma_ops_domain *dom,
1747 unsigned long address,
1748 unsigned int pages)
1749{
Joerg Roedel384de722009-05-15 12:30:05 +02001750 unsigned i = address >> APERTURE_RANGE_SHIFT;
1751 struct aperture_range *range = dom->aperture[i];
Joerg Roedel80be3082008-11-06 14:59:05 +01001752
Joerg Roedel384de722009-05-15 12:30:05 +02001753 BUG_ON(i >= APERTURE_MAX_RANGES || range == NULL);
1754
Joerg Roedel47bccd62009-05-22 12:40:54 +02001755#ifdef CONFIG_IOMMU_STRESS
1756 if (i < 4)
1757 return;
1758#endif
1759
Joerg Roedel803b8cb2009-05-18 15:32:48 +02001760 if (address >= dom->next_address)
Joerg Roedel80be3082008-11-06 14:59:05 +01001761 dom->need_flush = true;
Joerg Roedel384de722009-05-15 12:30:05 +02001762
1763 address = (address % APERTURE_RANGE_SIZE) >> PAGE_SHIFT;
Joerg Roedel803b8cb2009-05-18 15:32:48 +02001764
Akinobu Mitaa66022c2009-12-15 16:48:28 -08001765 bitmap_clear(range->bitmap, address, pages);
Joerg Roedel384de722009-05-15 12:30:05 +02001766
Joerg Roedeld3086442008-06-26 21:27:57 +02001767}
1768
Joerg Roedel431b2a22008-07-11 17:14:22 +02001769/****************************************************************************
1770 *
1771 * The next functions belong to the domain allocation. A domain is
1772 * allocated for every IOMMU as the default domain. If device isolation
1773 * is enabled, every device get its own domain. The most important thing
1774 * about domains is the page table mapping the DMA address space they
1775 * contain.
1776 *
1777 ****************************************************************************/
1778
Joerg Roedelaeb26f52009-11-20 16:44:01 +01001779/*
1780 * This function adds a protection domain to the global protection domain list
1781 */
1782static void add_domain_to_list(struct protection_domain *domain)
1783{
1784 unsigned long flags;
1785
1786 spin_lock_irqsave(&amd_iommu_pd_lock, flags);
1787 list_add(&domain->list, &amd_iommu_pd_list);
1788 spin_unlock_irqrestore(&amd_iommu_pd_lock, flags);
1789}
1790
1791/*
1792 * This function removes a protection domain to the global
1793 * protection domain list
1794 */
1795static void del_domain_from_list(struct protection_domain *domain)
1796{
1797 unsigned long flags;
1798
1799 spin_lock_irqsave(&amd_iommu_pd_lock, flags);
1800 list_del(&domain->list);
1801 spin_unlock_irqrestore(&amd_iommu_pd_lock, flags);
1802}
1803
Joerg Roedelec487d12008-06-26 21:27:58 +02001804static u16 domain_id_alloc(void)
1805{
1806 unsigned long flags;
1807 int id;
1808
1809 write_lock_irqsave(&amd_iommu_devtable_lock, flags);
1810 id = find_first_zero_bit(amd_iommu_pd_alloc_bitmap, MAX_DOMAIN_ID);
1811 BUG_ON(id == 0);
1812 if (id > 0 && id < MAX_DOMAIN_ID)
1813 __set_bit(id, amd_iommu_pd_alloc_bitmap);
1814 else
1815 id = 0;
1816 write_unlock_irqrestore(&amd_iommu_devtable_lock, flags);
1817
1818 return id;
1819}
1820
Joerg Roedela2acfb72008-12-02 18:28:53 +01001821static void domain_id_free(int id)
1822{
1823 unsigned long flags;
1824
1825 write_lock_irqsave(&amd_iommu_devtable_lock, flags);
1826 if (id > 0 && id < MAX_DOMAIN_ID)
1827 __clear_bit(id, amd_iommu_pd_alloc_bitmap);
1828 write_unlock_irqrestore(&amd_iommu_devtable_lock, flags);
1829}
Joerg Roedela2acfb72008-12-02 18:28:53 +01001830
Joerg Roedel5c34c402013-06-20 20:22:58 +02001831#define DEFINE_FREE_PT_FN(LVL, FN) \
1832static void free_pt_##LVL (unsigned long __pt) \
1833{ \
1834 unsigned long p; \
1835 u64 *pt; \
1836 int i; \
1837 \
1838 pt = (u64 *)__pt; \
1839 \
1840 for (i = 0; i < 512; ++i) { \
1841 if (!IOMMU_PTE_PRESENT(pt[i])) \
1842 continue; \
1843 \
1844 p = (unsigned long)IOMMU_PTE_PAGE(pt[i]); \
1845 FN(p); \
1846 } \
1847 free_page((unsigned long)pt); \
1848}
1849
1850DEFINE_FREE_PT_FN(l2, free_page)
1851DEFINE_FREE_PT_FN(l3, free_pt_l2)
1852DEFINE_FREE_PT_FN(l4, free_pt_l3)
1853DEFINE_FREE_PT_FN(l5, free_pt_l4)
1854DEFINE_FREE_PT_FN(l6, free_pt_l5)
1855
Joerg Roedel86db2e52008-12-02 18:20:21 +01001856static void free_pagetable(struct protection_domain *domain)
Joerg Roedelec487d12008-06-26 21:27:58 +02001857{
Joerg Roedel5c34c402013-06-20 20:22:58 +02001858 unsigned long root = (unsigned long)domain->pt_root;
Joerg Roedelec487d12008-06-26 21:27:58 +02001859
Joerg Roedel5c34c402013-06-20 20:22:58 +02001860 switch (domain->mode) {
1861 case PAGE_MODE_NONE:
1862 break;
1863 case PAGE_MODE_1_LEVEL:
1864 free_page(root);
1865 break;
1866 case PAGE_MODE_2_LEVEL:
1867 free_pt_l2(root);
1868 break;
1869 case PAGE_MODE_3_LEVEL:
1870 free_pt_l3(root);
1871 break;
1872 case PAGE_MODE_4_LEVEL:
1873 free_pt_l4(root);
1874 break;
1875 case PAGE_MODE_5_LEVEL:
1876 free_pt_l5(root);
1877 break;
1878 case PAGE_MODE_6_LEVEL:
1879 free_pt_l6(root);
1880 break;
1881 default:
1882 BUG();
Joerg Roedelec487d12008-06-26 21:27:58 +02001883 }
Joerg Roedelec487d12008-06-26 21:27:58 +02001884}
1885
Joerg Roedelb16137b2011-11-21 16:50:23 +01001886static void free_gcr3_tbl_level1(u64 *tbl)
1887{
1888 u64 *ptr;
1889 int i;
1890
1891 for (i = 0; i < 512; ++i) {
1892 if (!(tbl[i] & GCR3_VALID))
1893 continue;
1894
1895 ptr = __va(tbl[i] & PAGE_MASK);
1896
1897 free_page((unsigned long)ptr);
1898 }
1899}
1900
1901static void free_gcr3_tbl_level2(u64 *tbl)
1902{
1903 u64 *ptr;
1904 int i;
1905
1906 for (i = 0; i < 512; ++i) {
1907 if (!(tbl[i] & GCR3_VALID))
1908 continue;
1909
1910 ptr = __va(tbl[i] & PAGE_MASK);
1911
1912 free_gcr3_tbl_level1(ptr);
1913 }
1914}
1915
Joerg Roedel52815b72011-11-17 17:24:28 +01001916static void free_gcr3_table(struct protection_domain *domain)
1917{
Joerg Roedelb16137b2011-11-21 16:50:23 +01001918 if (domain->glx == 2)
1919 free_gcr3_tbl_level2(domain->gcr3_tbl);
1920 else if (domain->glx == 1)
1921 free_gcr3_tbl_level1(domain->gcr3_tbl);
1922 else if (domain->glx != 0)
1923 BUG();
1924
Joerg Roedel52815b72011-11-17 17:24:28 +01001925 free_page((unsigned long)domain->gcr3_tbl);
1926}
1927
Joerg Roedel431b2a22008-07-11 17:14:22 +02001928/*
1929 * Free a domain, only used if something went wrong in the
1930 * allocation path and we need to free an already allocated page table
1931 */
Joerg Roedelec487d12008-06-26 21:27:58 +02001932static void dma_ops_domain_free(struct dma_ops_domain *dom)
1933{
Joerg Roedel384de722009-05-15 12:30:05 +02001934 int i;
1935
Joerg Roedelec487d12008-06-26 21:27:58 +02001936 if (!dom)
1937 return;
1938
Joerg Roedelaeb26f52009-11-20 16:44:01 +01001939 del_domain_from_list(&dom->domain);
1940
Joerg Roedel86db2e52008-12-02 18:20:21 +01001941 free_pagetable(&dom->domain);
Joerg Roedelec487d12008-06-26 21:27:58 +02001942
Joerg Roedel384de722009-05-15 12:30:05 +02001943 for (i = 0; i < APERTURE_MAX_RANGES; ++i) {
1944 if (!dom->aperture[i])
1945 continue;
1946 free_page((unsigned long)dom->aperture[i]->bitmap);
1947 kfree(dom->aperture[i]);
1948 }
Joerg Roedelec487d12008-06-26 21:27:58 +02001949
1950 kfree(dom);
1951}
1952
Joerg Roedel431b2a22008-07-11 17:14:22 +02001953/*
1954 * Allocates a new protection domain usable for the dma_ops functions.
Uwe Kleine-Königb5950762010-11-01 15:38:34 -04001955 * It also initializes the page table and the address allocator data
Joerg Roedel431b2a22008-07-11 17:14:22 +02001956 * structures required for the dma_ops interface
1957 */
Joerg Roedel87a64d52009-11-24 17:26:43 +01001958static struct dma_ops_domain *dma_ops_domain_alloc(void)
Joerg Roedelec487d12008-06-26 21:27:58 +02001959{
1960 struct dma_ops_domain *dma_dom;
Joerg Roedelec487d12008-06-26 21:27:58 +02001961
1962 dma_dom = kzalloc(sizeof(struct dma_ops_domain), GFP_KERNEL);
1963 if (!dma_dom)
1964 return NULL;
1965
1966 spin_lock_init(&dma_dom->domain.lock);
1967
1968 dma_dom->domain.id = domain_id_alloc();
1969 if (dma_dom->domain.id == 0)
1970 goto free_dma_dom;
Joerg Roedel7c392cb2009-11-26 11:13:32 +01001971 INIT_LIST_HEAD(&dma_dom->domain.dev_list);
Joerg Roedel8f7a0172009-09-02 16:55:24 +02001972 dma_dom->domain.mode = PAGE_MODE_2_LEVEL;
Joerg Roedelec487d12008-06-26 21:27:58 +02001973 dma_dom->domain.pt_root = (void *)get_zeroed_page(GFP_KERNEL);
Joerg Roedel9fdb19d2008-12-02 17:46:25 +01001974 dma_dom->domain.flags = PD_DMA_OPS_MASK;
Joerg Roedelec487d12008-06-26 21:27:58 +02001975 dma_dom->domain.priv = dma_dom;
1976 if (!dma_dom->domain.pt_root)
1977 goto free_dma_dom;
Joerg Roedelec487d12008-06-26 21:27:58 +02001978
Joerg Roedel1c655772008-09-04 18:40:05 +02001979 dma_dom->need_flush = false;
Joerg Roedelbd60b732008-09-11 10:24:48 +02001980 dma_dom->target_dev = 0xffff;
Joerg Roedel1c655772008-09-04 18:40:05 +02001981
Joerg Roedelaeb26f52009-11-20 16:44:01 +01001982 add_domain_to_list(&dma_dom->domain);
1983
Joerg Roedel576175c2009-11-23 19:08:46 +01001984 if (alloc_new_range(dma_dom, true, GFP_KERNEL))
Joerg Roedelec487d12008-06-26 21:27:58 +02001985 goto free_dma_dom;
Joerg Roedelec487d12008-06-26 21:27:58 +02001986
Joerg Roedel431b2a22008-07-11 17:14:22 +02001987 /*
Joerg Roedelec487d12008-06-26 21:27:58 +02001988 * mark the first page as allocated so we never return 0 as
1989 * a valid dma-address. So we can use 0 as error value
Joerg Roedel431b2a22008-07-11 17:14:22 +02001990 */
Joerg Roedel384de722009-05-15 12:30:05 +02001991 dma_dom->aperture[0]->bitmap[0] = 1;
Joerg Roedel803b8cb2009-05-18 15:32:48 +02001992 dma_dom->next_address = 0;
Joerg Roedelec487d12008-06-26 21:27:58 +02001993
Joerg Roedelec487d12008-06-26 21:27:58 +02001994
1995 return dma_dom;
1996
1997free_dma_dom:
1998 dma_ops_domain_free(dma_dom);
1999
2000 return NULL;
2001}
2002
Joerg Roedel431b2a22008-07-11 17:14:22 +02002003/*
Joerg Roedel5b28df62008-12-02 17:49:42 +01002004 * little helper function to check whether a given protection domain is a
2005 * dma_ops domain
2006 */
2007static bool dma_ops_domain(struct protection_domain *domain)
2008{
2009 return domain->flags & PD_DMA_OPS_MASK;
2010}
2011
Joerg Roedelfd7b5532011-04-05 15:31:08 +02002012static void set_dte_entry(u16 devid, struct protection_domain *domain, bool ats)
Joerg Roedelb20ac0d2008-06-26 21:27:59 +02002013{
Joerg Roedel132bd682011-11-17 14:18:46 +01002014 u64 pte_root = 0;
Joerg Roedelee6c2862011-11-09 12:06:03 +01002015 u64 flags = 0;
Joerg Roedel863c74e2008-12-02 17:56:36 +01002016
Joerg Roedel132bd682011-11-17 14:18:46 +01002017 if (domain->mode != PAGE_MODE_NONE)
2018 pte_root = virt_to_phys(domain->pt_root);
2019
Joerg Roedel38ddf412008-09-11 10:38:32 +02002020 pte_root |= (domain->mode & DEV_ENTRY_MODE_MASK)
2021 << DEV_ENTRY_MODE_SHIFT;
2022 pte_root |= IOMMU_PTE_IR | IOMMU_PTE_IW | IOMMU_PTE_P | IOMMU_PTE_TV;
Joerg Roedelb20ac0d2008-06-26 21:27:59 +02002023
Joerg Roedelee6c2862011-11-09 12:06:03 +01002024 flags = amd_iommu_dev_table[devid].data[1];
2025
Joerg Roedelfd7b5532011-04-05 15:31:08 +02002026 if (ats)
2027 flags |= DTE_FLAG_IOTLB;
2028
Joerg Roedel52815b72011-11-17 17:24:28 +01002029 if (domain->flags & PD_IOMMUV2_MASK) {
2030 u64 gcr3 = __pa(domain->gcr3_tbl);
2031 u64 glx = domain->glx;
2032 u64 tmp;
2033
2034 pte_root |= DTE_FLAG_GV;
2035 pte_root |= (glx & DTE_GLX_MASK) << DTE_GLX_SHIFT;
2036
2037 /* First mask out possible old values for GCR3 table */
2038 tmp = DTE_GCR3_VAL_B(~0ULL) << DTE_GCR3_SHIFT_B;
2039 flags &= ~tmp;
2040
2041 tmp = DTE_GCR3_VAL_C(~0ULL) << DTE_GCR3_SHIFT_C;
2042 flags &= ~tmp;
2043
2044 /* Encode GCR3 table into DTE */
2045 tmp = DTE_GCR3_VAL_A(gcr3) << DTE_GCR3_SHIFT_A;
2046 pte_root |= tmp;
2047
2048 tmp = DTE_GCR3_VAL_B(gcr3) << DTE_GCR3_SHIFT_B;
2049 flags |= tmp;
2050
2051 tmp = DTE_GCR3_VAL_C(gcr3) << DTE_GCR3_SHIFT_C;
2052 flags |= tmp;
2053 }
2054
Joerg Roedelee6c2862011-11-09 12:06:03 +01002055 flags &= ~(0xffffUL);
2056 flags |= domain->id;
2057
2058 amd_iommu_dev_table[devid].data[1] = flags;
2059 amd_iommu_dev_table[devid].data[0] = pte_root;
Joerg Roedelb20ac0d2008-06-26 21:27:59 +02002060}
2061
Joerg Roedel15898bb2009-11-24 15:39:42 +01002062static void clear_dte_entry(u16 devid)
Joerg Roedel355bf552008-12-08 12:02:41 +01002063{
Joerg Roedel355bf552008-12-08 12:02:41 +01002064 /* remove entry from the device table seen by the hardware */
2065 amd_iommu_dev_table[devid].data[0] = IOMMU_PTE_P | IOMMU_PTE_TV;
2066 amd_iommu_dev_table[devid].data[1] = 0;
Joerg Roedel355bf552008-12-08 12:02:41 +01002067
Joerg Roedelc5cca142009-10-09 18:31:20 +02002068 amd_iommu_apply_erratum_63(devid);
Joerg Roedel7f760dd2009-11-26 14:49:59 +01002069}
2070
Joerg Roedelec9e79e2011-06-09 17:25:50 +02002071static void do_attach(struct iommu_dev_data *dev_data,
2072 struct protection_domain *domain)
Joerg Roedel7f760dd2009-11-26 14:49:59 +01002073{
Joerg Roedel7f760dd2009-11-26 14:49:59 +01002074 struct amd_iommu *iommu;
Joerg Roedelec9e79e2011-06-09 17:25:50 +02002075 bool ats;
Joerg Roedel7f760dd2009-11-26 14:49:59 +01002076
Joerg Roedelec9e79e2011-06-09 17:25:50 +02002077 iommu = amd_iommu_rlookup_table[dev_data->devid];
2078 ats = dev_data->ats.enabled;
Joerg Roedel7f760dd2009-11-26 14:49:59 +01002079
2080 /* Update data structures */
2081 dev_data->domain = domain;
2082 list_add(&dev_data->list, &domain->dev_list);
Joerg Roedelf62dda62011-06-09 12:55:35 +02002083 set_dte_entry(dev_data->devid, domain, ats);
Joerg Roedel7f760dd2009-11-26 14:49:59 +01002084
2085 /* Do reference counting */
2086 domain->dev_iommu[iommu->index] += 1;
2087 domain->dev_cnt += 1;
2088
2089 /* Flush the DTE entry */
Joerg Roedel6c542042011-06-09 17:07:31 +02002090 device_flush_dte(dev_data);
Joerg Roedel7f760dd2009-11-26 14:49:59 +01002091}
2092
Joerg Roedelec9e79e2011-06-09 17:25:50 +02002093static void do_detach(struct iommu_dev_data *dev_data)
Joerg Roedel7f760dd2009-11-26 14:49:59 +01002094{
Joerg Roedel7f760dd2009-11-26 14:49:59 +01002095 struct amd_iommu *iommu;
Joerg Roedel7f760dd2009-11-26 14:49:59 +01002096
Joerg Roedelec9e79e2011-06-09 17:25:50 +02002097 iommu = amd_iommu_rlookup_table[dev_data->devid];
Joerg Roedelc5cca142009-10-09 18:31:20 +02002098
Joerg Roedelc4596112009-11-20 14:57:32 +01002099 /* decrease reference counters */
Joerg Roedel7f760dd2009-11-26 14:49:59 +01002100 dev_data->domain->dev_iommu[iommu->index] -= 1;
2101 dev_data->domain->dev_cnt -= 1;
Joerg Roedel355bf552008-12-08 12:02:41 +01002102
Joerg Roedel7f760dd2009-11-26 14:49:59 +01002103 /* Update data structures */
2104 dev_data->domain = NULL;
2105 list_del(&dev_data->list);
Joerg Roedelf62dda62011-06-09 12:55:35 +02002106 clear_dte_entry(dev_data->devid);
Joerg Roedel7f760dd2009-11-26 14:49:59 +01002107
2108 /* Flush the DTE entry */
Joerg Roedel6c542042011-06-09 17:07:31 +02002109 device_flush_dte(dev_data);
Joerg Roedel15898bb2009-11-24 15:39:42 +01002110}
2111
2112/*
2113 * If a device is not yet associated with a domain, this function does
2114 * assigns it visible for the hardware
2115 */
Joerg Roedelec9e79e2011-06-09 17:25:50 +02002116static int __attach_device(struct iommu_dev_data *dev_data,
Joerg Roedel15898bb2009-11-24 15:39:42 +01002117 struct protection_domain *domain)
2118{
Julia Lawall84fe6c12010-05-27 12:31:51 +02002119 int ret;
Joerg Roedel657cbb62009-11-23 15:26:46 +01002120
Joerg Roedel15898bb2009-11-24 15:39:42 +01002121 /* lock domain */
2122 spin_lock(&domain->lock);
2123
Joerg Roedel71f77582011-06-09 19:03:15 +02002124 if (dev_data->alias_data != NULL) {
2125 struct iommu_dev_data *alias_data = dev_data->alias_data;
Joerg Roedel15898bb2009-11-24 15:39:42 +01002126
Joerg Roedel2b02b092011-06-09 17:48:39 +02002127 /* Some sanity checks */
2128 ret = -EBUSY;
2129 if (alias_data->domain != NULL &&
2130 alias_data->domain != domain)
2131 goto out_unlock;
Joerg Roedel15898bb2009-11-24 15:39:42 +01002132
Joerg Roedel2b02b092011-06-09 17:48:39 +02002133 if (dev_data->domain != NULL &&
2134 dev_data->domain != domain)
2135 goto out_unlock;
2136
2137 /* Do real assignment */
Joerg Roedel7f760dd2009-11-26 14:49:59 +01002138 if (alias_data->domain == NULL)
Joerg Roedelec9e79e2011-06-09 17:25:50 +02002139 do_attach(alias_data, domain);
Joerg Roedel24100052009-11-25 15:59:57 +01002140
2141 atomic_inc(&alias_data->bind);
Joerg Roedel657cbb62009-11-23 15:26:46 +01002142 }
Joerg Roedel15898bb2009-11-24 15:39:42 +01002143
Joerg Roedel7f760dd2009-11-26 14:49:59 +01002144 if (dev_data->domain == NULL)
Joerg Roedelec9e79e2011-06-09 17:25:50 +02002145 do_attach(dev_data, domain);
Joerg Roedel15898bb2009-11-24 15:39:42 +01002146
Joerg Roedel24100052009-11-25 15:59:57 +01002147 atomic_inc(&dev_data->bind);
2148
Julia Lawall84fe6c12010-05-27 12:31:51 +02002149 ret = 0;
2150
2151out_unlock:
2152
Joerg Roedel355bf552008-12-08 12:02:41 +01002153 /* ready */
2154 spin_unlock(&domain->lock);
Joerg Roedel21129f72009-09-01 11:59:42 +02002155
Julia Lawall84fe6c12010-05-27 12:31:51 +02002156 return ret;
Joerg Roedel15898bb2009-11-24 15:39:42 +01002157}
2158
Joerg Roedel52815b72011-11-17 17:24:28 +01002159
2160static void pdev_iommuv2_disable(struct pci_dev *pdev)
2161{
2162 pci_disable_ats(pdev);
2163 pci_disable_pri(pdev);
2164 pci_disable_pasid(pdev);
2165}
2166
Joerg Roedel6a113dd2011-12-01 12:04:58 +01002167/* FIXME: Change generic reset-function to do the same */
2168static int pri_reset_while_enabled(struct pci_dev *pdev)
2169{
2170 u16 control;
2171 int pos;
2172
Joerg Roedel46277b72011-12-07 14:34:02 +01002173 pos = pci_find_ext_capability(pdev, PCI_EXT_CAP_ID_PRI);
Joerg Roedel6a113dd2011-12-01 12:04:58 +01002174 if (!pos)
2175 return -EINVAL;
2176
Joerg Roedel46277b72011-12-07 14:34:02 +01002177 pci_read_config_word(pdev, pos + PCI_PRI_CTRL, &control);
2178 control |= PCI_PRI_CTRL_RESET;
2179 pci_write_config_word(pdev, pos + PCI_PRI_CTRL, control);
Joerg Roedel6a113dd2011-12-01 12:04:58 +01002180
2181 return 0;
2182}
2183
Joerg Roedel52815b72011-11-17 17:24:28 +01002184static int pdev_iommuv2_enable(struct pci_dev *pdev)
2185{
Joerg Roedel6a113dd2011-12-01 12:04:58 +01002186 bool reset_enable;
2187 int reqs, ret;
2188
2189 /* FIXME: Hardcode number of outstanding requests for now */
2190 reqs = 32;
2191 if (pdev_pri_erratum(pdev, AMD_PRI_DEV_ERRATUM_LIMIT_REQ_ONE))
2192 reqs = 1;
2193 reset_enable = pdev_pri_erratum(pdev, AMD_PRI_DEV_ERRATUM_ENABLE_RESET);
Joerg Roedel52815b72011-11-17 17:24:28 +01002194
2195 /* Only allow access to user-accessible pages */
2196 ret = pci_enable_pasid(pdev, 0);
2197 if (ret)
2198 goto out_err;
2199
2200 /* First reset the PRI state of the device */
2201 ret = pci_reset_pri(pdev);
2202 if (ret)
2203 goto out_err;
2204
Joerg Roedel6a113dd2011-12-01 12:04:58 +01002205 /* Enable PRI */
2206 ret = pci_enable_pri(pdev, reqs);
Joerg Roedel52815b72011-11-17 17:24:28 +01002207 if (ret)
2208 goto out_err;
2209
Joerg Roedel6a113dd2011-12-01 12:04:58 +01002210 if (reset_enable) {
2211 ret = pri_reset_while_enabled(pdev);
2212 if (ret)
2213 goto out_err;
2214 }
2215
Joerg Roedel52815b72011-11-17 17:24:28 +01002216 ret = pci_enable_ats(pdev, PAGE_SHIFT);
2217 if (ret)
2218 goto out_err;
2219
2220 return 0;
2221
2222out_err:
2223 pci_disable_pri(pdev);
2224 pci_disable_pasid(pdev);
2225
2226 return ret;
2227}
2228
Joerg Roedelc99afa22011-11-21 18:19:25 +01002229/* FIXME: Move this to PCI code */
Joerg Roedela3b93122012-04-12 12:49:26 +02002230#define PCI_PRI_TLP_OFF (1 << 15)
Joerg Roedelc99afa22011-11-21 18:19:25 +01002231
Joerg Roedel98f1ad22012-07-06 13:28:37 +02002232static bool pci_pri_tlp_required(struct pci_dev *pdev)
Joerg Roedelc99afa22011-11-21 18:19:25 +01002233{
Joerg Roedela3b93122012-04-12 12:49:26 +02002234 u16 status;
Joerg Roedelc99afa22011-11-21 18:19:25 +01002235 int pos;
2236
Joerg Roedel46277b72011-12-07 14:34:02 +01002237 pos = pci_find_ext_capability(pdev, PCI_EXT_CAP_ID_PRI);
Joerg Roedelc99afa22011-11-21 18:19:25 +01002238 if (!pos)
2239 return false;
2240
Joerg Roedela3b93122012-04-12 12:49:26 +02002241 pci_read_config_word(pdev, pos + PCI_PRI_STATUS, &status);
Joerg Roedelc99afa22011-11-21 18:19:25 +01002242
Joerg Roedela3b93122012-04-12 12:49:26 +02002243 return (status & PCI_PRI_TLP_OFF) ? true : false;
Joerg Roedelc99afa22011-11-21 18:19:25 +01002244}
2245
Joerg Roedel15898bb2009-11-24 15:39:42 +01002246/*
Frank Arnolddf805ab2012-08-27 19:21:04 +02002247 * If a device is not yet associated with a domain, this function
Joerg Roedel15898bb2009-11-24 15:39:42 +01002248 * assigns it visible for the hardware
2249 */
2250static int attach_device(struct device *dev,
2251 struct protection_domain *domain)
2252{
Joerg Roedelfd7b5532011-04-05 15:31:08 +02002253 struct pci_dev *pdev = to_pci_dev(dev);
Joerg Roedelea61cdd2011-06-09 12:56:30 +02002254 struct iommu_dev_data *dev_data;
Joerg Roedel15898bb2009-11-24 15:39:42 +01002255 unsigned long flags;
2256 int ret;
2257
Joerg Roedelea61cdd2011-06-09 12:56:30 +02002258 dev_data = get_dev_data(dev);
2259
Joerg Roedel52815b72011-11-17 17:24:28 +01002260 if (domain->flags & PD_IOMMUV2_MASK) {
2261 if (!dev_data->iommu_v2 || !dev_data->passthrough)
2262 return -EINVAL;
2263
2264 if (pdev_iommuv2_enable(pdev) != 0)
2265 return -EINVAL;
2266
2267 dev_data->ats.enabled = true;
2268 dev_data->ats.qdep = pci_ats_queue_depth(pdev);
Joerg Roedelc99afa22011-11-21 18:19:25 +01002269 dev_data->pri_tlp = pci_pri_tlp_required(pdev);
Joerg Roedel52815b72011-11-17 17:24:28 +01002270 } else if (amd_iommu_iotlb_sup &&
2271 pci_enable_ats(pdev, PAGE_SHIFT) == 0) {
Joerg Roedelea61cdd2011-06-09 12:56:30 +02002272 dev_data->ats.enabled = true;
2273 dev_data->ats.qdep = pci_ats_queue_depth(pdev);
2274 }
Joerg Roedelfd7b5532011-04-05 15:31:08 +02002275
Joerg Roedel15898bb2009-11-24 15:39:42 +01002276 write_lock_irqsave(&amd_iommu_devtable_lock, flags);
Joerg Roedelec9e79e2011-06-09 17:25:50 +02002277 ret = __attach_device(dev_data, domain);
Joerg Roedel15898bb2009-11-24 15:39:42 +01002278 write_unlock_irqrestore(&amd_iommu_devtable_lock, flags);
2279
2280 /*
2281 * We might boot into a crash-kernel here. The crashed kernel
2282 * left the caches in the IOMMU dirty. So we have to flush
2283 * here to evict all dirty stuff.
2284 */
Joerg Roedel17b124b2011-04-06 18:01:35 +02002285 domain_flush_tlb_pde(domain);
Joerg Roedel15898bb2009-11-24 15:39:42 +01002286
2287 return ret;
2288}
2289
2290/*
2291 * Removes a device from a protection domain (unlocked)
2292 */
Joerg Roedelec9e79e2011-06-09 17:25:50 +02002293static void __detach_device(struct iommu_dev_data *dev_data)
Joerg Roedel15898bb2009-11-24 15:39:42 +01002294{
Joerg Roedel2ca76272010-01-22 16:45:31 +01002295 struct protection_domain *domain;
Joerg Roedel7c392cb2009-11-26 11:13:32 +01002296 unsigned long flags;
Joerg Roedel15898bb2009-11-24 15:39:42 +01002297
Joerg Roedel7f760dd2009-11-26 14:49:59 +01002298 BUG_ON(!dev_data->domain);
Joerg Roedel15898bb2009-11-24 15:39:42 +01002299
Joerg Roedel2ca76272010-01-22 16:45:31 +01002300 domain = dev_data->domain;
2301
2302 spin_lock_irqsave(&domain->lock, flags);
Joerg Roedel24100052009-11-25 15:59:57 +01002303
Joerg Roedel71f77582011-06-09 19:03:15 +02002304 if (dev_data->alias_data != NULL) {
2305 struct iommu_dev_data *alias_data = dev_data->alias_data;
2306
Joerg Roedel7f760dd2009-11-26 14:49:59 +01002307 if (atomic_dec_and_test(&alias_data->bind))
Joerg Roedelec9e79e2011-06-09 17:25:50 +02002308 do_detach(alias_data);
Joerg Roedel24100052009-11-25 15:59:57 +01002309 }
2310
Joerg Roedel7f760dd2009-11-26 14:49:59 +01002311 if (atomic_dec_and_test(&dev_data->bind))
Joerg Roedelec9e79e2011-06-09 17:25:50 +02002312 do_detach(dev_data);
Joerg Roedel7f760dd2009-11-26 14:49:59 +01002313
Joerg Roedel2ca76272010-01-22 16:45:31 +01002314 spin_unlock_irqrestore(&domain->lock, flags);
Joerg Roedel15898bb2009-11-24 15:39:42 +01002315
Joerg Roedel21129f72009-09-01 11:59:42 +02002316 /*
2317 * If we run in passthrough mode the device must be assigned to the
Joerg Roedeld3ad9372010-01-22 17:55:27 +01002318 * passthrough domain if it is detached from any other domain.
2319 * Make sure we can deassign from the pt_domain itself.
Joerg Roedel21129f72009-09-01 11:59:42 +02002320 */
Joerg Roedel5abcdba2011-12-01 15:49:45 +01002321 if (dev_data->passthrough &&
Joerg Roedeld3ad9372010-01-22 17:55:27 +01002322 (dev_data->domain == NULL && domain != pt_domain))
Joerg Roedelec9e79e2011-06-09 17:25:50 +02002323 __attach_device(dev_data, pt_domain);
Joerg Roedel355bf552008-12-08 12:02:41 +01002324}
2325
2326/*
2327 * Removes a device from a protection domain (with devtable_lock held)
2328 */
Joerg Roedel15898bb2009-11-24 15:39:42 +01002329static void detach_device(struct device *dev)
Joerg Roedel355bf552008-12-08 12:02:41 +01002330{
Joerg Roedel52815b72011-11-17 17:24:28 +01002331 struct protection_domain *domain;
Joerg Roedelea61cdd2011-06-09 12:56:30 +02002332 struct iommu_dev_data *dev_data;
Joerg Roedel355bf552008-12-08 12:02:41 +01002333 unsigned long flags;
2334
Joerg Roedelec9e79e2011-06-09 17:25:50 +02002335 dev_data = get_dev_data(dev);
Joerg Roedel52815b72011-11-17 17:24:28 +01002336 domain = dev_data->domain;
Joerg Roedelec9e79e2011-06-09 17:25:50 +02002337
Joerg Roedel355bf552008-12-08 12:02:41 +01002338 /* lock device table */
2339 write_lock_irqsave(&amd_iommu_devtable_lock, flags);
Joerg Roedelec9e79e2011-06-09 17:25:50 +02002340 __detach_device(dev_data);
Joerg Roedel355bf552008-12-08 12:02:41 +01002341 write_unlock_irqrestore(&amd_iommu_devtable_lock, flags);
Joerg Roedelfd7b5532011-04-05 15:31:08 +02002342
Joerg Roedel52815b72011-11-17 17:24:28 +01002343 if (domain->flags & PD_IOMMUV2_MASK)
2344 pdev_iommuv2_disable(to_pci_dev(dev));
2345 else if (dev_data->ats.enabled)
Joerg Roedelea61cdd2011-06-09 12:56:30 +02002346 pci_disable_ats(to_pci_dev(dev));
Joerg Roedel52815b72011-11-17 17:24:28 +01002347
2348 dev_data->ats.enabled = false;
Joerg Roedel355bf552008-12-08 12:02:41 +01002349}
Joerg Roedele275a2a2008-12-10 18:27:25 +01002350
Joerg Roedel15898bb2009-11-24 15:39:42 +01002351/*
2352 * Find out the protection domain structure for a given PCI device. This
2353 * will give us the pointer to the page table root for example.
2354 */
2355static struct protection_domain *domain_for_device(struct device *dev)
2356{
Joerg Roedel71f77582011-06-09 19:03:15 +02002357 struct iommu_dev_data *dev_data;
Joerg Roedel2b02b092011-06-09 17:48:39 +02002358 struct protection_domain *dom = NULL;
Joerg Roedel15898bb2009-11-24 15:39:42 +01002359 unsigned long flags;
Joerg Roedel15898bb2009-11-24 15:39:42 +01002360
Joerg Roedel657cbb62009-11-23 15:26:46 +01002361 dev_data = get_dev_data(dev);
Joerg Roedel15898bb2009-11-24 15:39:42 +01002362
Joerg Roedel2b02b092011-06-09 17:48:39 +02002363 if (dev_data->domain)
2364 return dev_data->domain;
2365
Joerg Roedel71f77582011-06-09 19:03:15 +02002366 if (dev_data->alias_data != NULL) {
2367 struct iommu_dev_data *alias_data = dev_data->alias_data;
Joerg Roedel2b02b092011-06-09 17:48:39 +02002368
2369 read_lock_irqsave(&amd_iommu_devtable_lock, flags);
2370 if (alias_data->domain != NULL) {
2371 __attach_device(dev_data, alias_data->domain);
2372 dom = alias_data->domain;
2373 }
2374 read_unlock_irqrestore(&amd_iommu_devtable_lock, flags);
Joerg Roedel15898bb2009-11-24 15:39:42 +01002375 }
2376
Joerg Roedel15898bb2009-11-24 15:39:42 +01002377 return dom;
2378}
2379
Joerg Roedele275a2a2008-12-10 18:27:25 +01002380static int device_change_notifier(struct notifier_block *nb,
2381 unsigned long action, void *data)
2382{
Joerg Roedele275a2a2008-12-10 18:27:25 +01002383 struct dma_ops_domain *dma_domain;
Joerg Roedel5abcdba2011-12-01 15:49:45 +01002384 struct protection_domain *domain;
2385 struct iommu_dev_data *dev_data;
2386 struct device *dev = data;
Joerg Roedele275a2a2008-12-10 18:27:25 +01002387 struct amd_iommu *iommu;
Joerg Roedel1ac4cbb2008-12-10 19:33:26 +01002388 unsigned long flags;
Joerg Roedel5abcdba2011-12-01 15:49:45 +01002389 u16 devid;
Joerg Roedele275a2a2008-12-10 18:27:25 +01002390
Joerg Roedel98fc5a62009-11-24 17:19:23 +01002391 if (!check_device(dev))
2392 return 0;
Joerg Roedele275a2a2008-12-10 18:27:25 +01002393
Joerg Roedel5abcdba2011-12-01 15:49:45 +01002394 devid = get_device_id(dev);
2395 iommu = amd_iommu_rlookup_table[devid];
2396 dev_data = get_dev_data(dev);
Joerg Roedele275a2a2008-12-10 18:27:25 +01002397
2398 switch (action) {
Chris Wrightc1eee672009-05-21 00:56:58 -07002399 case BUS_NOTIFY_UNBOUND_DRIVER:
Joerg Roedel657cbb62009-11-23 15:26:46 +01002400
2401 domain = domain_for_device(dev);
2402
Joerg Roedele275a2a2008-12-10 18:27:25 +01002403 if (!domain)
2404 goto out;
Joerg Roedel5abcdba2011-12-01 15:49:45 +01002405 if (dev_data->passthrough)
Joerg Roedela1ca3312009-09-01 12:22:22 +02002406 break;
Joerg Roedel15898bb2009-11-24 15:39:42 +01002407 detach_device(dev);
Joerg Roedele275a2a2008-12-10 18:27:25 +01002408 break;
Joerg Roedel1ac4cbb2008-12-10 19:33:26 +01002409 case BUS_NOTIFY_ADD_DEVICE:
Joerg Roedel657cbb62009-11-23 15:26:46 +01002410
2411 iommu_init_device(dev);
2412
Joerg Roedel2c9195e2012-07-19 13:42:54 +02002413 /*
2414 * dev_data is still NULL and
2415 * got initialized in iommu_init_device
2416 */
2417 dev_data = get_dev_data(dev);
2418
2419 if (iommu_pass_through || dev_data->iommu_v2) {
2420 dev_data->passthrough = true;
2421 attach_device(dev, pt_domain);
2422 break;
2423 }
2424
Joerg Roedel657cbb62009-11-23 15:26:46 +01002425 domain = domain_for_device(dev);
2426
Joerg Roedel1ac4cbb2008-12-10 19:33:26 +01002427 /* allocate a protection domain if a device is added */
2428 dma_domain = find_protection_domain(devid);
Joerg Roedelc2a28762013-03-26 22:48:23 +01002429 if (!dma_domain) {
2430 dma_domain = dma_ops_domain_alloc();
2431 if (!dma_domain)
2432 goto out;
2433 dma_domain->target_dev = devid;
Joerg Roedel1ac4cbb2008-12-10 19:33:26 +01002434
Joerg Roedelc2a28762013-03-26 22:48:23 +01002435 spin_lock_irqsave(&iommu_pd_list_lock, flags);
2436 list_add_tail(&dma_domain->list, &iommu_pd_list);
2437 spin_unlock_irqrestore(&iommu_pd_list_lock, flags);
2438 }
Joerg Roedelac1534a2012-06-21 14:52:40 +02002439
Joerg Roedel2c9195e2012-07-19 13:42:54 +02002440 dev->archdata.dma_ops = &amd_iommu_dma_ops;
Joerg Roedelac1534a2012-06-21 14:52:40 +02002441
Joerg Roedel1ac4cbb2008-12-10 19:33:26 +01002442 break;
Joerg Roedel657cbb62009-11-23 15:26:46 +01002443 case BUS_NOTIFY_DEL_DEVICE:
2444
2445 iommu_uninit_device(dev);
2446
Joerg Roedele275a2a2008-12-10 18:27:25 +01002447 default:
2448 goto out;
2449 }
2450
Joerg Roedele275a2a2008-12-10 18:27:25 +01002451 iommu_completion_wait(iommu);
2452
2453out:
2454 return 0;
2455}
2456
Jaswinder Singh Rajputb25ae672009-07-01 19:53:14 +05302457static struct notifier_block device_nb = {
Joerg Roedele275a2a2008-12-10 18:27:25 +01002458 .notifier_call = device_change_notifier,
2459};
Joerg Roedel355bf552008-12-08 12:02:41 +01002460
Joerg Roedel8638c492009-12-10 11:12:25 +01002461void amd_iommu_init_notifier(void)
2462{
2463 bus_register_notifier(&pci_bus_type, &device_nb);
2464}
2465
Joerg Roedel431b2a22008-07-11 17:14:22 +02002466/*****************************************************************************
2467 *
2468 * The next functions belong to the dma_ops mapping/unmapping code.
2469 *
2470 *****************************************************************************/
2471
2472/*
2473 * In the dma_ops path we only have the struct device. This function
2474 * finds the corresponding IOMMU, the protection domain and the
2475 * requestor id for a given device.
2476 * If the device is not yet associated with a domain this is also done
2477 * in this function.
2478 */
Joerg Roedel94f6d192009-11-24 16:40:02 +01002479static struct protection_domain *get_domain(struct device *dev)
Joerg Roedelb20ac0d2008-06-26 21:27:59 +02002480{
Joerg Roedel94f6d192009-11-24 16:40:02 +01002481 struct protection_domain *domain;
Joerg Roedelb20ac0d2008-06-26 21:27:59 +02002482 struct dma_ops_domain *dma_dom;
Joerg Roedel94f6d192009-11-24 16:40:02 +01002483 u16 devid = get_device_id(dev);
Joerg Roedelb20ac0d2008-06-26 21:27:59 +02002484
Joerg Roedelf99c0f12009-11-23 16:52:56 +01002485 if (!check_device(dev))
Joerg Roedel94f6d192009-11-24 16:40:02 +01002486 return ERR_PTR(-EINVAL);
Joerg Roedeldbcc1122008-09-04 15:04:26 +02002487
Joerg Roedel94f6d192009-11-24 16:40:02 +01002488 domain = domain_for_device(dev);
2489 if (domain != NULL && !dma_ops_domain(domain))
2490 return ERR_PTR(-EBUSY);
Joerg Roedelf99c0f12009-11-23 16:52:56 +01002491
Joerg Roedel94f6d192009-11-24 16:40:02 +01002492 if (domain != NULL)
2493 return domain;
Joerg Roedelb20ac0d2008-06-26 21:27:59 +02002494
Frank Arnolddf805ab2012-08-27 19:21:04 +02002495 /* Device not bound yet - bind it */
Joerg Roedel94f6d192009-11-24 16:40:02 +01002496 dma_dom = find_protection_domain(devid);
Joerg Roedel15898bb2009-11-24 15:39:42 +01002497 if (!dma_dom)
Joerg Roedel94f6d192009-11-24 16:40:02 +01002498 dma_dom = amd_iommu_rlookup_table[devid]->default_dom;
2499 attach_device(dev, &dma_dom->domain);
Joerg Roedel15898bb2009-11-24 15:39:42 +01002500 DUMP_printk("Using protection domain %d for device %s\n",
Joerg Roedel94f6d192009-11-24 16:40:02 +01002501 dma_dom->domain.id, dev_name(dev));
Joerg Roedelf91ba192008-11-25 12:56:12 +01002502
Joerg Roedel94f6d192009-11-24 16:40:02 +01002503 return &dma_dom->domain;
Joerg Roedelb20ac0d2008-06-26 21:27:59 +02002504}
2505
Joerg Roedel04bfdd82009-09-02 16:00:23 +02002506static void update_device_table(struct protection_domain *domain)
2507{
Joerg Roedel492667d2009-11-27 13:25:47 +01002508 struct iommu_dev_data *dev_data;
Joerg Roedel04bfdd82009-09-02 16:00:23 +02002509
Joerg Roedelea61cdd2011-06-09 12:56:30 +02002510 list_for_each_entry(dev_data, &domain->dev_list, list)
2511 set_dte_entry(dev_data->devid, domain, dev_data->ats.enabled);
Joerg Roedel04bfdd82009-09-02 16:00:23 +02002512}
2513
2514static void update_domain(struct protection_domain *domain)
2515{
2516 if (!domain->updated)
2517 return;
2518
2519 update_device_table(domain);
Joerg Roedel17b124b2011-04-06 18:01:35 +02002520
2521 domain_flush_devices(domain);
2522 domain_flush_tlb_pde(domain);
Joerg Roedel04bfdd82009-09-02 16:00:23 +02002523
2524 domain->updated = false;
2525}
2526
Joerg Roedel431b2a22008-07-11 17:14:22 +02002527/*
Joerg Roedel8bda3092009-05-12 12:02:46 +02002528 * This function fetches the PTE for a given address in the aperture
2529 */
2530static u64* dma_ops_get_pte(struct dma_ops_domain *dom,
2531 unsigned long address)
2532{
Joerg Roedel384de722009-05-15 12:30:05 +02002533 struct aperture_range *aperture;
Joerg Roedel8bda3092009-05-12 12:02:46 +02002534 u64 *pte, *pte_page;
2535
Joerg Roedel384de722009-05-15 12:30:05 +02002536 aperture = dom->aperture[APERTURE_RANGE_INDEX(address)];
2537 if (!aperture)
2538 return NULL;
2539
2540 pte = aperture->pte_pages[APERTURE_PAGE_INDEX(address)];
Joerg Roedel8bda3092009-05-12 12:02:46 +02002541 if (!pte) {
Joerg Roedelcbb9d722010-01-15 14:41:15 +01002542 pte = alloc_pte(&dom->domain, address, PAGE_SIZE, &pte_page,
Joerg Roedelabdc5eb2009-09-03 11:33:51 +02002543 GFP_ATOMIC);
Joerg Roedel384de722009-05-15 12:30:05 +02002544 aperture->pte_pages[APERTURE_PAGE_INDEX(address)] = pte_page;
2545 } else
Joerg Roedel8c8c1432009-09-02 17:30:00 +02002546 pte += PM_LEVEL_INDEX(0, address);
Joerg Roedel8bda3092009-05-12 12:02:46 +02002547
Joerg Roedel04bfdd82009-09-02 16:00:23 +02002548 update_domain(&dom->domain);
Joerg Roedel8bda3092009-05-12 12:02:46 +02002549
2550 return pte;
2551}
2552
2553/*
Joerg Roedel431b2a22008-07-11 17:14:22 +02002554 * This is the generic map function. It maps one 4kb page at paddr to
2555 * the given address in the DMA address space for the domain.
2556 */
Joerg Roedel680525e2009-11-23 18:44:42 +01002557static dma_addr_t dma_ops_domain_map(struct dma_ops_domain *dom,
Joerg Roedelcb76c322008-06-26 21:28:00 +02002558 unsigned long address,
2559 phys_addr_t paddr,
2560 int direction)
2561{
2562 u64 *pte, __pte;
2563
2564 WARN_ON(address > dom->aperture_size);
2565
2566 paddr &= PAGE_MASK;
2567
Joerg Roedel8bda3092009-05-12 12:02:46 +02002568 pte = dma_ops_get_pte(dom, address);
Joerg Roedel53812c12009-05-12 12:17:38 +02002569 if (!pte)
FUJITA Tomonori8fd524b2009-11-15 21:19:53 +09002570 return DMA_ERROR_CODE;
Joerg Roedelcb76c322008-06-26 21:28:00 +02002571
2572 __pte = paddr | IOMMU_PTE_P | IOMMU_PTE_FC;
2573
2574 if (direction == DMA_TO_DEVICE)
2575 __pte |= IOMMU_PTE_IR;
2576 else if (direction == DMA_FROM_DEVICE)
2577 __pte |= IOMMU_PTE_IW;
2578 else if (direction == DMA_BIDIRECTIONAL)
2579 __pte |= IOMMU_PTE_IR | IOMMU_PTE_IW;
2580
2581 WARN_ON(*pte);
2582
2583 *pte = __pte;
2584
2585 return (dma_addr_t)address;
2586}
2587
Joerg Roedel431b2a22008-07-11 17:14:22 +02002588/*
2589 * The generic unmapping function for on page in the DMA address space.
2590 */
Joerg Roedel680525e2009-11-23 18:44:42 +01002591static void dma_ops_domain_unmap(struct dma_ops_domain *dom,
Joerg Roedelcb76c322008-06-26 21:28:00 +02002592 unsigned long address)
2593{
Joerg Roedel384de722009-05-15 12:30:05 +02002594 struct aperture_range *aperture;
Joerg Roedelcb76c322008-06-26 21:28:00 +02002595 u64 *pte;
2596
2597 if (address >= dom->aperture_size)
2598 return;
2599
Joerg Roedel384de722009-05-15 12:30:05 +02002600 aperture = dom->aperture[APERTURE_RANGE_INDEX(address)];
2601 if (!aperture)
2602 return;
Joerg Roedelcb76c322008-06-26 21:28:00 +02002603
Joerg Roedel384de722009-05-15 12:30:05 +02002604 pte = aperture->pte_pages[APERTURE_PAGE_INDEX(address)];
2605 if (!pte)
2606 return;
2607
Joerg Roedel8c8c1432009-09-02 17:30:00 +02002608 pte += PM_LEVEL_INDEX(0, address);
Joerg Roedelcb76c322008-06-26 21:28:00 +02002609
2610 WARN_ON(!*pte);
2611
2612 *pte = 0ULL;
2613}
2614
Joerg Roedel431b2a22008-07-11 17:14:22 +02002615/*
2616 * This function contains common code for mapping of a physically
Joerg Roedel24f81162008-12-08 14:25:39 +01002617 * contiguous memory region into DMA address space. It is used by all
2618 * mapping functions provided with this IOMMU driver.
Joerg Roedel431b2a22008-07-11 17:14:22 +02002619 * Must be called with the domain lock held.
2620 */
Joerg Roedelcb76c322008-06-26 21:28:00 +02002621static dma_addr_t __map_single(struct device *dev,
Joerg Roedelcb76c322008-06-26 21:28:00 +02002622 struct dma_ops_domain *dma_dom,
2623 phys_addr_t paddr,
2624 size_t size,
Joerg Roedel6d4f3432008-09-04 19:18:02 +02002625 int dir,
Joerg Roedel832a90c2008-09-18 15:54:23 +02002626 bool align,
2627 u64 dma_mask)
Joerg Roedelcb76c322008-06-26 21:28:00 +02002628{
2629 dma_addr_t offset = paddr & ~PAGE_MASK;
Joerg Roedel53812c12009-05-12 12:17:38 +02002630 dma_addr_t address, start, ret;
Joerg Roedelcb76c322008-06-26 21:28:00 +02002631 unsigned int pages;
Joerg Roedel6d4f3432008-09-04 19:18:02 +02002632 unsigned long align_mask = 0;
Joerg Roedelcb76c322008-06-26 21:28:00 +02002633 int i;
2634
Joerg Roedele3c449f2008-10-15 22:02:11 -07002635 pages = iommu_num_pages(paddr, size, PAGE_SIZE);
Joerg Roedelcb76c322008-06-26 21:28:00 +02002636 paddr &= PAGE_MASK;
2637
Joerg Roedel8ecaf8f2008-12-12 16:13:04 +01002638 INC_STATS_COUNTER(total_map_requests);
2639
Joerg Roedelc1858972008-12-12 15:42:39 +01002640 if (pages > 1)
2641 INC_STATS_COUNTER(cross_page);
2642
Joerg Roedel6d4f3432008-09-04 19:18:02 +02002643 if (align)
2644 align_mask = (1UL << get_order(size)) - 1;
2645
Joerg Roedel11b83882009-05-19 10:23:15 +02002646retry:
Joerg Roedel832a90c2008-09-18 15:54:23 +02002647 address = dma_ops_alloc_addresses(dev, dma_dom, pages, align_mask,
2648 dma_mask);
FUJITA Tomonori8fd524b2009-11-15 21:19:53 +09002649 if (unlikely(address == DMA_ERROR_CODE)) {
Joerg Roedel11b83882009-05-19 10:23:15 +02002650 /*
2651 * setting next_address here will let the address
2652 * allocator only scan the new allocated range in the
2653 * first run. This is a small optimization.
2654 */
2655 dma_dom->next_address = dma_dom->aperture_size;
2656
Joerg Roedel576175c2009-11-23 19:08:46 +01002657 if (alloc_new_range(dma_dom, false, GFP_ATOMIC))
Joerg Roedel11b83882009-05-19 10:23:15 +02002658 goto out;
2659
2660 /*
André Goddard Rosaaf901ca2009-11-14 13:09:05 -02002661 * aperture was successfully enlarged by 128 MB, try
Joerg Roedel11b83882009-05-19 10:23:15 +02002662 * allocation again
2663 */
2664 goto retry;
2665 }
Joerg Roedelcb76c322008-06-26 21:28:00 +02002666
2667 start = address;
2668 for (i = 0; i < pages; ++i) {
Joerg Roedel680525e2009-11-23 18:44:42 +01002669 ret = dma_ops_domain_map(dma_dom, start, paddr, dir);
FUJITA Tomonori8fd524b2009-11-15 21:19:53 +09002670 if (ret == DMA_ERROR_CODE)
Joerg Roedel53812c12009-05-12 12:17:38 +02002671 goto out_unmap;
2672
Joerg Roedelcb76c322008-06-26 21:28:00 +02002673 paddr += PAGE_SIZE;
2674 start += PAGE_SIZE;
2675 }
2676 address += offset;
2677
Joerg Roedel5774f7c2008-12-12 15:57:30 +01002678 ADD_STATS_COUNTER(alloced_io_mem, size);
2679
FUJITA Tomonoriafa9fdc2008-09-20 01:23:30 +09002680 if (unlikely(dma_dom->need_flush && !amd_iommu_unmap_flush)) {
Joerg Roedel17b124b2011-04-06 18:01:35 +02002681 domain_flush_tlb(&dma_dom->domain);
Joerg Roedel1c655772008-09-04 18:40:05 +02002682 dma_dom->need_flush = false;
Joerg Roedel318afd42009-11-23 18:32:38 +01002683 } else if (unlikely(amd_iommu_np_cache))
Joerg Roedel17b124b2011-04-06 18:01:35 +02002684 domain_flush_pages(&dma_dom->domain, address, size);
Joerg Roedel270cab242008-09-04 15:49:46 +02002685
Joerg Roedelcb76c322008-06-26 21:28:00 +02002686out:
2687 return address;
Joerg Roedel53812c12009-05-12 12:17:38 +02002688
2689out_unmap:
2690
2691 for (--i; i >= 0; --i) {
2692 start -= PAGE_SIZE;
Joerg Roedel680525e2009-11-23 18:44:42 +01002693 dma_ops_domain_unmap(dma_dom, start);
Joerg Roedel53812c12009-05-12 12:17:38 +02002694 }
2695
2696 dma_ops_free_addresses(dma_dom, address, pages);
2697
FUJITA Tomonori8fd524b2009-11-15 21:19:53 +09002698 return DMA_ERROR_CODE;
Joerg Roedelcb76c322008-06-26 21:28:00 +02002699}
2700
Joerg Roedel431b2a22008-07-11 17:14:22 +02002701/*
2702 * Does the reverse of the __map_single function. Must be called with
2703 * the domain lock held too
2704 */
Joerg Roedelcd8c82e2009-11-23 19:33:56 +01002705static void __unmap_single(struct dma_ops_domain *dma_dom,
Joerg Roedelcb76c322008-06-26 21:28:00 +02002706 dma_addr_t dma_addr,
2707 size_t size,
2708 int dir)
2709{
Joerg Roedel04e04632010-09-23 16:12:48 +02002710 dma_addr_t flush_addr;
Joerg Roedelcb76c322008-06-26 21:28:00 +02002711 dma_addr_t i, start;
2712 unsigned int pages;
2713
FUJITA Tomonori8fd524b2009-11-15 21:19:53 +09002714 if ((dma_addr == DMA_ERROR_CODE) ||
Joerg Roedelb8d99052008-12-08 14:40:26 +01002715 (dma_addr + size > dma_dom->aperture_size))
Joerg Roedelcb76c322008-06-26 21:28:00 +02002716 return;
2717
Joerg Roedel04e04632010-09-23 16:12:48 +02002718 flush_addr = dma_addr;
Joerg Roedele3c449f2008-10-15 22:02:11 -07002719 pages = iommu_num_pages(dma_addr, size, PAGE_SIZE);
Joerg Roedelcb76c322008-06-26 21:28:00 +02002720 dma_addr &= PAGE_MASK;
2721 start = dma_addr;
2722
2723 for (i = 0; i < pages; ++i) {
Joerg Roedel680525e2009-11-23 18:44:42 +01002724 dma_ops_domain_unmap(dma_dom, start);
Joerg Roedelcb76c322008-06-26 21:28:00 +02002725 start += PAGE_SIZE;
2726 }
2727
Joerg Roedel5774f7c2008-12-12 15:57:30 +01002728 SUB_STATS_COUNTER(alloced_io_mem, size);
2729
Joerg Roedelcb76c322008-06-26 21:28:00 +02002730 dma_ops_free_addresses(dma_dom, dma_addr, pages);
Joerg Roedel270cab242008-09-04 15:49:46 +02002731
Joerg Roedel80be3082008-11-06 14:59:05 +01002732 if (amd_iommu_unmap_flush || dma_dom->need_flush) {
Joerg Roedel17b124b2011-04-06 18:01:35 +02002733 domain_flush_pages(&dma_dom->domain, flush_addr, size);
Joerg Roedel80be3082008-11-06 14:59:05 +01002734 dma_dom->need_flush = false;
2735 }
Joerg Roedelcb76c322008-06-26 21:28:00 +02002736}
2737
Joerg Roedel431b2a22008-07-11 17:14:22 +02002738/*
2739 * The exported map_single function for dma_ops.
2740 */
FUJITA Tomonori51491362009-01-05 23:47:25 +09002741static dma_addr_t map_page(struct device *dev, struct page *page,
2742 unsigned long offset, size_t size,
2743 enum dma_data_direction dir,
2744 struct dma_attrs *attrs)
Joerg Roedel4da70b92008-06-26 21:28:01 +02002745{
2746 unsigned long flags;
Joerg Roedel4da70b92008-06-26 21:28:01 +02002747 struct protection_domain *domain;
Joerg Roedel4da70b92008-06-26 21:28:01 +02002748 dma_addr_t addr;
Joerg Roedel832a90c2008-09-18 15:54:23 +02002749 u64 dma_mask;
FUJITA Tomonori51491362009-01-05 23:47:25 +09002750 phys_addr_t paddr = page_to_phys(page) + offset;
Joerg Roedel4da70b92008-06-26 21:28:01 +02002751
Joerg Roedel0f2a86f2008-12-12 15:05:16 +01002752 INC_STATS_COUNTER(cnt_map_single);
2753
Joerg Roedel94f6d192009-11-24 16:40:02 +01002754 domain = get_domain(dev);
2755 if (PTR_ERR(domain) == -EINVAL)
Joerg Roedel4da70b92008-06-26 21:28:01 +02002756 return (dma_addr_t)paddr;
Joerg Roedel94f6d192009-11-24 16:40:02 +01002757 else if (IS_ERR(domain))
2758 return DMA_ERROR_CODE;
Joerg Roedel4da70b92008-06-26 21:28:01 +02002759
Joerg Roedelf99c0f12009-11-23 16:52:56 +01002760 dma_mask = *dev->dma_mask;
2761
Joerg Roedel4da70b92008-06-26 21:28:01 +02002762 spin_lock_irqsave(&domain->lock, flags);
Joerg Roedel94f6d192009-11-24 16:40:02 +01002763
Joerg Roedelcd8c82e2009-11-23 19:33:56 +01002764 addr = __map_single(dev, domain->priv, paddr, size, dir, false,
Joerg Roedel832a90c2008-09-18 15:54:23 +02002765 dma_mask);
FUJITA Tomonori8fd524b2009-11-15 21:19:53 +09002766 if (addr == DMA_ERROR_CODE)
Joerg Roedel4da70b92008-06-26 21:28:01 +02002767 goto out;
2768
Joerg Roedel17b124b2011-04-06 18:01:35 +02002769 domain_flush_complete(domain);
Joerg Roedel4da70b92008-06-26 21:28:01 +02002770
2771out:
2772 spin_unlock_irqrestore(&domain->lock, flags);
2773
2774 return addr;
2775}
2776
Joerg Roedel431b2a22008-07-11 17:14:22 +02002777/*
2778 * The exported unmap_single function for dma_ops.
2779 */
FUJITA Tomonori51491362009-01-05 23:47:25 +09002780static void unmap_page(struct device *dev, dma_addr_t dma_addr, size_t size,
2781 enum dma_data_direction dir, struct dma_attrs *attrs)
Joerg Roedel4da70b92008-06-26 21:28:01 +02002782{
2783 unsigned long flags;
Joerg Roedel4da70b92008-06-26 21:28:01 +02002784 struct protection_domain *domain;
Joerg Roedel4da70b92008-06-26 21:28:01 +02002785
Joerg Roedel146a6912008-12-12 15:07:12 +01002786 INC_STATS_COUNTER(cnt_unmap_single);
2787
Joerg Roedel94f6d192009-11-24 16:40:02 +01002788 domain = get_domain(dev);
2789 if (IS_ERR(domain))
Joerg Roedel5b28df62008-12-02 17:49:42 +01002790 return;
2791
Joerg Roedel4da70b92008-06-26 21:28:01 +02002792 spin_lock_irqsave(&domain->lock, flags);
2793
Joerg Roedelcd8c82e2009-11-23 19:33:56 +01002794 __unmap_single(domain->priv, dma_addr, size, dir);
Joerg Roedel4da70b92008-06-26 21:28:01 +02002795
Joerg Roedel17b124b2011-04-06 18:01:35 +02002796 domain_flush_complete(domain);
Joerg Roedel4da70b92008-06-26 21:28:01 +02002797
2798 spin_unlock_irqrestore(&domain->lock, flags);
2799}
2800
Joerg Roedel431b2a22008-07-11 17:14:22 +02002801/*
Joerg Roedel431b2a22008-07-11 17:14:22 +02002802 * The exported map_sg function for dma_ops (handles scatter-gather
2803 * lists).
2804 */
Joerg Roedel65b050a2008-06-26 21:28:02 +02002805static int map_sg(struct device *dev, struct scatterlist *sglist,
FUJITA Tomonori160c1d82009-01-05 23:59:02 +09002806 int nelems, enum dma_data_direction dir,
2807 struct dma_attrs *attrs)
Joerg Roedel65b050a2008-06-26 21:28:02 +02002808{
2809 unsigned long flags;
Joerg Roedel65b050a2008-06-26 21:28:02 +02002810 struct protection_domain *domain;
Joerg Roedel65b050a2008-06-26 21:28:02 +02002811 int i;
2812 struct scatterlist *s;
2813 phys_addr_t paddr;
2814 int mapped_elems = 0;
Joerg Roedel832a90c2008-09-18 15:54:23 +02002815 u64 dma_mask;
Joerg Roedel65b050a2008-06-26 21:28:02 +02002816
Joerg Roedeld03f0672008-12-12 15:09:48 +01002817 INC_STATS_COUNTER(cnt_map_sg);
2818
Joerg Roedel94f6d192009-11-24 16:40:02 +01002819 domain = get_domain(dev);
Joerg Roedela0e191b2013-04-09 15:04:36 +02002820 if (IS_ERR(domain))
Joerg Roedel94f6d192009-11-24 16:40:02 +01002821 return 0;
Joerg Roedeldbcc1122008-09-04 15:04:26 +02002822
Joerg Roedel832a90c2008-09-18 15:54:23 +02002823 dma_mask = *dev->dma_mask;
Joerg Roedel65b050a2008-06-26 21:28:02 +02002824
Joerg Roedel65b050a2008-06-26 21:28:02 +02002825 spin_lock_irqsave(&domain->lock, flags);
2826
2827 for_each_sg(sglist, s, nelems, i) {
2828 paddr = sg_phys(s);
2829
Joerg Roedelcd8c82e2009-11-23 19:33:56 +01002830 s->dma_address = __map_single(dev, domain->priv,
Joerg Roedel832a90c2008-09-18 15:54:23 +02002831 paddr, s->length, dir, false,
2832 dma_mask);
Joerg Roedel65b050a2008-06-26 21:28:02 +02002833
2834 if (s->dma_address) {
2835 s->dma_length = s->length;
2836 mapped_elems++;
2837 } else
2838 goto unmap;
Joerg Roedel65b050a2008-06-26 21:28:02 +02002839 }
2840
Joerg Roedel17b124b2011-04-06 18:01:35 +02002841 domain_flush_complete(domain);
Joerg Roedel65b050a2008-06-26 21:28:02 +02002842
2843out:
2844 spin_unlock_irqrestore(&domain->lock, flags);
2845
2846 return mapped_elems;
2847unmap:
2848 for_each_sg(sglist, s, mapped_elems, i) {
2849 if (s->dma_address)
Joerg Roedelcd8c82e2009-11-23 19:33:56 +01002850 __unmap_single(domain->priv, s->dma_address,
Joerg Roedel65b050a2008-06-26 21:28:02 +02002851 s->dma_length, dir);
2852 s->dma_address = s->dma_length = 0;
2853 }
2854
2855 mapped_elems = 0;
2856
2857 goto out;
2858}
2859
Joerg Roedel431b2a22008-07-11 17:14:22 +02002860/*
2861 * The exported map_sg function for dma_ops (handles scatter-gather
2862 * lists).
2863 */
Joerg Roedel65b050a2008-06-26 21:28:02 +02002864static void unmap_sg(struct device *dev, struct scatterlist *sglist,
FUJITA Tomonori160c1d82009-01-05 23:59:02 +09002865 int nelems, enum dma_data_direction dir,
2866 struct dma_attrs *attrs)
Joerg Roedel65b050a2008-06-26 21:28:02 +02002867{
2868 unsigned long flags;
Joerg Roedel65b050a2008-06-26 21:28:02 +02002869 struct protection_domain *domain;
2870 struct scatterlist *s;
Joerg Roedel65b050a2008-06-26 21:28:02 +02002871 int i;
2872
Joerg Roedel55877a62008-12-12 15:12:14 +01002873 INC_STATS_COUNTER(cnt_unmap_sg);
2874
Joerg Roedel94f6d192009-11-24 16:40:02 +01002875 domain = get_domain(dev);
2876 if (IS_ERR(domain))
Joerg Roedel5b28df62008-12-02 17:49:42 +01002877 return;
2878
Joerg Roedel65b050a2008-06-26 21:28:02 +02002879 spin_lock_irqsave(&domain->lock, flags);
2880
2881 for_each_sg(sglist, s, nelems, i) {
Joerg Roedelcd8c82e2009-11-23 19:33:56 +01002882 __unmap_single(domain->priv, s->dma_address,
Joerg Roedel65b050a2008-06-26 21:28:02 +02002883 s->dma_length, dir);
Joerg Roedel65b050a2008-06-26 21:28:02 +02002884 s->dma_address = s->dma_length = 0;
2885 }
2886
Joerg Roedel17b124b2011-04-06 18:01:35 +02002887 domain_flush_complete(domain);
Joerg Roedel65b050a2008-06-26 21:28:02 +02002888
2889 spin_unlock_irqrestore(&domain->lock, flags);
2890}
2891
Joerg Roedel431b2a22008-07-11 17:14:22 +02002892/*
2893 * The exported alloc_coherent function for dma_ops.
2894 */
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002895static void *alloc_coherent(struct device *dev, size_t size,
Andrzej Pietrasiewiczbaa676f2012-03-27 14:28:18 +02002896 dma_addr_t *dma_addr, gfp_t flag,
2897 struct dma_attrs *attrs)
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002898{
2899 unsigned long flags;
2900 void *virt_addr;
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002901 struct protection_domain *domain;
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002902 phys_addr_t paddr;
Joerg Roedel832a90c2008-09-18 15:54:23 +02002903 u64 dma_mask = dev->coherent_dma_mask;
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002904
Joerg Roedelc8f0fb32008-12-12 15:14:21 +01002905 INC_STATS_COUNTER(cnt_alloc_coherent);
2906
Joerg Roedel94f6d192009-11-24 16:40:02 +01002907 domain = get_domain(dev);
2908 if (PTR_ERR(domain) == -EINVAL) {
Joerg Roedelf99c0f12009-11-23 16:52:56 +01002909 virt_addr = (void *)__get_free_pages(flag, get_order(size));
2910 *dma_addr = __pa(virt_addr);
2911 return virt_addr;
Joerg Roedel94f6d192009-11-24 16:40:02 +01002912 } else if (IS_ERR(domain))
2913 return NULL;
Joerg Roedeldbcc1122008-09-04 15:04:26 +02002914
Joerg Roedelf99c0f12009-11-23 16:52:56 +01002915 dma_mask = dev->coherent_dma_mask;
2916 flag &= ~(__GFP_DMA | __GFP_HIGHMEM | __GFP_DMA32);
2917 flag |= __GFP_ZERO;
FUJITA Tomonori13d9fea2008-09-10 20:19:40 +09002918
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002919 virt_addr = (void *)__get_free_pages(flag, get_order(size));
2920 if (!virt_addr)
Jaswinder Singh Rajputb25ae672009-07-01 19:53:14 +05302921 return NULL;
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002922
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002923 paddr = virt_to_phys(virt_addr);
2924
Joerg Roedel832a90c2008-09-18 15:54:23 +02002925 if (!dma_mask)
2926 dma_mask = *dev->dma_mask;
2927
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002928 spin_lock_irqsave(&domain->lock, flags);
2929
Joerg Roedelcd8c82e2009-11-23 19:33:56 +01002930 *dma_addr = __map_single(dev, domain->priv, paddr,
Joerg Roedel832a90c2008-09-18 15:54:23 +02002931 size, DMA_BIDIRECTIONAL, true, dma_mask);
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002932
FUJITA Tomonori8fd524b2009-11-15 21:19:53 +09002933 if (*dma_addr == DMA_ERROR_CODE) {
Jiri Slaby367d04c2009-05-28 09:54:48 +02002934 spin_unlock_irqrestore(&domain->lock, flags);
Joerg Roedel5b28df62008-12-02 17:49:42 +01002935 goto out_free;
Jiri Slaby367d04c2009-05-28 09:54:48 +02002936 }
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002937
Joerg Roedel17b124b2011-04-06 18:01:35 +02002938 domain_flush_complete(domain);
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002939
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002940 spin_unlock_irqrestore(&domain->lock, flags);
2941
2942 return virt_addr;
Joerg Roedel5b28df62008-12-02 17:49:42 +01002943
2944out_free:
2945
2946 free_pages((unsigned long)virt_addr, get_order(size));
2947
2948 return NULL;
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002949}
2950
Joerg Roedel431b2a22008-07-11 17:14:22 +02002951/*
2952 * The exported free_coherent function for dma_ops.
Joerg Roedel431b2a22008-07-11 17:14:22 +02002953 */
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002954static void free_coherent(struct device *dev, size_t size,
Andrzej Pietrasiewiczbaa676f2012-03-27 14:28:18 +02002955 void *virt_addr, dma_addr_t dma_addr,
2956 struct dma_attrs *attrs)
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002957{
2958 unsigned long flags;
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002959 struct protection_domain *domain;
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002960
Joerg Roedel5d31ee72008-12-12 15:16:38 +01002961 INC_STATS_COUNTER(cnt_free_coherent);
2962
Joerg Roedel94f6d192009-11-24 16:40:02 +01002963 domain = get_domain(dev);
2964 if (IS_ERR(domain))
Joerg Roedel5b28df62008-12-02 17:49:42 +01002965 goto free_mem;
2966
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002967 spin_lock_irqsave(&domain->lock, flags);
2968
Joerg Roedelcd8c82e2009-11-23 19:33:56 +01002969 __unmap_single(domain->priv, dma_addr, size, DMA_BIDIRECTIONAL);
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002970
Joerg Roedel17b124b2011-04-06 18:01:35 +02002971 domain_flush_complete(domain);
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002972
2973 spin_unlock_irqrestore(&domain->lock, flags);
2974
2975free_mem:
2976 free_pages((unsigned long)virt_addr, get_order(size));
2977}
2978
Joerg Roedelc432f3d2008-06-26 21:28:04 +02002979/*
Joerg Roedelb39ba6a2008-09-09 18:40:46 +02002980 * This function is called by the DMA layer to find out if we can handle a
2981 * particular device. It is part of the dma_ops.
2982 */
2983static int amd_iommu_dma_supported(struct device *dev, u64 mask)
2984{
Joerg Roedel420aef82009-11-23 16:14:57 +01002985 return check_device(dev);
Joerg Roedelb39ba6a2008-09-09 18:40:46 +02002986}
2987
2988/*
Joerg Roedel431b2a22008-07-11 17:14:22 +02002989 * The function for pre-allocating protection domains.
2990 *
Joerg Roedelc432f3d2008-06-26 21:28:04 +02002991 * If the driver core informs the DMA layer if a driver grabs a device
2992 * we don't need to preallocate the protection domains anymore.
2993 * For now we have to.
2994 */
Steffen Persvold943bc7e2012-03-15 12:16:28 +01002995static void __init prealloc_protection_domains(void)
Joerg Roedelc432f3d2008-06-26 21:28:04 +02002996{
Joerg Roedel5abcdba2011-12-01 15:49:45 +01002997 struct iommu_dev_data *dev_data;
Joerg Roedelc432f3d2008-06-26 21:28:04 +02002998 struct dma_ops_domain *dma_dom;
Joerg Roedel5abcdba2011-12-01 15:49:45 +01002999 struct pci_dev *dev = NULL;
Joerg Roedel98fc5a62009-11-24 17:19:23 +01003000 u16 devid;
Joerg Roedelc432f3d2008-06-26 21:28:04 +02003001
Chris Wrightd18c69d2010-04-02 18:27:55 -07003002 for_each_pci_dev(dev) {
Joerg Roedel98fc5a62009-11-24 17:19:23 +01003003
3004 /* Do we handle this device? */
3005 if (!check_device(&dev->dev))
Joerg Roedelc432f3d2008-06-26 21:28:04 +02003006 continue;
Joerg Roedel98fc5a62009-11-24 17:19:23 +01003007
Joerg Roedel5abcdba2011-12-01 15:49:45 +01003008 dev_data = get_dev_data(&dev->dev);
3009 if (!amd_iommu_force_isolation && dev_data->iommu_v2) {
3010 /* Make sure passthrough domain is allocated */
3011 alloc_passthrough_domain();
3012 dev_data->passthrough = true;
3013 attach_device(&dev->dev, pt_domain);
Frank Arnolddf805ab2012-08-27 19:21:04 +02003014 pr_info("AMD-Vi: Using passthrough domain for device %s\n",
Joerg Roedel5abcdba2011-12-01 15:49:45 +01003015 dev_name(&dev->dev));
3016 }
3017
Joerg Roedel98fc5a62009-11-24 17:19:23 +01003018 /* Is there already any domain for it? */
Joerg Roedel15898bb2009-11-24 15:39:42 +01003019 if (domain_for_device(&dev->dev))
Joerg Roedelc432f3d2008-06-26 21:28:04 +02003020 continue;
Joerg Roedel98fc5a62009-11-24 17:19:23 +01003021
3022 devid = get_device_id(&dev->dev);
3023
Joerg Roedel87a64d52009-11-24 17:26:43 +01003024 dma_dom = dma_ops_domain_alloc();
Joerg Roedelc432f3d2008-06-26 21:28:04 +02003025 if (!dma_dom)
3026 continue;
3027 init_unity_mappings_for_device(dma_dom, devid);
Joerg Roedelbd60b732008-09-11 10:24:48 +02003028 dma_dom->target_dev = devid;
3029
Joerg Roedel15898bb2009-11-24 15:39:42 +01003030 attach_device(&dev->dev, &dma_dom->domain);
Joerg Roedelbe831292009-11-23 12:50:00 +01003031
Joerg Roedelbd60b732008-09-11 10:24:48 +02003032 list_add_tail(&dma_dom->list, &iommu_pd_list);
Joerg Roedelc432f3d2008-06-26 21:28:04 +02003033 }
3034}
3035
FUJITA Tomonori160c1d82009-01-05 23:59:02 +09003036static struct dma_map_ops amd_iommu_dma_ops = {
Andrzej Pietrasiewiczbaa676f2012-03-27 14:28:18 +02003037 .alloc = alloc_coherent,
3038 .free = free_coherent,
FUJITA Tomonori51491362009-01-05 23:47:25 +09003039 .map_page = map_page,
3040 .unmap_page = unmap_page,
Joerg Roedel6631ee92008-06-26 21:28:05 +02003041 .map_sg = map_sg,
3042 .unmap_sg = unmap_sg,
Joerg Roedelb39ba6a2008-09-09 18:40:46 +02003043 .dma_supported = amd_iommu_dma_supported,
Joerg Roedel6631ee92008-06-26 21:28:05 +02003044};
3045
Joerg Roedel27c21272011-05-30 15:56:24 +02003046static unsigned device_dma_ops_init(void)
3047{
Joerg Roedel5abcdba2011-12-01 15:49:45 +01003048 struct iommu_dev_data *dev_data;
Joerg Roedel27c21272011-05-30 15:56:24 +02003049 struct pci_dev *pdev = NULL;
3050 unsigned unhandled = 0;
3051
3052 for_each_pci_dev(pdev) {
3053 if (!check_device(&pdev->dev)) {
Joerg Roedelaf1be042012-01-18 14:03:11 +01003054
3055 iommu_ignore_device(&pdev->dev);
3056
Joerg Roedel27c21272011-05-30 15:56:24 +02003057 unhandled += 1;
3058 continue;
3059 }
3060
Joerg Roedel5abcdba2011-12-01 15:49:45 +01003061 dev_data = get_dev_data(&pdev->dev);
3062
3063 if (!dev_data->passthrough)
3064 pdev->dev.archdata.dma_ops = &amd_iommu_dma_ops;
3065 else
3066 pdev->dev.archdata.dma_ops = &nommu_dma_ops;
Joerg Roedel27c21272011-05-30 15:56:24 +02003067 }
3068
3069 return unhandled;
3070}
3071
Joerg Roedel431b2a22008-07-11 17:14:22 +02003072/*
3073 * The function which clues the AMD IOMMU driver into dma_ops.
3074 */
Joerg Roedelf5325092010-01-22 17:44:35 +01003075
3076void __init amd_iommu_init_api(void)
3077{
Joerg Roedel2cc21c42011-09-06 17:56:07 +02003078 bus_set_iommu(&pci_bus_type, &amd_iommu_ops);
Joerg Roedelf5325092010-01-22 17:44:35 +01003079}
3080
Joerg Roedel6631ee92008-06-26 21:28:05 +02003081int __init amd_iommu_init_dma_ops(void)
3082{
3083 struct amd_iommu *iommu;
Joerg Roedel27c21272011-05-30 15:56:24 +02003084 int ret, unhandled;
Joerg Roedel6631ee92008-06-26 21:28:05 +02003085
Joerg Roedel431b2a22008-07-11 17:14:22 +02003086 /*
3087 * first allocate a default protection domain for every IOMMU we
3088 * found in the system. Devices not assigned to any other
3089 * protection domain will be assigned to the default one.
3090 */
Joerg Roedel3bd22172009-05-04 15:06:20 +02003091 for_each_iommu(iommu) {
Joerg Roedel87a64d52009-11-24 17:26:43 +01003092 iommu->default_dom = dma_ops_domain_alloc();
Joerg Roedel6631ee92008-06-26 21:28:05 +02003093 if (iommu->default_dom == NULL)
3094 return -ENOMEM;
Joerg Roedele2dc14a2008-12-10 18:48:59 +01003095 iommu->default_dom->domain.flags |= PD_DEFAULT_MASK;
Joerg Roedel6631ee92008-06-26 21:28:05 +02003096 ret = iommu_init_unity_mappings(iommu);
3097 if (ret)
3098 goto free_domains;
3099 }
3100
Joerg Roedel431b2a22008-07-11 17:14:22 +02003101 /*
Joerg Roedel8793abe2009-11-27 11:40:33 +01003102 * Pre-allocate the protection domains for each device.
Joerg Roedel431b2a22008-07-11 17:14:22 +02003103 */
Joerg Roedel8793abe2009-11-27 11:40:33 +01003104 prealloc_protection_domains();
Joerg Roedel6631ee92008-06-26 21:28:05 +02003105
3106 iommu_detected = 1;
FUJITA Tomonori75f1cdf2009-11-10 19:46:20 +09003107 swiotlb = 0;
Joerg Roedel6631ee92008-06-26 21:28:05 +02003108
Joerg Roedel431b2a22008-07-11 17:14:22 +02003109 /* Make the driver finally visible to the drivers */
Joerg Roedel27c21272011-05-30 15:56:24 +02003110 unhandled = device_dma_ops_init();
3111 if (unhandled && max_pfn > MAX_DMA32_PFN) {
3112 /* There are unhandled devices - initialize swiotlb for them */
3113 swiotlb = 1;
3114 }
Joerg Roedel6631ee92008-06-26 21:28:05 +02003115
Joerg Roedel7f265082008-12-12 13:50:21 +01003116 amd_iommu_stats_init();
3117
Joerg Roedel62410ee2012-06-12 16:42:43 +02003118 if (amd_iommu_unmap_flush)
3119 pr_info("AMD-Vi: IO/TLB flush on unmap enabled\n");
3120 else
3121 pr_info("AMD-Vi: Lazy IO/TLB flushing enabled\n");
3122
Joerg Roedel6631ee92008-06-26 21:28:05 +02003123 return 0;
3124
3125free_domains:
3126
Joerg Roedel3bd22172009-05-04 15:06:20 +02003127 for_each_iommu(iommu) {
Cyril Roelandt91457df2013-02-12 05:01:50 +01003128 dma_ops_domain_free(iommu->default_dom);
Joerg Roedel6631ee92008-06-26 21:28:05 +02003129 }
3130
3131 return ret;
3132}
Joerg Roedel6d98cd82008-12-08 12:05:55 +01003133
3134/*****************************************************************************
3135 *
3136 * The following functions belong to the exported interface of AMD IOMMU
3137 *
3138 * This interface allows access to lower level functions of the IOMMU
3139 * like protection domain handling and assignement of devices to domains
3140 * which is not possible with the dma_ops interface.
3141 *
3142 *****************************************************************************/
3143
Joerg Roedel6d98cd82008-12-08 12:05:55 +01003144static void cleanup_domain(struct protection_domain *domain)
3145{
Joerg Roedel492667d2009-11-27 13:25:47 +01003146 struct iommu_dev_data *dev_data, *next;
Joerg Roedel6d98cd82008-12-08 12:05:55 +01003147 unsigned long flags;
Joerg Roedel6d98cd82008-12-08 12:05:55 +01003148
3149 write_lock_irqsave(&amd_iommu_devtable_lock, flags);
3150
Joerg Roedel492667d2009-11-27 13:25:47 +01003151 list_for_each_entry_safe(dev_data, next, &domain->dev_list, list) {
Joerg Roedelec9e79e2011-06-09 17:25:50 +02003152 __detach_device(dev_data);
Joerg Roedel492667d2009-11-27 13:25:47 +01003153 atomic_set(&dev_data->bind, 0);
3154 }
Joerg Roedel6d98cd82008-12-08 12:05:55 +01003155
3156 write_unlock_irqrestore(&amd_iommu_devtable_lock, flags);
3157}
3158
Joerg Roedel26508152009-08-26 16:52:40 +02003159static void protection_domain_free(struct protection_domain *domain)
3160{
3161 if (!domain)
3162 return;
3163
Joerg Roedelaeb26f52009-11-20 16:44:01 +01003164 del_domain_from_list(domain);
3165
Joerg Roedel26508152009-08-26 16:52:40 +02003166 if (domain->id)
3167 domain_id_free(domain->id);
3168
3169 kfree(domain);
3170}
3171
3172static struct protection_domain *protection_domain_alloc(void)
Joerg Roedelc156e342008-12-02 18:13:27 +01003173{
3174 struct protection_domain *domain;
3175
3176 domain = kzalloc(sizeof(*domain), GFP_KERNEL);
3177 if (!domain)
Joerg Roedel26508152009-08-26 16:52:40 +02003178 return NULL;
Joerg Roedelc156e342008-12-02 18:13:27 +01003179
3180 spin_lock_init(&domain->lock);
Joerg Roedel5d214fe2010-02-08 14:44:49 +01003181 mutex_init(&domain->api_lock);
Joerg Roedelc156e342008-12-02 18:13:27 +01003182 domain->id = domain_id_alloc();
3183 if (!domain->id)
Joerg Roedel26508152009-08-26 16:52:40 +02003184 goto out_err;
Joerg Roedel7c392cb2009-11-26 11:13:32 +01003185 INIT_LIST_HEAD(&domain->dev_list);
Joerg Roedel26508152009-08-26 16:52:40 +02003186
Joerg Roedelaeb26f52009-11-20 16:44:01 +01003187 add_domain_to_list(domain);
3188
Joerg Roedel26508152009-08-26 16:52:40 +02003189 return domain;
3190
3191out_err:
3192 kfree(domain);
3193
3194 return NULL;
3195}
3196
Joerg Roedel5abcdba2011-12-01 15:49:45 +01003197static int __init alloc_passthrough_domain(void)
3198{
3199 if (pt_domain != NULL)
3200 return 0;
3201
3202 /* allocate passthrough domain */
3203 pt_domain = protection_domain_alloc();
3204 if (!pt_domain)
3205 return -ENOMEM;
3206
3207 pt_domain->mode = PAGE_MODE_NONE;
3208
3209 return 0;
3210}
Joerg Roedel26508152009-08-26 16:52:40 +02003211static int amd_iommu_domain_init(struct iommu_domain *dom)
3212{
3213 struct protection_domain *domain;
3214
3215 domain = protection_domain_alloc();
3216 if (!domain)
Joerg Roedelc156e342008-12-02 18:13:27 +01003217 goto out_free;
Joerg Roedel26508152009-08-26 16:52:40 +02003218
3219 domain->mode = PAGE_MODE_3_LEVEL;
Joerg Roedelc156e342008-12-02 18:13:27 +01003220 domain->pt_root = (void *)get_zeroed_page(GFP_KERNEL);
3221 if (!domain->pt_root)
3222 goto out_free;
3223
Joerg Roedelf3572db2011-11-23 12:36:25 +01003224 domain->iommu_domain = dom;
3225
Joerg Roedelc156e342008-12-02 18:13:27 +01003226 dom->priv = domain;
3227
Joerg Roedel0ff64f82012-01-26 19:40:53 +01003228 dom->geometry.aperture_start = 0;
3229 dom->geometry.aperture_end = ~0ULL;
3230 dom->geometry.force_aperture = true;
3231
Joerg Roedelc156e342008-12-02 18:13:27 +01003232 return 0;
3233
3234out_free:
Joerg Roedel26508152009-08-26 16:52:40 +02003235 protection_domain_free(domain);
Joerg Roedelc156e342008-12-02 18:13:27 +01003236
3237 return -ENOMEM;
3238}
3239
Joerg Roedel98383fc2008-12-02 18:34:12 +01003240static void amd_iommu_domain_destroy(struct iommu_domain *dom)
3241{
3242 struct protection_domain *domain = dom->priv;
3243
3244 if (!domain)
3245 return;
3246
3247 if (domain->dev_cnt > 0)
3248 cleanup_domain(domain);
3249
3250 BUG_ON(domain->dev_cnt != 0);
3251
Joerg Roedel132bd682011-11-17 14:18:46 +01003252 if (domain->mode != PAGE_MODE_NONE)
3253 free_pagetable(domain);
Joerg Roedel98383fc2008-12-02 18:34:12 +01003254
Joerg Roedel52815b72011-11-17 17:24:28 +01003255 if (domain->flags & PD_IOMMUV2_MASK)
3256 free_gcr3_table(domain);
3257
Joerg Roedel8b408fe2010-03-08 14:20:07 +01003258 protection_domain_free(domain);
Joerg Roedel98383fc2008-12-02 18:34:12 +01003259
3260 dom->priv = NULL;
3261}
3262
Joerg Roedel684f2882008-12-08 12:07:44 +01003263static void amd_iommu_detach_device(struct iommu_domain *dom,
3264 struct device *dev)
3265{
Joerg Roedel657cbb62009-11-23 15:26:46 +01003266 struct iommu_dev_data *dev_data = dev->archdata.iommu;
Joerg Roedel684f2882008-12-08 12:07:44 +01003267 struct amd_iommu *iommu;
Joerg Roedel684f2882008-12-08 12:07:44 +01003268 u16 devid;
3269
Joerg Roedel98fc5a62009-11-24 17:19:23 +01003270 if (!check_device(dev))
Joerg Roedel684f2882008-12-08 12:07:44 +01003271 return;
3272
Joerg Roedel98fc5a62009-11-24 17:19:23 +01003273 devid = get_device_id(dev);
Joerg Roedel684f2882008-12-08 12:07:44 +01003274
Joerg Roedel657cbb62009-11-23 15:26:46 +01003275 if (dev_data->domain != NULL)
Joerg Roedel15898bb2009-11-24 15:39:42 +01003276 detach_device(dev);
Joerg Roedel684f2882008-12-08 12:07:44 +01003277
3278 iommu = amd_iommu_rlookup_table[devid];
3279 if (!iommu)
3280 return;
3281
Joerg Roedel684f2882008-12-08 12:07:44 +01003282 iommu_completion_wait(iommu);
3283}
3284
Joerg Roedel01106062008-12-02 19:34:11 +01003285static int amd_iommu_attach_device(struct iommu_domain *dom,
3286 struct device *dev)
3287{
3288 struct protection_domain *domain = dom->priv;
Joerg Roedel657cbb62009-11-23 15:26:46 +01003289 struct iommu_dev_data *dev_data;
Joerg Roedel01106062008-12-02 19:34:11 +01003290 struct amd_iommu *iommu;
Joerg Roedel15898bb2009-11-24 15:39:42 +01003291 int ret;
Joerg Roedel01106062008-12-02 19:34:11 +01003292
Joerg Roedel98fc5a62009-11-24 17:19:23 +01003293 if (!check_device(dev))
Joerg Roedel01106062008-12-02 19:34:11 +01003294 return -EINVAL;
3295
Joerg Roedel657cbb62009-11-23 15:26:46 +01003296 dev_data = dev->archdata.iommu;
3297
Joerg Roedelf62dda62011-06-09 12:55:35 +02003298 iommu = amd_iommu_rlookup_table[dev_data->devid];
Joerg Roedel01106062008-12-02 19:34:11 +01003299 if (!iommu)
3300 return -EINVAL;
3301
Joerg Roedel657cbb62009-11-23 15:26:46 +01003302 if (dev_data->domain)
Joerg Roedel15898bb2009-11-24 15:39:42 +01003303 detach_device(dev);
Joerg Roedel01106062008-12-02 19:34:11 +01003304
Joerg Roedel15898bb2009-11-24 15:39:42 +01003305 ret = attach_device(dev, domain);
Joerg Roedel01106062008-12-02 19:34:11 +01003306
3307 iommu_completion_wait(iommu);
3308
Joerg Roedel15898bb2009-11-24 15:39:42 +01003309 return ret;
Joerg Roedel01106062008-12-02 19:34:11 +01003310}
3311
Joerg Roedel468e2362010-01-21 16:37:36 +01003312static int amd_iommu_map(struct iommu_domain *dom, unsigned long iova,
Ohad Ben-Cohen50090652011-11-10 11:32:25 +02003313 phys_addr_t paddr, size_t page_size, int iommu_prot)
Joerg Roedelc6229ca2008-12-02 19:48:43 +01003314{
3315 struct protection_domain *domain = dom->priv;
Joerg Roedelc6229ca2008-12-02 19:48:43 +01003316 int prot = 0;
3317 int ret;
3318
Joerg Roedel132bd682011-11-17 14:18:46 +01003319 if (domain->mode == PAGE_MODE_NONE)
3320 return -EINVAL;
3321
Joerg Roedelc6229ca2008-12-02 19:48:43 +01003322 if (iommu_prot & IOMMU_READ)
3323 prot |= IOMMU_PROT_IR;
3324 if (iommu_prot & IOMMU_WRITE)
3325 prot |= IOMMU_PROT_IW;
3326
Joerg Roedel5d214fe2010-02-08 14:44:49 +01003327 mutex_lock(&domain->api_lock);
Joerg Roedel795e74f72010-05-11 17:40:57 +02003328 ret = iommu_map_page(domain, iova, paddr, prot, page_size);
Joerg Roedel5d214fe2010-02-08 14:44:49 +01003329 mutex_unlock(&domain->api_lock);
3330
Joerg Roedel795e74f72010-05-11 17:40:57 +02003331 return ret;
Joerg Roedelc6229ca2008-12-02 19:48:43 +01003332}
3333
Ohad Ben-Cohen50090652011-11-10 11:32:25 +02003334static size_t amd_iommu_unmap(struct iommu_domain *dom, unsigned long iova,
3335 size_t page_size)
Joerg Roedeleb74ff62008-12-02 19:59:10 +01003336{
Joerg Roedeleb74ff62008-12-02 19:59:10 +01003337 struct protection_domain *domain = dom->priv;
Ohad Ben-Cohen50090652011-11-10 11:32:25 +02003338 size_t unmap_size;
Joerg Roedeleb74ff62008-12-02 19:59:10 +01003339
Joerg Roedel132bd682011-11-17 14:18:46 +01003340 if (domain->mode == PAGE_MODE_NONE)
3341 return -EINVAL;
3342
Joerg Roedel5d214fe2010-02-08 14:44:49 +01003343 mutex_lock(&domain->api_lock);
Joerg Roedel468e2362010-01-21 16:37:36 +01003344 unmap_size = iommu_unmap_page(domain, iova, page_size);
Joerg Roedel795e74f72010-05-11 17:40:57 +02003345 mutex_unlock(&domain->api_lock);
Joerg Roedeleb74ff62008-12-02 19:59:10 +01003346
Joerg Roedel17b124b2011-04-06 18:01:35 +02003347 domain_flush_tlb_pde(domain);
Joerg Roedel5d214fe2010-02-08 14:44:49 +01003348
Ohad Ben-Cohen50090652011-11-10 11:32:25 +02003349 return unmap_size;
Joerg Roedeleb74ff62008-12-02 19:59:10 +01003350}
3351
Joerg Roedel645c4c82008-12-02 20:05:50 +01003352static phys_addr_t amd_iommu_iova_to_phys(struct iommu_domain *dom,
Varun Sethibb5547a2013-03-29 01:23:58 +05303353 dma_addr_t iova)
Joerg Roedel645c4c82008-12-02 20:05:50 +01003354{
3355 struct protection_domain *domain = dom->priv;
Joerg Roedelf03152b2010-01-21 16:15:24 +01003356 unsigned long offset_mask;
Joerg Roedel645c4c82008-12-02 20:05:50 +01003357 phys_addr_t paddr;
Joerg Roedelf03152b2010-01-21 16:15:24 +01003358 u64 *pte, __pte;
Joerg Roedel645c4c82008-12-02 20:05:50 +01003359
Joerg Roedel132bd682011-11-17 14:18:46 +01003360 if (domain->mode == PAGE_MODE_NONE)
3361 return iova;
3362
Joerg Roedel24cd7722010-01-19 17:27:39 +01003363 pte = fetch_pte(domain, iova);
Joerg Roedel645c4c82008-12-02 20:05:50 +01003364
Joerg Roedela6d41a42009-09-02 17:08:55 +02003365 if (!pte || !IOMMU_PTE_PRESENT(*pte))
Joerg Roedel645c4c82008-12-02 20:05:50 +01003366 return 0;
3367
Joerg Roedelf03152b2010-01-21 16:15:24 +01003368 if (PM_PTE_LEVEL(*pte) == 0)
3369 offset_mask = PAGE_SIZE - 1;
3370 else
3371 offset_mask = PTE_PAGE_SIZE(*pte) - 1;
3372
3373 __pte = *pte & PM_ADDR_MASK;
3374 paddr = (__pte & ~offset_mask) | (iova & offset_mask);
Joerg Roedel645c4c82008-12-02 20:05:50 +01003375
3376 return paddr;
3377}
3378
Sheng Yangdbb9fd82009-03-18 15:33:06 +08003379static int amd_iommu_domain_has_cap(struct iommu_domain *domain,
3380 unsigned long cap)
3381{
Joerg Roedel80a506b2010-07-27 17:14:24 +02003382 switch (cap) {
3383 case IOMMU_CAP_CACHE_COHERENCY:
3384 return 1;
Joerg Roedelbdddadc2012-07-02 18:38:13 +02003385 case IOMMU_CAP_INTR_REMAP:
3386 return irq_remapping_enabled;
Joerg Roedel80a506b2010-07-27 17:14:24 +02003387 }
3388
Sheng Yangdbb9fd82009-03-18 15:33:06 +08003389 return 0;
3390}
3391
Joerg Roedel26961ef2008-12-03 17:00:17 +01003392static struct iommu_ops amd_iommu_ops = {
3393 .domain_init = amd_iommu_domain_init,
3394 .domain_destroy = amd_iommu_domain_destroy,
3395 .attach_dev = amd_iommu_attach_device,
3396 .detach_dev = amd_iommu_detach_device,
Joerg Roedel468e2362010-01-21 16:37:36 +01003397 .map = amd_iommu_map,
3398 .unmap = amd_iommu_unmap,
Joerg Roedel26961ef2008-12-03 17:00:17 +01003399 .iova_to_phys = amd_iommu_iova_to_phys,
Sheng Yangdbb9fd82009-03-18 15:33:06 +08003400 .domain_has_cap = amd_iommu_domain_has_cap,
Ohad Ben-Cohenaa3de9c2011-11-10 11:32:29 +02003401 .pgsize_bitmap = AMD_IOMMU_PGSIZES,
Joerg Roedel26961ef2008-12-03 17:00:17 +01003402};
3403
Joerg Roedel0feae532009-08-26 15:26:30 +02003404/*****************************************************************************
3405 *
3406 * The next functions do a basic initialization of IOMMU for pass through
3407 * mode
3408 *
3409 * In passthrough mode the IOMMU is initialized and enabled but not used for
3410 * DMA-API translation.
3411 *
3412 *****************************************************************************/
3413
3414int __init amd_iommu_init_passthrough(void)
3415{
Joerg Roedel5abcdba2011-12-01 15:49:45 +01003416 struct iommu_dev_data *dev_data;
Joerg Roedel0feae532009-08-26 15:26:30 +02003417 struct pci_dev *dev = NULL;
Joerg Roedel5abcdba2011-12-01 15:49:45 +01003418 int ret;
Joerg Roedel0feae532009-08-26 15:26:30 +02003419
Joerg Roedel5abcdba2011-12-01 15:49:45 +01003420 ret = alloc_passthrough_domain();
3421 if (ret)
3422 return ret;
Joerg Roedel0feae532009-08-26 15:26:30 +02003423
Kulikov Vasiliy6c54aab2010-07-03 12:03:51 -04003424 for_each_pci_dev(dev) {
Joerg Roedel98fc5a62009-11-24 17:19:23 +01003425 if (!check_device(&dev->dev))
Joerg Roedel0feae532009-08-26 15:26:30 +02003426 continue;
3427
Joerg Roedel5abcdba2011-12-01 15:49:45 +01003428 dev_data = get_dev_data(&dev->dev);
3429 dev_data->passthrough = true;
3430
Joerg Roedel15898bb2009-11-24 15:39:42 +01003431 attach_device(&dev->dev, pt_domain);
Joerg Roedel0feae532009-08-26 15:26:30 +02003432 }
3433
Joerg Roedel2655d7a2011-12-22 12:35:38 +01003434 amd_iommu_stats_init();
3435
Joerg Roedel0feae532009-08-26 15:26:30 +02003436 pr_info("AMD-Vi: Initialized for Passthrough Mode\n");
3437
3438 return 0;
3439}
Joerg Roedel72e1dcc2011-11-10 19:13:51 +01003440
3441/* IOMMUv2 specific functions */
3442int amd_iommu_register_ppr_notifier(struct notifier_block *nb)
3443{
3444 return atomic_notifier_chain_register(&ppr_notifier, nb);
3445}
3446EXPORT_SYMBOL(amd_iommu_register_ppr_notifier);
3447
3448int amd_iommu_unregister_ppr_notifier(struct notifier_block *nb)
3449{
3450 return atomic_notifier_chain_unregister(&ppr_notifier, nb);
3451}
3452EXPORT_SYMBOL(amd_iommu_unregister_ppr_notifier);
Joerg Roedel132bd682011-11-17 14:18:46 +01003453
3454void amd_iommu_domain_direct_map(struct iommu_domain *dom)
3455{
3456 struct protection_domain *domain = dom->priv;
3457 unsigned long flags;
3458
3459 spin_lock_irqsave(&domain->lock, flags);
3460
3461 /* Update data structure */
3462 domain->mode = PAGE_MODE_NONE;
3463 domain->updated = true;
3464
3465 /* Make changes visible to IOMMUs */
3466 update_domain(domain);
3467
3468 /* Page-table is not visible to IOMMU anymore, so free it */
3469 free_pagetable(domain);
3470
3471 spin_unlock_irqrestore(&domain->lock, flags);
3472}
3473EXPORT_SYMBOL(amd_iommu_domain_direct_map);
Joerg Roedel52815b72011-11-17 17:24:28 +01003474
3475int amd_iommu_domain_enable_v2(struct iommu_domain *dom, int pasids)
3476{
3477 struct protection_domain *domain = dom->priv;
3478 unsigned long flags;
3479 int levels, ret;
3480
3481 if (pasids <= 0 || pasids > (PASID_MASK + 1))
3482 return -EINVAL;
3483
3484 /* Number of GCR3 table levels required */
3485 for (levels = 0; (pasids - 1) & ~0x1ff; pasids >>= 9)
3486 levels += 1;
3487
3488 if (levels > amd_iommu_max_glx_val)
3489 return -EINVAL;
3490
3491 spin_lock_irqsave(&domain->lock, flags);
3492
3493 /*
3494 * Save us all sanity checks whether devices already in the
3495 * domain support IOMMUv2. Just force that the domain has no
3496 * devices attached when it is switched into IOMMUv2 mode.
3497 */
3498 ret = -EBUSY;
3499 if (domain->dev_cnt > 0 || domain->flags & PD_IOMMUV2_MASK)
3500 goto out;
3501
3502 ret = -ENOMEM;
3503 domain->gcr3_tbl = (void *)get_zeroed_page(GFP_ATOMIC);
3504 if (domain->gcr3_tbl == NULL)
3505 goto out;
3506
3507 domain->glx = levels;
3508 domain->flags |= PD_IOMMUV2_MASK;
3509 domain->updated = true;
3510
3511 update_domain(domain);
3512
3513 ret = 0;
3514
3515out:
3516 spin_unlock_irqrestore(&domain->lock, flags);
3517
3518 return ret;
3519}
3520EXPORT_SYMBOL(amd_iommu_domain_enable_v2);
Joerg Roedel22e266c2011-11-21 15:59:08 +01003521
3522static int __flush_pasid(struct protection_domain *domain, int pasid,
3523 u64 address, bool size)
3524{
3525 struct iommu_dev_data *dev_data;
3526 struct iommu_cmd cmd;
3527 int i, ret;
3528
3529 if (!(domain->flags & PD_IOMMUV2_MASK))
3530 return -EINVAL;
3531
3532 build_inv_iommu_pasid(&cmd, domain->id, pasid, address, size);
3533
3534 /*
3535 * IOMMU TLB needs to be flushed before Device TLB to
3536 * prevent device TLB refill from IOMMU TLB
3537 */
3538 for (i = 0; i < amd_iommus_present; ++i) {
3539 if (domain->dev_iommu[i] == 0)
3540 continue;
3541
3542 ret = iommu_queue_command(amd_iommus[i], &cmd);
3543 if (ret != 0)
3544 goto out;
3545 }
3546
3547 /* Wait until IOMMU TLB flushes are complete */
3548 domain_flush_complete(domain);
3549
3550 /* Now flush device TLBs */
3551 list_for_each_entry(dev_data, &domain->dev_list, list) {
3552 struct amd_iommu *iommu;
3553 int qdep;
3554
3555 BUG_ON(!dev_data->ats.enabled);
3556
3557 qdep = dev_data->ats.qdep;
3558 iommu = amd_iommu_rlookup_table[dev_data->devid];
3559
3560 build_inv_iotlb_pasid(&cmd, dev_data->devid, pasid,
3561 qdep, address, size);
3562
3563 ret = iommu_queue_command(iommu, &cmd);
3564 if (ret != 0)
3565 goto out;
3566 }
3567
3568 /* Wait until all device TLBs are flushed */
3569 domain_flush_complete(domain);
3570
3571 ret = 0;
3572
3573out:
3574
3575 return ret;
3576}
3577
3578static int __amd_iommu_flush_page(struct protection_domain *domain, int pasid,
3579 u64 address)
3580{
Joerg Roedel399be2f2011-12-01 16:53:47 +01003581 INC_STATS_COUNTER(invalidate_iotlb);
3582
Joerg Roedel22e266c2011-11-21 15:59:08 +01003583 return __flush_pasid(domain, pasid, address, false);
3584}
3585
3586int amd_iommu_flush_page(struct iommu_domain *dom, int pasid,
3587 u64 address)
3588{
3589 struct protection_domain *domain = dom->priv;
3590 unsigned long flags;
3591 int ret;
3592
3593 spin_lock_irqsave(&domain->lock, flags);
3594 ret = __amd_iommu_flush_page(domain, pasid, address);
3595 spin_unlock_irqrestore(&domain->lock, flags);
3596
3597 return ret;
3598}
3599EXPORT_SYMBOL(amd_iommu_flush_page);
3600
3601static int __amd_iommu_flush_tlb(struct protection_domain *domain, int pasid)
3602{
Joerg Roedel399be2f2011-12-01 16:53:47 +01003603 INC_STATS_COUNTER(invalidate_iotlb_all);
3604
Joerg Roedel22e266c2011-11-21 15:59:08 +01003605 return __flush_pasid(domain, pasid, CMD_INV_IOMMU_ALL_PAGES_ADDRESS,
3606 true);
3607}
3608
3609int amd_iommu_flush_tlb(struct iommu_domain *dom, int pasid)
3610{
3611 struct protection_domain *domain = dom->priv;
3612 unsigned long flags;
3613 int ret;
3614
3615 spin_lock_irqsave(&domain->lock, flags);
3616 ret = __amd_iommu_flush_tlb(domain, pasid);
3617 spin_unlock_irqrestore(&domain->lock, flags);
3618
3619 return ret;
3620}
3621EXPORT_SYMBOL(amd_iommu_flush_tlb);
3622
Joerg Roedelb16137b2011-11-21 16:50:23 +01003623static u64 *__get_gcr3_pte(u64 *root, int level, int pasid, bool alloc)
3624{
3625 int index;
3626 u64 *pte;
3627
3628 while (true) {
3629
3630 index = (pasid >> (9 * level)) & 0x1ff;
3631 pte = &root[index];
3632
3633 if (level == 0)
3634 break;
3635
3636 if (!(*pte & GCR3_VALID)) {
3637 if (!alloc)
3638 return NULL;
3639
3640 root = (void *)get_zeroed_page(GFP_ATOMIC);
3641 if (root == NULL)
3642 return NULL;
3643
3644 *pte = __pa(root) | GCR3_VALID;
3645 }
3646
3647 root = __va(*pte & PAGE_MASK);
3648
3649 level -= 1;
3650 }
3651
3652 return pte;
3653}
3654
3655static int __set_gcr3(struct protection_domain *domain, int pasid,
3656 unsigned long cr3)
3657{
3658 u64 *pte;
3659
3660 if (domain->mode != PAGE_MODE_NONE)
3661 return -EINVAL;
3662
3663 pte = __get_gcr3_pte(domain->gcr3_tbl, domain->glx, pasid, true);
3664 if (pte == NULL)
3665 return -ENOMEM;
3666
3667 *pte = (cr3 & PAGE_MASK) | GCR3_VALID;
3668
3669 return __amd_iommu_flush_tlb(domain, pasid);
3670}
3671
3672static int __clear_gcr3(struct protection_domain *domain, int pasid)
3673{
3674 u64 *pte;
3675
3676 if (domain->mode != PAGE_MODE_NONE)
3677 return -EINVAL;
3678
3679 pte = __get_gcr3_pte(domain->gcr3_tbl, domain->glx, pasid, false);
3680 if (pte == NULL)
3681 return 0;
3682
3683 *pte = 0;
3684
3685 return __amd_iommu_flush_tlb(domain, pasid);
3686}
3687
3688int amd_iommu_domain_set_gcr3(struct iommu_domain *dom, int pasid,
3689 unsigned long cr3)
3690{
3691 struct protection_domain *domain = dom->priv;
3692 unsigned long flags;
3693 int ret;
3694
3695 spin_lock_irqsave(&domain->lock, flags);
3696 ret = __set_gcr3(domain, pasid, cr3);
3697 spin_unlock_irqrestore(&domain->lock, flags);
3698
3699 return ret;
3700}
3701EXPORT_SYMBOL(amd_iommu_domain_set_gcr3);
3702
3703int amd_iommu_domain_clear_gcr3(struct iommu_domain *dom, int pasid)
3704{
3705 struct protection_domain *domain = dom->priv;
3706 unsigned long flags;
3707 int ret;
3708
3709 spin_lock_irqsave(&domain->lock, flags);
3710 ret = __clear_gcr3(domain, pasid);
3711 spin_unlock_irqrestore(&domain->lock, flags);
3712
3713 return ret;
3714}
3715EXPORT_SYMBOL(amd_iommu_domain_clear_gcr3);
Joerg Roedelc99afa22011-11-21 18:19:25 +01003716
3717int amd_iommu_complete_ppr(struct pci_dev *pdev, int pasid,
3718 int status, int tag)
3719{
3720 struct iommu_dev_data *dev_data;
3721 struct amd_iommu *iommu;
3722 struct iommu_cmd cmd;
3723
Joerg Roedel399be2f2011-12-01 16:53:47 +01003724 INC_STATS_COUNTER(complete_ppr);
3725
Joerg Roedelc99afa22011-11-21 18:19:25 +01003726 dev_data = get_dev_data(&pdev->dev);
3727 iommu = amd_iommu_rlookup_table[dev_data->devid];
3728
3729 build_complete_ppr(&cmd, dev_data->devid, pasid, status,
3730 tag, dev_data->pri_tlp);
3731
3732 return iommu_queue_command(iommu, &cmd);
3733}
3734EXPORT_SYMBOL(amd_iommu_complete_ppr);
Joerg Roedelf3572db2011-11-23 12:36:25 +01003735
3736struct iommu_domain *amd_iommu_get_v2_domain(struct pci_dev *pdev)
3737{
3738 struct protection_domain *domain;
3739
3740 domain = get_domain(&pdev->dev);
3741 if (IS_ERR(domain))
3742 return NULL;
3743
3744 /* Only return IOMMUv2 domains */
3745 if (!(domain->flags & PD_IOMMUV2_MASK))
3746 return NULL;
3747
3748 return domain->iommu_domain;
3749}
3750EXPORT_SYMBOL(amd_iommu_get_v2_domain);
Joerg Roedel6a113dd2011-12-01 12:04:58 +01003751
3752void amd_iommu_enable_device_erratum(struct pci_dev *pdev, u32 erratum)
3753{
3754 struct iommu_dev_data *dev_data;
3755
3756 if (!amd_iommu_v2_supported())
3757 return;
3758
3759 dev_data = get_dev_data(&pdev->dev);
3760 dev_data->errata |= (1 << erratum);
3761}
3762EXPORT_SYMBOL(amd_iommu_enable_device_erratum);
Joerg Roedel52efdb82011-12-07 12:01:36 +01003763
3764int amd_iommu_device_info(struct pci_dev *pdev,
3765 struct amd_iommu_device_info *info)
3766{
3767 int max_pasids;
3768 int pos;
3769
3770 if (pdev == NULL || info == NULL)
3771 return -EINVAL;
3772
3773 if (!amd_iommu_v2_supported())
3774 return -EINVAL;
3775
3776 memset(info, 0, sizeof(*info));
3777
3778 pos = pci_find_ext_capability(pdev, PCI_EXT_CAP_ID_ATS);
3779 if (pos)
3780 info->flags |= AMD_IOMMU_DEVICE_FLAG_ATS_SUP;
3781
3782 pos = pci_find_ext_capability(pdev, PCI_EXT_CAP_ID_PRI);
3783 if (pos)
3784 info->flags |= AMD_IOMMU_DEVICE_FLAG_PRI_SUP;
3785
3786 pos = pci_find_ext_capability(pdev, PCI_EXT_CAP_ID_PASID);
3787 if (pos) {
3788 int features;
3789
3790 max_pasids = 1 << (9 * (amd_iommu_max_glx_val + 1));
3791 max_pasids = min(max_pasids, (1 << 20));
3792
3793 info->flags |= AMD_IOMMU_DEVICE_FLAG_PASID_SUP;
3794 info->max_pasids = min(pci_max_pasids(pdev), max_pasids);
3795
3796 features = pci_pasid_features(pdev);
3797 if (features & PCI_PASID_CAP_EXEC)
3798 info->flags |= AMD_IOMMU_DEVICE_FLAG_EXEC_SUP;
3799 if (features & PCI_PASID_CAP_PRIV)
3800 info->flags |= AMD_IOMMU_DEVICE_FLAG_PRIV_SUP;
3801 }
3802
3803 return 0;
3804}
3805EXPORT_SYMBOL(amd_iommu_device_info);
Joerg Roedel2b324502012-06-21 16:29:10 +02003806
3807#ifdef CONFIG_IRQ_REMAP
3808
3809/*****************************************************************************
3810 *
3811 * Interrupt Remapping Implementation
3812 *
3813 *****************************************************************************/
3814
3815union irte {
3816 u32 val;
3817 struct {
3818 u32 valid : 1,
3819 no_fault : 1,
3820 int_type : 3,
3821 rq_eoi : 1,
3822 dm : 1,
3823 rsvd_1 : 1,
3824 destination : 8,
3825 vector : 8,
3826 rsvd_2 : 8;
3827 } fields;
3828};
3829
3830#define DTE_IRQ_PHYS_ADDR_MASK (((1ULL << 45)-1) << 6)
3831#define DTE_IRQ_REMAP_INTCTL (2ULL << 60)
3832#define DTE_IRQ_TABLE_LEN (8ULL << 1)
3833#define DTE_IRQ_REMAP_ENABLE 1ULL
3834
3835static void set_dte_irq_entry(u16 devid, struct irq_remap_table *table)
3836{
3837 u64 dte;
3838
3839 dte = amd_iommu_dev_table[devid].data[2];
3840 dte &= ~DTE_IRQ_PHYS_ADDR_MASK;
3841 dte |= virt_to_phys(table->table);
3842 dte |= DTE_IRQ_REMAP_INTCTL;
3843 dte |= DTE_IRQ_TABLE_LEN;
3844 dte |= DTE_IRQ_REMAP_ENABLE;
3845
3846 amd_iommu_dev_table[devid].data[2] = dte;
3847}
3848
3849#define IRTE_ALLOCATED (~1U)
3850
3851static struct irq_remap_table *get_irq_table(u16 devid, bool ioapic)
3852{
3853 struct irq_remap_table *table = NULL;
3854 struct amd_iommu *iommu;
3855 unsigned long flags;
3856 u16 alias;
3857
3858 write_lock_irqsave(&amd_iommu_devtable_lock, flags);
3859
3860 iommu = amd_iommu_rlookup_table[devid];
3861 if (!iommu)
3862 goto out_unlock;
3863
3864 table = irq_lookup_table[devid];
3865 if (table)
3866 goto out;
3867
3868 alias = amd_iommu_alias_table[devid];
3869 table = irq_lookup_table[alias];
3870 if (table) {
3871 irq_lookup_table[devid] = table;
3872 set_dte_irq_entry(devid, table);
3873 iommu_flush_dte(iommu, devid);
3874 goto out;
3875 }
3876
3877 /* Nothing there yet, allocate new irq remapping table */
3878 table = kzalloc(sizeof(*table), GFP_ATOMIC);
3879 if (!table)
3880 goto out;
3881
Joerg Roedel197887f2013-04-09 21:14:08 +02003882 /* Initialize table spin-lock */
3883 spin_lock_init(&table->lock);
3884
Joerg Roedel2b324502012-06-21 16:29:10 +02003885 if (ioapic)
3886 /* Keep the first 32 indexes free for IOAPIC interrupts */
3887 table->min_index = 32;
3888
3889 table->table = kmem_cache_alloc(amd_iommu_irq_cache, GFP_ATOMIC);
3890 if (!table->table) {
3891 kfree(table);
Dan Carpenter821f0f62012-10-02 11:34:40 +03003892 table = NULL;
Joerg Roedel2b324502012-06-21 16:29:10 +02003893 goto out;
3894 }
3895
3896 memset(table->table, 0, MAX_IRQS_PER_TABLE * sizeof(u32));
3897
3898 if (ioapic) {
3899 int i;
3900
3901 for (i = 0; i < 32; ++i)
3902 table->table[i] = IRTE_ALLOCATED;
3903 }
3904
3905 irq_lookup_table[devid] = table;
3906 set_dte_irq_entry(devid, table);
3907 iommu_flush_dte(iommu, devid);
3908 if (devid != alias) {
3909 irq_lookup_table[alias] = table;
Alex Williamsone028a9e2014-04-22 10:08:40 -06003910 set_dte_irq_entry(alias, table);
Joerg Roedel2b324502012-06-21 16:29:10 +02003911 iommu_flush_dte(iommu, alias);
3912 }
3913
3914out:
3915 iommu_completion_wait(iommu);
3916
3917out_unlock:
3918 write_unlock_irqrestore(&amd_iommu_devtable_lock, flags);
3919
3920 return table;
3921}
3922
3923static int alloc_irq_index(struct irq_cfg *cfg, u16 devid, int count)
3924{
3925 struct irq_remap_table *table;
3926 unsigned long flags;
3927 int index, c;
3928
3929 table = get_irq_table(devid, false);
3930 if (!table)
3931 return -ENODEV;
3932
3933 spin_lock_irqsave(&table->lock, flags);
3934
3935 /* Scan table for free entries */
3936 for (c = 0, index = table->min_index;
3937 index < MAX_IRQS_PER_TABLE;
3938 ++index) {
3939 if (table->table[index] == 0)
3940 c += 1;
3941 else
3942 c = 0;
3943
3944 if (c == count) {
Joerg Roedel0dfedd62013-04-09 15:39:16 +02003945 struct irq_2_irte *irte_info;
Joerg Roedel2b324502012-06-21 16:29:10 +02003946
3947 for (; c != 0; --c)
3948 table->table[index - c + 1] = IRTE_ALLOCATED;
3949
3950 index -= count - 1;
3951
Joerg Roedel9b1b0e42012-09-26 12:44:45 +02003952 cfg->remapped = 1;
Joerg Roedel0dfedd62013-04-09 15:39:16 +02003953 irte_info = &cfg->irq_2_irte;
3954 irte_info->devid = devid;
3955 irte_info->index = index;
Joerg Roedel2b324502012-06-21 16:29:10 +02003956
3957 goto out;
3958 }
3959 }
3960
3961 index = -ENOSPC;
3962
3963out:
3964 spin_unlock_irqrestore(&table->lock, flags);
3965
3966 return index;
3967}
3968
3969static int get_irte(u16 devid, int index, union irte *irte)
3970{
3971 struct irq_remap_table *table;
3972 unsigned long flags;
3973
3974 table = get_irq_table(devid, false);
3975 if (!table)
3976 return -ENOMEM;
3977
3978 spin_lock_irqsave(&table->lock, flags);
3979 irte->val = table->table[index];
3980 spin_unlock_irqrestore(&table->lock, flags);
3981
3982 return 0;
3983}
3984
3985static int modify_irte(u16 devid, int index, union irte irte)
3986{
3987 struct irq_remap_table *table;
3988 struct amd_iommu *iommu;
3989 unsigned long flags;
3990
3991 iommu = amd_iommu_rlookup_table[devid];
3992 if (iommu == NULL)
3993 return -EINVAL;
3994
3995 table = get_irq_table(devid, false);
3996 if (!table)
3997 return -ENOMEM;
3998
3999 spin_lock_irqsave(&table->lock, flags);
4000 table->table[index] = irte.val;
4001 spin_unlock_irqrestore(&table->lock, flags);
4002
4003 iommu_flush_irt(iommu, devid);
4004 iommu_completion_wait(iommu);
4005
4006 return 0;
4007}
4008
4009static void free_irte(u16 devid, int index)
4010{
4011 struct irq_remap_table *table;
4012 struct amd_iommu *iommu;
4013 unsigned long flags;
4014
4015 iommu = amd_iommu_rlookup_table[devid];
4016 if (iommu == NULL)
4017 return;
4018
4019 table = get_irq_table(devid, false);
4020 if (!table)
4021 return;
4022
4023 spin_lock_irqsave(&table->lock, flags);
4024 table->table[index] = 0;
4025 spin_unlock_irqrestore(&table->lock, flags);
4026
4027 iommu_flush_irt(iommu, devid);
4028 iommu_completion_wait(iommu);
4029}
4030
Joerg Roedel5527de72012-06-26 11:17:32 +02004031static int setup_ioapic_entry(int irq, struct IO_APIC_route_entry *entry,
4032 unsigned int destination, int vector,
4033 struct io_apic_irq_attr *attr)
4034{
4035 struct irq_remap_table *table;
Joerg Roedel0dfedd62013-04-09 15:39:16 +02004036 struct irq_2_irte *irte_info;
Joerg Roedel5527de72012-06-26 11:17:32 +02004037 struct irq_cfg *cfg;
4038 union irte irte;
4039 int ioapic_id;
4040 int index;
4041 int devid;
4042 int ret;
4043
4044 cfg = irq_get_chip_data(irq);
4045 if (!cfg)
4046 return -EINVAL;
4047
Joerg Roedel0dfedd62013-04-09 15:39:16 +02004048 irte_info = &cfg->irq_2_irte;
Joerg Roedel5527de72012-06-26 11:17:32 +02004049 ioapic_id = mpc_ioapic_id(attr->ioapic);
4050 devid = get_ioapic_devid(ioapic_id);
4051
4052 if (devid < 0)
4053 return devid;
4054
4055 table = get_irq_table(devid, true);
4056 if (table == NULL)
4057 return -ENOMEM;
4058
4059 index = attr->ioapic_pin;
4060
4061 /* Setup IRQ remapping info */
Joerg Roedel9b1b0e42012-09-26 12:44:45 +02004062 cfg->remapped = 1;
Joerg Roedel0dfedd62013-04-09 15:39:16 +02004063 irte_info->devid = devid;
4064 irte_info->index = index;
Joerg Roedel5527de72012-06-26 11:17:32 +02004065
4066 /* Setup IRTE for IOMMU */
4067 irte.val = 0;
4068 irte.fields.vector = vector;
4069 irte.fields.int_type = apic->irq_delivery_mode;
4070 irte.fields.destination = destination;
4071 irte.fields.dm = apic->irq_dest_mode;
4072 irte.fields.valid = 1;
4073
4074 ret = modify_irte(devid, index, irte);
4075 if (ret)
4076 return ret;
4077
4078 /* Setup IOAPIC entry */
4079 memset(entry, 0, sizeof(*entry));
4080
4081 entry->vector = index;
4082 entry->mask = 0;
4083 entry->trigger = attr->trigger;
4084 entry->polarity = attr->polarity;
4085
4086 /*
4087 * Mask level triggered irqs.
Joerg Roedel5527de72012-06-26 11:17:32 +02004088 */
4089 if (attr->trigger)
4090 entry->mask = 1;
4091
4092 return 0;
4093}
4094
4095static int set_affinity(struct irq_data *data, const struct cpumask *mask,
4096 bool force)
4097{
Joerg Roedel0dfedd62013-04-09 15:39:16 +02004098 struct irq_2_irte *irte_info;
Joerg Roedel5527de72012-06-26 11:17:32 +02004099 unsigned int dest, irq;
4100 struct irq_cfg *cfg;
4101 union irte irte;
4102 int err;
4103
4104 if (!config_enabled(CONFIG_SMP))
4105 return -1;
4106
4107 cfg = data->chip_data;
4108 irq = data->irq;
Joerg Roedel0dfedd62013-04-09 15:39:16 +02004109 irte_info = &cfg->irq_2_irte;
Joerg Roedel5527de72012-06-26 11:17:32 +02004110
4111 if (!cpumask_intersects(mask, cpu_online_mask))
4112 return -EINVAL;
4113
Joerg Roedel0dfedd62013-04-09 15:39:16 +02004114 if (get_irte(irte_info->devid, irte_info->index, &irte))
Joerg Roedel5527de72012-06-26 11:17:32 +02004115 return -EBUSY;
4116
4117 if (assign_irq_vector(irq, cfg, mask))
4118 return -EBUSY;
4119
4120 err = apic->cpu_mask_to_apicid_and(cfg->domain, mask, &dest);
4121 if (err) {
4122 if (assign_irq_vector(irq, cfg, data->affinity))
4123 pr_err("AMD-Vi: Failed to recover vector for irq %d\n", irq);
4124 return err;
4125 }
4126
4127 irte.fields.vector = cfg->vector;
4128 irte.fields.destination = dest;
4129
Joerg Roedel0dfedd62013-04-09 15:39:16 +02004130 modify_irte(irte_info->devid, irte_info->index, irte);
Joerg Roedel5527de72012-06-26 11:17:32 +02004131
4132 if (cfg->move_in_progress)
4133 send_cleanup_vector(cfg);
4134
4135 cpumask_copy(data->affinity, mask);
4136
4137 return 0;
4138}
4139
4140static int free_irq(int irq)
4141{
Joerg Roedel0dfedd62013-04-09 15:39:16 +02004142 struct irq_2_irte *irte_info;
Joerg Roedel5527de72012-06-26 11:17:32 +02004143 struct irq_cfg *cfg;
4144
4145 cfg = irq_get_chip_data(irq);
4146 if (!cfg)
4147 return -EINVAL;
4148
Joerg Roedel0dfedd62013-04-09 15:39:16 +02004149 irte_info = &cfg->irq_2_irte;
Joerg Roedel5527de72012-06-26 11:17:32 +02004150
Joerg Roedel0dfedd62013-04-09 15:39:16 +02004151 free_irte(irte_info->devid, irte_info->index);
Joerg Roedel5527de72012-06-26 11:17:32 +02004152
4153 return 0;
4154}
4155
Joerg Roedel0b4d48c2012-06-26 14:54:17 +02004156static void compose_msi_msg(struct pci_dev *pdev,
4157 unsigned int irq, unsigned int dest,
4158 struct msi_msg *msg, u8 hpet_id)
4159{
Joerg Roedel0dfedd62013-04-09 15:39:16 +02004160 struct irq_2_irte *irte_info;
Joerg Roedel0b4d48c2012-06-26 14:54:17 +02004161 struct irq_cfg *cfg;
4162 union irte irte;
4163
4164 cfg = irq_get_chip_data(irq);
4165 if (!cfg)
4166 return;
4167
Joerg Roedel0dfedd62013-04-09 15:39:16 +02004168 irte_info = &cfg->irq_2_irte;
Joerg Roedel0b4d48c2012-06-26 14:54:17 +02004169
4170 irte.val = 0;
4171 irte.fields.vector = cfg->vector;
4172 irte.fields.int_type = apic->irq_delivery_mode;
4173 irte.fields.destination = dest;
4174 irte.fields.dm = apic->irq_dest_mode;
4175 irte.fields.valid = 1;
4176
Joerg Roedel0dfedd62013-04-09 15:39:16 +02004177 modify_irte(irte_info->devid, irte_info->index, irte);
Joerg Roedel0b4d48c2012-06-26 14:54:17 +02004178
4179 msg->address_hi = MSI_ADDR_BASE_HI;
4180 msg->address_lo = MSI_ADDR_BASE_LO;
Joerg Roedel0dfedd62013-04-09 15:39:16 +02004181 msg->data = irte_info->index;
Joerg Roedel0b4d48c2012-06-26 14:54:17 +02004182}
4183
4184static int msi_alloc_irq(struct pci_dev *pdev, int irq, int nvec)
4185{
4186 struct irq_cfg *cfg;
4187 int index;
4188 u16 devid;
4189
4190 if (!pdev)
4191 return -EINVAL;
4192
4193 cfg = irq_get_chip_data(irq);
4194 if (!cfg)
4195 return -EINVAL;
4196
4197 devid = get_device_id(&pdev->dev);
4198 index = alloc_irq_index(cfg, devid, nvec);
4199
4200 return index < 0 ? MAX_IRQS_PER_TABLE : index;
4201}
4202
4203static int msi_setup_irq(struct pci_dev *pdev, unsigned int irq,
4204 int index, int offset)
4205{
Joerg Roedel0dfedd62013-04-09 15:39:16 +02004206 struct irq_2_irte *irte_info;
Joerg Roedel0b4d48c2012-06-26 14:54:17 +02004207 struct irq_cfg *cfg;
4208 u16 devid;
4209
4210 if (!pdev)
4211 return -EINVAL;
4212
4213 cfg = irq_get_chip_data(irq);
4214 if (!cfg)
4215 return -EINVAL;
4216
4217 if (index >= MAX_IRQS_PER_TABLE)
4218 return 0;
4219
4220 devid = get_device_id(&pdev->dev);
Joerg Roedel0dfedd62013-04-09 15:39:16 +02004221 irte_info = &cfg->irq_2_irte;
Joerg Roedel0b4d48c2012-06-26 14:54:17 +02004222
Joerg Roedel9b1b0e42012-09-26 12:44:45 +02004223 cfg->remapped = 1;
Joerg Roedel0dfedd62013-04-09 15:39:16 +02004224 irte_info->devid = devid;
4225 irte_info->index = index + offset;
Joerg Roedel0b4d48c2012-06-26 14:54:17 +02004226
4227 return 0;
4228}
4229
Joerg Roedeld9761952012-06-26 16:00:08 +02004230static int setup_hpet_msi(unsigned int irq, unsigned int id)
4231{
Joerg Roedel0dfedd62013-04-09 15:39:16 +02004232 struct irq_2_irte *irte_info;
Joerg Roedeld9761952012-06-26 16:00:08 +02004233 struct irq_cfg *cfg;
4234 int index, devid;
4235
4236 cfg = irq_get_chip_data(irq);
4237 if (!cfg)
4238 return -EINVAL;
4239
Joerg Roedel0dfedd62013-04-09 15:39:16 +02004240 irte_info = &cfg->irq_2_irte;
Joerg Roedeld9761952012-06-26 16:00:08 +02004241 devid = get_hpet_devid(id);
4242 if (devid < 0)
4243 return devid;
4244
4245 index = alloc_irq_index(cfg, devid, 1);
4246 if (index < 0)
4247 return index;
4248
Joerg Roedel9b1b0e42012-09-26 12:44:45 +02004249 cfg->remapped = 1;
Joerg Roedel0dfedd62013-04-09 15:39:16 +02004250 irte_info->devid = devid;
4251 irte_info->index = index;
Joerg Roedeld9761952012-06-26 16:00:08 +02004252
4253 return 0;
4254}
4255
Joerg Roedel6b474b82012-06-26 16:46:04 +02004256struct irq_remap_ops amd_iommu_irq_ops = {
4257 .supported = amd_iommu_supported,
4258 .prepare = amd_iommu_prepare,
4259 .enable = amd_iommu_enable,
4260 .disable = amd_iommu_disable,
4261 .reenable = amd_iommu_reenable,
4262 .enable_faulting = amd_iommu_enable_faulting,
4263 .setup_ioapic_entry = setup_ioapic_entry,
4264 .set_affinity = set_affinity,
4265 .free_irq = free_irq,
4266 .compose_msi_msg = compose_msi_msg,
4267 .msi_alloc_irq = msi_alloc_irq,
4268 .msi_setup_irq = msi_setup_irq,
4269 .setup_hpet_msi = setup_hpet_msi,
4270};
Joerg Roedel2b324502012-06-21 16:29:10 +02004271#endif