blob: c8f87a6c9b90f10040bdf25088af8f40f01dc220 [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
Alex Williamson066f2e92014-06-12 16:12:37 -0600382 iommu_device_link(amd_iommu_rlookup_table[dev_data->devid]->iommu_dev,
383 dev);
384
Joerg Roedel657cbb62009-11-23 15:26:46 +0100385 return 0;
386}
387
Joerg Roedel26018872011-06-06 16:50:14 +0200388static void iommu_ignore_device(struct device *dev)
389{
390 u16 devid, alias;
391
392 devid = get_device_id(dev);
393 alias = amd_iommu_alias_table[devid];
394
395 memset(&amd_iommu_dev_table[devid], 0, sizeof(struct dev_table_entry));
396 memset(&amd_iommu_dev_table[alias], 0, sizeof(struct dev_table_entry));
397
398 amd_iommu_rlookup_table[devid] = NULL;
399 amd_iommu_rlookup_table[alias] = NULL;
400}
401
Joerg Roedel657cbb62009-11-23 15:26:46 +0100402static void iommu_uninit_device(struct device *dev)
403{
Alex Williamsonc1931092014-07-03 09:51:24 -0600404 struct iommu_dev_data *dev_data = search_dev_data(get_device_id(dev));
405
406 if (!dev_data)
407 return;
408
Alex Williamson066f2e92014-06-12 16:12:37 -0600409 iommu_device_unlink(amd_iommu_rlookup_table[dev_data->devid]->iommu_dev,
410 dev);
411
Alex Williamson9dcd6132012-05-30 14:19:07 -0600412 iommu_group_remove_device(dev);
413
Alex Williamsonc1931092014-07-03 09:51:24 -0600414 /* Unlink from alias, it may change if another device is re-plugged */
415 dev_data->alias_data = NULL;
416
Joerg Roedel8fa5f802011-06-09 12:24:45 +0200417 /*
Alex Williamsonc1931092014-07-03 09:51:24 -0600418 * We keep dev_data around for unplugged devices and reuse it when the
419 * device is re-plugged - not doing so would introduce a ton of races.
Joerg Roedel8fa5f802011-06-09 12:24:45 +0200420 */
Joerg Roedel657cbb62009-11-23 15:26:46 +0100421}
Joerg Roedelb7cc9552009-12-10 11:03:39 +0100422
423void __init amd_iommu_uninit_devices(void)
424{
Joerg Roedel8fa5f802011-06-09 12:24:45 +0200425 struct iommu_dev_data *dev_data, *n;
Joerg Roedelb7cc9552009-12-10 11:03:39 +0100426 struct pci_dev *pdev = NULL;
427
428 for_each_pci_dev(pdev) {
429
430 if (!check_device(&pdev->dev))
431 continue;
432
433 iommu_uninit_device(&pdev->dev);
434 }
Joerg Roedel8fa5f802011-06-09 12:24:45 +0200435
436 /* Free all of our dev_data structures */
437 list_for_each_entry_safe(dev_data, n, &dev_data_list, dev_data_list)
438 free_dev_data(dev_data);
Joerg Roedelb7cc9552009-12-10 11:03:39 +0100439}
440
441int __init amd_iommu_init_devices(void)
442{
443 struct pci_dev *pdev = NULL;
444 int ret = 0;
445
446 for_each_pci_dev(pdev) {
447
448 if (!check_device(&pdev->dev))
449 continue;
450
451 ret = iommu_init_device(&pdev->dev);
Joerg Roedel26018872011-06-06 16:50:14 +0200452 if (ret == -ENOTSUPP)
453 iommu_ignore_device(&pdev->dev);
454 else if (ret)
Joerg Roedelb7cc9552009-12-10 11:03:39 +0100455 goto out_free;
456 }
457
458 return 0;
459
460out_free:
461
462 amd_iommu_uninit_devices();
463
464 return ret;
465}
Joerg Roedel7f265082008-12-12 13:50:21 +0100466#ifdef CONFIG_AMD_IOMMU_STATS
467
468/*
469 * Initialization code for statistics collection
470 */
471
Joerg Roedelda49f6d2008-12-12 14:59:58 +0100472DECLARE_STATS_COUNTER(compl_wait);
Joerg Roedel0f2a86f2008-12-12 15:05:16 +0100473DECLARE_STATS_COUNTER(cnt_map_single);
Joerg Roedel146a6912008-12-12 15:07:12 +0100474DECLARE_STATS_COUNTER(cnt_unmap_single);
Joerg Roedeld03f067a2008-12-12 15:09:48 +0100475DECLARE_STATS_COUNTER(cnt_map_sg);
Joerg Roedel55877a62008-12-12 15:12:14 +0100476DECLARE_STATS_COUNTER(cnt_unmap_sg);
Joerg Roedelc8f0fb32008-12-12 15:14:21 +0100477DECLARE_STATS_COUNTER(cnt_alloc_coherent);
Joerg Roedel5d31ee72008-12-12 15:16:38 +0100478DECLARE_STATS_COUNTER(cnt_free_coherent);
Joerg Roedelc1858972008-12-12 15:42:39 +0100479DECLARE_STATS_COUNTER(cross_page);
Joerg Roedelf57d98a2008-12-12 15:46:29 +0100480DECLARE_STATS_COUNTER(domain_flush_single);
Joerg Roedel18811f52008-12-12 15:48:28 +0100481DECLARE_STATS_COUNTER(domain_flush_all);
Joerg Roedel5774f7c2008-12-12 15:57:30 +0100482DECLARE_STATS_COUNTER(alloced_io_mem);
Joerg Roedel8ecaf8f2008-12-12 16:13:04 +0100483DECLARE_STATS_COUNTER(total_map_requests);
Joerg Roedel399be2f2011-12-01 16:53:47 +0100484DECLARE_STATS_COUNTER(complete_ppr);
485DECLARE_STATS_COUNTER(invalidate_iotlb);
486DECLARE_STATS_COUNTER(invalidate_iotlb_all);
487DECLARE_STATS_COUNTER(pri_requests);
488
Joerg Roedel7f265082008-12-12 13:50:21 +0100489static struct dentry *stats_dir;
Joerg Roedel7f265082008-12-12 13:50:21 +0100490static struct dentry *de_fflush;
491
492static void amd_iommu_stats_add(struct __iommu_counter *cnt)
493{
494 if (stats_dir == NULL)
495 return;
496
497 cnt->dent = debugfs_create_u64(cnt->name, 0444, stats_dir,
498 &cnt->value);
499}
500
501static void amd_iommu_stats_init(void)
502{
503 stats_dir = debugfs_create_dir("amd-iommu", NULL);
504 if (stats_dir == NULL)
505 return;
506
Joerg Roedel7f265082008-12-12 13:50:21 +0100507 de_fflush = debugfs_create_bool("fullflush", 0444, stats_dir,
Dan Carpenter3775d482012-06-27 12:09:18 +0300508 &amd_iommu_unmap_flush);
Joerg Roedelda49f6d2008-12-12 14:59:58 +0100509
510 amd_iommu_stats_add(&compl_wait);
Joerg Roedel0f2a86f2008-12-12 15:05:16 +0100511 amd_iommu_stats_add(&cnt_map_single);
Joerg Roedel146a6912008-12-12 15:07:12 +0100512 amd_iommu_stats_add(&cnt_unmap_single);
Joerg Roedeld03f067a2008-12-12 15:09:48 +0100513 amd_iommu_stats_add(&cnt_map_sg);
Joerg Roedel55877a62008-12-12 15:12:14 +0100514 amd_iommu_stats_add(&cnt_unmap_sg);
Joerg Roedelc8f0fb32008-12-12 15:14:21 +0100515 amd_iommu_stats_add(&cnt_alloc_coherent);
Joerg Roedel5d31ee72008-12-12 15:16:38 +0100516 amd_iommu_stats_add(&cnt_free_coherent);
Joerg Roedelc1858972008-12-12 15:42:39 +0100517 amd_iommu_stats_add(&cross_page);
Joerg Roedelf57d98a2008-12-12 15:46:29 +0100518 amd_iommu_stats_add(&domain_flush_single);
Joerg Roedel18811f52008-12-12 15:48:28 +0100519 amd_iommu_stats_add(&domain_flush_all);
Joerg Roedel5774f7c2008-12-12 15:57:30 +0100520 amd_iommu_stats_add(&alloced_io_mem);
Joerg Roedel8ecaf8f2008-12-12 16:13:04 +0100521 amd_iommu_stats_add(&total_map_requests);
Joerg Roedel399be2f2011-12-01 16:53:47 +0100522 amd_iommu_stats_add(&complete_ppr);
523 amd_iommu_stats_add(&invalidate_iotlb);
524 amd_iommu_stats_add(&invalidate_iotlb_all);
525 amd_iommu_stats_add(&pri_requests);
Joerg Roedel7f265082008-12-12 13:50:21 +0100526}
527
528#endif
529
Joerg Roedel431b2a22008-07-11 17:14:22 +0200530/****************************************************************************
531 *
Joerg Roedela80dc3e2008-09-11 16:51:41 +0200532 * Interrupt handling functions
533 *
534 ****************************************************************************/
535
Joerg Roedele3e59872009-09-03 14:02:10 +0200536static void dump_dte_entry(u16 devid)
537{
538 int i;
539
Joerg Roedelee6c2862011-11-09 12:06:03 +0100540 for (i = 0; i < 4; ++i)
541 pr_err("AMD-Vi: DTE[%d]: %016llx\n", i,
Joerg Roedele3e59872009-09-03 14:02:10 +0200542 amd_iommu_dev_table[devid].data[i]);
543}
544
Joerg Roedel945b4ac2009-09-03 14:25:02 +0200545static void dump_command(unsigned long phys_addr)
546{
547 struct iommu_cmd *cmd = phys_to_virt(phys_addr);
548 int i;
549
550 for (i = 0; i < 4; ++i)
551 pr_err("AMD-Vi: CMD[%d]: %08x\n", i, cmd->data[i]);
552}
553
Joerg Roedela345b232009-09-03 15:01:43 +0200554static void iommu_print_event(struct amd_iommu *iommu, void *__evt)
Joerg Roedel90008ee2008-09-09 16:41:05 +0200555{
Joerg Roedel3d06fca2012-04-12 14:12:00 +0200556 int type, devid, domid, flags;
557 volatile u32 *event = __evt;
558 int count = 0;
559 u64 address;
560
561retry:
562 type = (event[1] >> EVENT_TYPE_SHIFT) & EVENT_TYPE_MASK;
563 devid = (event[0] >> EVENT_DEVID_SHIFT) & EVENT_DEVID_MASK;
564 domid = (event[1] >> EVENT_DOMID_SHIFT) & EVENT_DOMID_MASK;
565 flags = (event[1] >> EVENT_FLAGS_SHIFT) & EVENT_FLAGS_MASK;
566 address = (u64)(((u64)event[3]) << 32) | event[2];
567
568 if (type == 0) {
569 /* Did we hit the erratum? */
570 if (++count == LOOP_TIMEOUT) {
571 pr_err("AMD-Vi: No event written to event log\n");
572 return;
573 }
574 udelay(1);
575 goto retry;
576 }
Joerg Roedel90008ee2008-09-09 16:41:05 +0200577
Joerg Roedel4c6f40d2009-09-01 16:43:58 +0200578 printk(KERN_ERR "AMD-Vi: Event logged [");
Joerg Roedel90008ee2008-09-09 16:41:05 +0200579
580 switch (type) {
581 case EVENT_TYPE_ILL_DEV:
582 printk("ILLEGAL_DEV_TABLE_ENTRY device=%02x:%02x.%x "
583 "address=0x%016llx flags=0x%04x]\n",
Shuah Khanc5081cd2013-02-27 17:07:19 -0700584 PCI_BUS_NUM(devid), PCI_SLOT(devid), PCI_FUNC(devid),
Joerg Roedel90008ee2008-09-09 16:41:05 +0200585 address, flags);
Joerg Roedele3e59872009-09-03 14:02:10 +0200586 dump_dte_entry(devid);
Joerg Roedel90008ee2008-09-09 16:41:05 +0200587 break;
588 case EVENT_TYPE_IO_FAULT:
589 printk("IO_PAGE_FAULT device=%02x:%02x.%x "
590 "domain=0x%04x 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 domid, address, flags);
593 break;
594 case EVENT_TYPE_DEV_TAB_ERR:
595 printk("DEV_TAB_HARDWARE_ERROR device=%02x:%02x.%x "
596 "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 address, flags);
599 break;
600 case EVENT_TYPE_PAGE_TAB_ERR:
601 printk("PAGE_TAB_HARDWARE_ERROR device=%02x:%02x.%x "
602 "domain=0x%04x address=0x%016llx flags=0x%04x]\n",
Shuah Khanc5081cd2013-02-27 17:07:19 -0700603 PCI_BUS_NUM(devid), PCI_SLOT(devid), PCI_FUNC(devid),
Joerg Roedel90008ee2008-09-09 16:41:05 +0200604 domid, address, flags);
605 break;
606 case EVENT_TYPE_ILL_CMD:
607 printk("ILLEGAL_COMMAND_ERROR address=0x%016llx]\n", address);
Joerg Roedel945b4ac2009-09-03 14:25:02 +0200608 dump_command(address);
Joerg Roedel90008ee2008-09-09 16:41:05 +0200609 break;
610 case EVENT_TYPE_CMD_HARD_ERR:
611 printk("COMMAND_HARDWARE_ERROR address=0x%016llx "
612 "flags=0x%04x]\n", address, flags);
613 break;
614 case EVENT_TYPE_IOTLB_INV_TO:
615 printk("IOTLB_INV_TIMEOUT device=%02x:%02x.%x "
616 "address=0x%016llx]\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);
619 break;
620 case EVENT_TYPE_INV_DEV_REQ:
621 printk("INVALID_DEVICE_REQUEST device=%02x:%02x.%x "
622 "address=0x%016llx flags=0x%04x]\n",
Shuah Khanc5081cd2013-02-27 17:07:19 -0700623 PCI_BUS_NUM(devid), PCI_SLOT(devid), PCI_FUNC(devid),
Joerg Roedel90008ee2008-09-09 16:41:05 +0200624 address, flags);
625 break;
626 default:
627 printk(KERN_ERR "UNKNOWN type=0x%02x]\n", type);
628 }
Joerg Roedel3d06fca2012-04-12 14:12:00 +0200629
630 memset(__evt, 0, 4 * sizeof(u32));
Joerg Roedel90008ee2008-09-09 16:41:05 +0200631}
632
633static void iommu_poll_events(struct amd_iommu *iommu)
634{
635 u32 head, tail;
Joerg Roedel90008ee2008-09-09 16:41:05 +0200636
637 head = readl(iommu->mmio_base + MMIO_EVT_HEAD_OFFSET);
638 tail = readl(iommu->mmio_base + MMIO_EVT_TAIL_OFFSET);
639
640 while (head != tail) {
Joerg Roedela345b232009-09-03 15:01:43 +0200641 iommu_print_event(iommu, iommu->evt_buf + head);
Joerg Roedel90008ee2008-09-09 16:41:05 +0200642 head = (head + EVENT_ENTRY_SIZE) % iommu->evt_buf_size;
643 }
644
645 writel(head, iommu->mmio_base + MMIO_EVT_HEAD_OFFSET);
Joerg Roedel90008ee2008-09-09 16:41:05 +0200646}
647
Joerg Roedeleee53532012-06-01 15:20:23 +0200648static void iommu_handle_ppr_entry(struct amd_iommu *iommu, u64 *raw)
Joerg Roedel72e1dcc2011-11-10 19:13:51 +0100649{
650 struct amd_iommu_fault fault;
Joerg Roedel72e1dcc2011-11-10 19:13:51 +0100651
Joerg Roedel399be2f2011-12-01 16:53:47 +0100652 INC_STATS_COUNTER(pri_requests);
653
Joerg Roedel72e1dcc2011-11-10 19:13:51 +0100654 if (PPR_REQ_TYPE(raw[0]) != PPR_REQ_FAULT) {
655 pr_err_ratelimited("AMD-Vi: Unknown PPR request received\n");
656 return;
657 }
658
659 fault.address = raw[1];
660 fault.pasid = PPR_PASID(raw[0]);
661 fault.device_id = PPR_DEVID(raw[0]);
662 fault.tag = PPR_TAG(raw[0]);
663 fault.flags = PPR_FLAGS(raw[0]);
664
Joerg Roedel72e1dcc2011-11-10 19:13:51 +0100665 atomic_notifier_call_chain(&ppr_notifier, 0, &fault);
666}
667
668static void iommu_poll_ppr_log(struct amd_iommu *iommu)
669{
Joerg Roedel72e1dcc2011-11-10 19:13:51 +0100670 u32 head, tail;
671
672 if (iommu->ppr_log == NULL)
673 return;
674
Joerg Roedel72e1dcc2011-11-10 19:13:51 +0100675 head = readl(iommu->mmio_base + MMIO_PPR_HEAD_OFFSET);
676 tail = readl(iommu->mmio_base + MMIO_PPR_TAIL_OFFSET);
677
678 while (head != tail) {
Joerg Roedeleee53532012-06-01 15:20:23 +0200679 volatile u64 *raw;
680 u64 entry[2];
681 int i;
Joerg Roedel72e1dcc2011-11-10 19:13:51 +0100682
Joerg Roedeleee53532012-06-01 15:20:23 +0200683 raw = (u64 *)(iommu->ppr_log + head);
Joerg Roedel72e1dcc2011-11-10 19:13:51 +0100684
Joerg Roedeleee53532012-06-01 15:20:23 +0200685 /*
686 * Hardware bug: Interrupt may arrive before the entry is
687 * written to memory. If this happens we need to wait for the
688 * entry to arrive.
689 */
690 for (i = 0; i < LOOP_TIMEOUT; ++i) {
691 if (PPR_REQ_TYPE(raw[0]) != 0)
692 break;
693 udelay(1);
694 }
695
696 /* Avoid memcpy function-call overhead */
697 entry[0] = raw[0];
698 entry[1] = raw[1];
699
700 /*
701 * To detect the hardware bug we need to clear the entry
702 * back to zero.
703 */
704 raw[0] = raw[1] = 0UL;
705
706 /* Update head pointer of hardware ring-buffer */
Joerg Roedel72e1dcc2011-11-10 19:13:51 +0100707 head = (head + PPR_ENTRY_SIZE) % PPR_LOG_SIZE;
708 writel(head, iommu->mmio_base + MMIO_PPR_HEAD_OFFSET);
Joerg Roedeleee53532012-06-01 15:20:23 +0200709
Joerg Roedeleee53532012-06-01 15:20:23 +0200710 /* Handle PPR entry */
711 iommu_handle_ppr_entry(iommu, entry);
712
Joerg Roedeleee53532012-06-01 15:20:23 +0200713 /* Refresh ring-buffer information */
714 head = readl(iommu->mmio_base + MMIO_PPR_HEAD_OFFSET);
Joerg Roedel72e1dcc2011-11-10 19:13:51 +0100715 tail = readl(iommu->mmio_base + MMIO_PPR_TAIL_OFFSET);
716 }
Joerg Roedel72e1dcc2011-11-10 19:13:51 +0100717}
718
Joerg Roedel72fe00f2011-05-10 10:50:42 +0200719irqreturn_t amd_iommu_int_thread(int irq, void *data)
Joerg Roedela80dc3e2008-09-11 16:51:41 +0200720{
Suravee Suthikulpanit3f398bc2013-04-22 16:32:34 -0500721 struct amd_iommu *iommu = (struct amd_iommu *) data;
722 u32 status = readl(iommu->mmio_base + MMIO_STATUS_OFFSET);
Joerg Roedel90008ee2008-09-09 16:41:05 +0200723
Suravee Suthikulpanit3f398bc2013-04-22 16:32:34 -0500724 while (status & (MMIO_STATUS_EVT_INT_MASK | MMIO_STATUS_PPR_INT_MASK)) {
725 /* Enable EVT and PPR interrupts again */
726 writel((MMIO_STATUS_EVT_INT_MASK | MMIO_STATUS_PPR_INT_MASK),
727 iommu->mmio_base + MMIO_STATUS_OFFSET);
728
729 if (status & MMIO_STATUS_EVT_INT_MASK) {
730 pr_devel("AMD-Vi: Processing IOMMU Event Log\n");
731 iommu_poll_events(iommu);
732 }
733
734 if (status & MMIO_STATUS_PPR_INT_MASK) {
735 pr_devel("AMD-Vi: Processing IOMMU PPR Log\n");
736 iommu_poll_ppr_log(iommu);
737 }
738
739 /*
740 * Hardware bug: ERBT1312
741 * When re-enabling interrupt (by writing 1
742 * to clear the bit), the hardware might also try to set
743 * the interrupt bit in the event status register.
744 * In this scenario, the bit will be set, and disable
745 * subsequent interrupts.
746 *
747 * Workaround: The IOMMU driver should read back the
748 * status register and check if the interrupt bits are cleared.
749 * If not, driver will need to go through the interrupt handler
750 * again and re-clear the bits
751 */
752 status = readl(iommu->mmio_base + MMIO_STATUS_OFFSET);
Joerg Roedel72e1dcc2011-11-10 19:13:51 +0100753 }
Joerg Roedel90008ee2008-09-09 16:41:05 +0200754 return IRQ_HANDLED;
Joerg Roedela80dc3e2008-09-11 16:51:41 +0200755}
756
Joerg Roedel72fe00f2011-05-10 10:50:42 +0200757irqreturn_t amd_iommu_int_handler(int irq, void *data)
758{
759 return IRQ_WAKE_THREAD;
760}
761
Joerg Roedela80dc3e2008-09-11 16:51:41 +0200762/****************************************************************************
763 *
Joerg Roedel431b2a22008-07-11 17:14:22 +0200764 * IOMMU command queuing functions
765 *
766 ****************************************************************************/
767
Joerg Roedelac0ea6e2011-04-06 18:38:20 +0200768static int wait_on_sem(volatile u64 *sem)
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200769{
Joerg Roedelac0ea6e2011-04-06 18:38:20 +0200770 int i = 0;
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200771
Joerg Roedelac0ea6e2011-04-06 18:38:20 +0200772 while (*sem == 0 && i < LOOP_TIMEOUT) {
773 udelay(1);
774 i += 1;
775 }
776
777 if (i == LOOP_TIMEOUT) {
778 pr_alert("AMD-Vi: Completion-Wait loop timed out\n");
779 return -EIO;
780 }
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200781
782 return 0;
783}
784
Joerg Roedelac0ea6e2011-04-06 18:38:20 +0200785static void copy_cmd_to_buffer(struct amd_iommu *iommu,
786 struct iommu_cmd *cmd,
787 u32 tail)
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200788{
Joerg Roedelac0ea6e2011-04-06 18:38:20 +0200789 u8 *target;
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200790
Joerg Roedelac0ea6e2011-04-06 18:38:20 +0200791 target = iommu->cmd_buf + tail;
792 tail = (tail + sizeof(*cmd)) % iommu->cmd_buf_size;
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200793
Joerg Roedelac0ea6e2011-04-06 18:38:20 +0200794 /* Copy command to buffer */
795 memcpy(target, cmd, sizeof(*cmd));
796
797 /* Tell the IOMMU about it */
798 writel(tail, iommu->mmio_base + MMIO_CMD_TAIL_OFFSET);
799}
800
Joerg Roedel815b33f2011-04-06 17:26:49 +0200801static void build_completion_wait(struct iommu_cmd *cmd, u64 address)
Joerg Roedelded46732011-04-06 10:53:48 +0200802{
Joerg Roedel815b33f2011-04-06 17:26:49 +0200803 WARN_ON(address & 0x7ULL);
804
Joerg Roedelded46732011-04-06 10:53:48 +0200805 memset(cmd, 0, sizeof(*cmd));
Joerg Roedel815b33f2011-04-06 17:26:49 +0200806 cmd->data[0] = lower_32_bits(__pa(address)) | CMD_COMPL_WAIT_STORE_MASK;
807 cmd->data[1] = upper_32_bits(__pa(address));
808 cmd->data[2] = 1;
Joerg Roedelded46732011-04-06 10:53:48 +0200809 CMD_SET_TYPE(cmd, CMD_COMPL_WAIT);
810}
811
Joerg Roedel94fe79e2011-04-06 11:07:21 +0200812static void build_inv_dte(struct iommu_cmd *cmd, u16 devid)
813{
814 memset(cmd, 0, sizeof(*cmd));
815 cmd->data[0] = devid;
816 CMD_SET_TYPE(cmd, CMD_INV_DEV_ENTRY);
817}
818
Joerg Roedel11b64022011-04-06 11:49:28 +0200819static void build_inv_iommu_pages(struct iommu_cmd *cmd, u64 address,
820 size_t size, u16 domid, int pde)
821{
822 u64 pages;
823 int s;
824
825 pages = iommu_num_pages(address, size, PAGE_SIZE);
826 s = 0;
827
828 if (pages > 1) {
829 /*
830 * If we have to flush more than one page, flush all
831 * TLB entries for this domain
832 */
833 address = CMD_INV_IOMMU_ALL_PAGES_ADDRESS;
834 s = 1;
835 }
836
837 address &= PAGE_MASK;
838
839 memset(cmd, 0, sizeof(*cmd));
840 cmd->data[1] |= domid;
841 cmd->data[2] = lower_32_bits(address);
842 cmd->data[3] = upper_32_bits(address);
843 CMD_SET_TYPE(cmd, CMD_INV_IOMMU_PAGES);
844 if (s) /* size bit - we flush more than one 4kb page */
845 cmd->data[2] |= CMD_INV_IOMMU_PAGES_SIZE_MASK;
Frank Arnolddf805ab2012-08-27 19:21:04 +0200846 if (pde) /* PDE bit - we want to flush everything, not only the PTEs */
Joerg Roedel11b64022011-04-06 11:49:28 +0200847 cmd->data[2] |= CMD_INV_IOMMU_PAGES_PDE_MASK;
848}
849
Joerg Roedelcb41ed82011-04-05 11:00:53 +0200850static void build_inv_iotlb_pages(struct iommu_cmd *cmd, u16 devid, int qdep,
851 u64 address, size_t size)
852{
853 u64 pages;
854 int s;
855
856 pages = iommu_num_pages(address, size, PAGE_SIZE);
857 s = 0;
858
859 if (pages > 1) {
860 /*
861 * If we have to flush more than one page, flush all
862 * TLB entries for this domain
863 */
864 address = CMD_INV_IOMMU_ALL_PAGES_ADDRESS;
865 s = 1;
866 }
867
868 address &= PAGE_MASK;
869
870 memset(cmd, 0, sizeof(*cmd));
871 cmd->data[0] = devid;
872 cmd->data[0] |= (qdep & 0xff) << 24;
873 cmd->data[1] = devid;
874 cmd->data[2] = lower_32_bits(address);
875 cmd->data[3] = upper_32_bits(address);
876 CMD_SET_TYPE(cmd, CMD_INV_IOTLB_PAGES);
877 if (s)
878 cmd->data[2] |= CMD_INV_IOMMU_PAGES_SIZE_MASK;
879}
880
Joerg Roedel22e266c2011-11-21 15:59:08 +0100881static void build_inv_iommu_pasid(struct iommu_cmd *cmd, u16 domid, int pasid,
882 u64 address, bool size)
883{
884 memset(cmd, 0, sizeof(*cmd));
885
886 address &= ~(0xfffULL);
887
Suravee Suthikulpanita919a012014-03-05 18:54:18 -0600888 cmd->data[0] = pasid;
Joerg Roedel22e266c2011-11-21 15:59:08 +0100889 cmd->data[1] = domid;
890 cmd->data[2] = lower_32_bits(address);
891 cmd->data[3] = upper_32_bits(address);
892 cmd->data[2] |= CMD_INV_IOMMU_PAGES_PDE_MASK;
893 cmd->data[2] |= CMD_INV_IOMMU_PAGES_GN_MASK;
894 if (size)
895 cmd->data[2] |= CMD_INV_IOMMU_PAGES_SIZE_MASK;
896 CMD_SET_TYPE(cmd, CMD_INV_IOMMU_PAGES);
897}
898
899static void build_inv_iotlb_pasid(struct iommu_cmd *cmd, u16 devid, int pasid,
900 int qdep, u64 address, bool size)
901{
902 memset(cmd, 0, sizeof(*cmd));
903
904 address &= ~(0xfffULL);
905
906 cmd->data[0] = devid;
Jay Cornwalle8d2d822014-02-26 15:49:31 -0600907 cmd->data[0] |= ((pasid >> 8) & 0xff) << 16;
Joerg Roedel22e266c2011-11-21 15:59:08 +0100908 cmd->data[0] |= (qdep & 0xff) << 24;
909 cmd->data[1] = devid;
Jay Cornwalle8d2d822014-02-26 15:49:31 -0600910 cmd->data[1] |= (pasid & 0xff) << 16;
Joerg Roedel22e266c2011-11-21 15:59:08 +0100911 cmd->data[2] = lower_32_bits(address);
912 cmd->data[2] |= CMD_INV_IOMMU_PAGES_GN_MASK;
913 cmd->data[3] = upper_32_bits(address);
914 if (size)
915 cmd->data[2] |= CMD_INV_IOMMU_PAGES_SIZE_MASK;
916 CMD_SET_TYPE(cmd, CMD_INV_IOTLB_PAGES);
917}
918
Joerg Roedelc99afa22011-11-21 18:19:25 +0100919static void build_complete_ppr(struct iommu_cmd *cmd, u16 devid, int pasid,
920 int status, int tag, bool gn)
921{
922 memset(cmd, 0, sizeof(*cmd));
923
924 cmd->data[0] = devid;
925 if (gn) {
Suravee Suthikulpanita919a012014-03-05 18:54:18 -0600926 cmd->data[1] = pasid;
Joerg Roedelc99afa22011-11-21 18:19:25 +0100927 cmd->data[2] = CMD_INV_IOMMU_PAGES_GN_MASK;
928 }
929 cmd->data[3] = tag & 0x1ff;
930 cmd->data[3] |= (status & PPR_STATUS_MASK) << PPR_STATUS_SHIFT;
931
932 CMD_SET_TYPE(cmd, CMD_COMPLETE_PPR);
933}
934
Joerg Roedel58fc7f12011-04-11 11:13:24 +0200935static void build_inv_all(struct iommu_cmd *cmd)
936{
937 memset(cmd, 0, sizeof(*cmd));
938 CMD_SET_TYPE(cmd, CMD_INV_ALL);
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200939}
940
Joerg Roedel7ef27982012-06-21 16:46:04 +0200941static void build_inv_irt(struct iommu_cmd *cmd, u16 devid)
942{
943 memset(cmd, 0, sizeof(*cmd));
944 cmd->data[0] = devid;
945 CMD_SET_TYPE(cmd, CMD_INV_IRT);
946}
947
Joerg Roedel431b2a22008-07-11 17:14:22 +0200948/*
Joerg Roedelb6c02712008-06-26 21:27:53 +0200949 * Writes the command to the IOMMUs command buffer and informs the
Joerg Roedelac0ea6e2011-04-06 18:38:20 +0200950 * hardware about the new command.
Joerg Roedel431b2a22008-07-11 17:14:22 +0200951 */
Joerg Roedelf1ca1512011-09-02 14:10:32 +0200952static int iommu_queue_command_sync(struct amd_iommu *iommu,
953 struct iommu_cmd *cmd,
954 bool sync)
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200955{
Joerg Roedelac0ea6e2011-04-06 18:38:20 +0200956 u32 left, tail, head, next_tail;
Joerg Roedel815b33f2011-04-06 17:26:49 +0200957 unsigned long flags;
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200958
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200959 WARN_ON(iommu->cmd_buf_size & CMD_BUFFER_UNINITIALIZED);
Joerg Roedelda49f6d2008-12-12 14:59:58 +0100960
Joerg Roedelac0ea6e2011-04-06 18:38:20 +0200961again:
Joerg Roedel815b33f2011-04-06 17:26:49 +0200962 spin_lock_irqsave(&iommu->lock, flags);
Joerg Roedelac0ea6e2011-04-06 18:38:20 +0200963
964 head = readl(iommu->mmio_base + MMIO_CMD_HEAD_OFFSET);
965 tail = readl(iommu->mmio_base + MMIO_CMD_TAIL_OFFSET);
966 next_tail = (tail + sizeof(*cmd)) % iommu->cmd_buf_size;
967 left = (head - next_tail) % iommu->cmd_buf_size;
968
969 if (left <= 2) {
970 struct iommu_cmd sync_cmd;
971 volatile u64 sem = 0;
972 int ret;
973
974 build_completion_wait(&sync_cmd, (u64)&sem);
975 copy_cmd_to_buffer(iommu, &sync_cmd, tail);
976
977 spin_unlock_irqrestore(&iommu->lock, flags);
978
979 if ((ret = wait_on_sem(&sem)) != 0)
980 return ret;
981
982 goto again;
Joerg Roedel136f78a2008-07-11 17:14:27 +0200983 }
984
Joerg Roedelac0ea6e2011-04-06 18:38:20 +0200985 copy_cmd_to_buffer(iommu, cmd, tail);
Joerg Roedel519c31b2008-08-14 19:55:15 +0200986
Joerg Roedelac0ea6e2011-04-06 18:38:20 +0200987 /* We need to sync now to make sure all commands are processed */
Joerg Roedelf1ca1512011-09-02 14:10:32 +0200988 iommu->need_sync = sync;
Joerg Roedelac0ea6e2011-04-06 18:38:20 +0200989
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200990 spin_unlock_irqrestore(&iommu->lock, flags);
991
Joerg Roedel815b33f2011-04-06 17:26:49 +0200992 return 0;
Joerg Roedel8d201962008-12-02 20:34:41 +0100993}
994
Joerg Roedelf1ca1512011-09-02 14:10:32 +0200995static int iommu_queue_command(struct amd_iommu *iommu, struct iommu_cmd *cmd)
996{
997 return iommu_queue_command_sync(iommu, cmd, true);
998}
999
Joerg Roedel8d201962008-12-02 20:34:41 +01001000/*
1001 * This function queues a completion wait command into the command
1002 * buffer of an IOMMU
1003 */
Joerg Roedel8d201962008-12-02 20:34:41 +01001004static int iommu_completion_wait(struct amd_iommu *iommu)
1005{
Joerg Roedel815b33f2011-04-06 17:26:49 +02001006 struct iommu_cmd cmd;
1007 volatile u64 sem = 0;
Joerg Roedelac0ea6e2011-04-06 18:38:20 +02001008 int ret;
Joerg Roedel8d201962008-12-02 20:34:41 +01001009
1010 if (!iommu->need_sync)
Joerg Roedel815b33f2011-04-06 17:26:49 +02001011 return 0;
Joerg Roedel8d201962008-12-02 20:34:41 +01001012
Joerg Roedel815b33f2011-04-06 17:26:49 +02001013 build_completion_wait(&cmd, (u64)&sem);
Joerg Roedel8d201962008-12-02 20:34:41 +01001014
Joerg Roedelf1ca1512011-09-02 14:10:32 +02001015 ret = iommu_queue_command_sync(iommu, &cmd, false);
Joerg Roedel8d201962008-12-02 20:34:41 +01001016 if (ret)
Joerg Roedel815b33f2011-04-06 17:26:49 +02001017 return ret;
Joerg Roedel8d201962008-12-02 20:34:41 +01001018
Joerg Roedelac0ea6e2011-04-06 18:38:20 +02001019 return wait_on_sem(&sem);
Joerg Roedela19ae1e2008-06-26 21:27:55 +02001020}
1021
Joerg Roedeld8c13082011-04-06 18:51:26 +02001022static int iommu_flush_dte(struct amd_iommu *iommu, u16 devid)
Joerg Roedela19ae1e2008-06-26 21:27:55 +02001023{
1024 struct iommu_cmd cmd;
1025
Joerg Roedeld8c13082011-04-06 18:51:26 +02001026 build_inv_dte(&cmd, devid);
Joerg Roedela19ae1e2008-06-26 21:27:55 +02001027
Joerg Roedeld8c13082011-04-06 18:51:26 +02001028 return iommu_queue_command(iommu, &cmd);
1029}
1030
Joerg Roedel7d0c5cc2011-04-07 08:16:10 +02001031static void iommu_flush_dte_all(struct amd_iommu *iommu)
1032{
1033 u32 devid;
1034
1035 for (devid = 0; devid <= 0xffff; ++devid)
1036 iommu_flush_dte(iommu, devid);
1037
1038 iommu_completion_wait(iommu);
Joerg Roedela19ae1e2008-06-26 21:27:55 +02001039}
1040
1041/*
Joerg Roedel7d0c5cc2011-04-07 08:16:10 +02001042 * This function uses heavy locking and may disable irqs for some time. But
1043 * this is no issue because it is only called during resume.
Joerg Roedela19ae1e2008-06-26 21:27:55 +02001044 */
Joerg Roedel7d0c5cc2011-04-07 08:16:10 +02001045static void iommu_flush_tlb_all(struct amd_iommu *iommu)
Joerg Roedela19ae1e2008-06-26 21:27:55 +02001046{
Joerg Roedel7d0c5cc2011-04-07 08:16:10 +02001047 u32 dom_id;
Joerg Roedela19ae1e2008-06-26 21:27:55 +02001048
Joerg Roedel7d0c5cc2011-04-07 08:16:10 +02001049 for (dom_id = 0; dom_id <= 0xffff; ++dom_id) {
1050 struct iommu_cmd cmd;
1051 build_inv_iommu_pages(&cmd, 0, CMD_INV_IOMMU_ALL_PAGES_ADDRESS,
1052 dom_id, 1);
1053 iommu_queue_command(iommu, &cmd);
1054 }
Joerg Roedel431b2a22008-07-11 17:14:22 +02001055
Joerg Roedel7d0c5cc2011-04-07 08:16:10 +02001056 iommu_completion_wait(iommu);
Joerg Roedela19ae1e2008-06-26 21:27:55 +02001057}
1058
Joerg Roedel58fc7f12011-04-11 11:13:24 +02001059static void iommu_flush_all(struct amd_iommu *iommu)
1060{
1061 struct iommu_cmd cmd;
1062
1063 build_inv_all(&cmd);
1064
1065 iommu_queue_command(iommu, &cmd);
1066 iommu_completion_wait(iommu);
1067}
1068
Joerg Roedel7ef27982012-06-21 16:46:04 +02001069static void iommu_flush_irt(struct amd_iommu *iommu, u16 devid)
1070{
1071 struct iommu_cmd cmd;
1072
1073 build_inv_irt(&cmd, devid);
1074
1075 iommu_queue_command(iommu, &cmd);
1076}
1077
1078static void iommu_flush_irt_all(struct amd_iommu *iommu)
1079{
1080 u32 devid;
1081
1082 for (devid = 0; devid <= MAX_DEV_TABLE_ENTRIES; devid++)
1083 iommu_flush_irt(iommu, devid);
1084
1085 iommu_completion_wait(iommu);
1086}
1087
Joerg Roedel7d0c5cc2011-04-07 08:16:10 +02001088void iommu_flush_all_caches(struct amd_iommu *iommu)
1089{
Joerg Roedel58fc7f12011-04-11 11:13:24 +02001090 if (iommu_feature(iommu, FEATURE_IA)) {
1091 iommu_flush_all(iommu);
1092 } else {
1093 iommu_flush_dte_all(iommu);
Joerg Roedel7ef27982012-06-21 16:46:04 +02001094 iommu_flush_irt_all(iommu);
Joerg Roedel58fc7f12011-04-11 11:13:24 +02001095 iommu_flush_tlb_all(iommu);
1096 }
Joerg Roedel7d0c5cc2011-04-07 08:16:10 +02001097}
1098
Joerg Roedel431b2a22008-07-11 17:14:22 +02001099/*
Joerg Roedelcb41ed82011-04-05 11:00:53 +02001100 * Command send function for flushing on-device TLB
1101 */
Joerg Roedel6c542042011-06-09 17:07:31 +02001102static int device_flush_iotlb(struct iommu_dev_data *dev_data,
1103 u64 address, size_t size)
Joerg Roedelcb41ed82011-04-05 11:00:53 +02001104{
Joerg Roedelcb41ed82011-04-05 11:00:53 +02001105 struct amd_iommu *iommu;
1106 struct iommu_cmd cmd;
Joerg Roedelcb41ed82011-04-05 11:00:53 +02001107 int qdep;
1108
Joerg Roedelea61cdd2011-06-09 12:56:30 +02001109 qdep = dev_data->ats.qdep;
1110 iommu = amd_iommu_rlookup_table[dev_data->devid];
Joerg Roedelcb41ed82011-04-05 11:00:53 +02001111
Joerg Roedelea61cdd2011-06-09 12:56:30 +02001112 build_inv_iotlb_pages(&cmd, dev_data->devid, qdep, address, size);
Joerg Roedelcb41ed82011-04-05 11:00:53 +02001113
1114 return iommu_queue_command(iommu, &cmd);
1115}
1116
1117/*
Joerg Roedel431b2a22008-07-11 17:14:22 +02001118 * Command send function for invalidating a device table entry
1119 */
Joerg Roedel6c542042011-06-09 17:07:31 +02001120static int device_flush_dte(struct iommu_dev_data *dev_data)
Joerg Roedel3fa43652009-11-26 15:04:38 +01001121{
1122 struct amd_iommu *iommu;
Joerg Roedelcb41ed82011-04-05 11:00:53 +02001123 int ret;
Joerg Roedel3fa43652009-11-26 15:04:38 +01001124
Joerg Roedel6c542042011-06-09 17:07:31 +02001125 iommu = amd_iommu_rlookup_table[dev_data->devid];
Joerg Roedel3fa43652009-11-26 15:04:38 +01001126
Joerg Roedelf62dda62011-06-09 12:55:35 +02001127 ret = iommu_flush_dte(iommu, dev_data->devid);
Joerg Roedelcb41ed82011-04-05 11:00:53 +02001128 if (ret)
1129 return ret;
1130
Joerg Roedelea61cdd2011-06-09 12:56:30 +02001131 if (dev_data->ats.enabled)
Joerg Roedel6c542042011-06-09 17:07:31 +02001132 ret = device_flush_iotlb(dev_data, 0, ~0UL);
Joerg Roedelcb41ed82011-04-05 11:00:53 +02001133
1134 return ret;
Joerg Roedel3fa43652009-11-26 15:04:38 +01001135}
1136
Joerg Roedel431b2a22008-07-11 17:14:22 +02001137/*
1138 * TLB invalidation function which is called from the mapping functions.
1139 * It invalidates a single PTE if the range to flush is within a single
1140 * page. Otherwise it flushes the whole TLB of the IOMMU.
1141 */
Joerg Roedel17b124b2011-04-06 18:01:35 +02001142static void __domain_flush_pages(struct protection_domain *domain,
1143 u64 address, size_t size, int pde)
Joerg Roedela19ae1e2008-06-26 21:27:55 +02001144{
Joerg Roedelcb41ed82011-04-05 11:00:53 +02001145 struct iommu_dev_data *dev_data;
Joerg Roedel11b64022011-04-06 11:49:28 +02001146 struct iommu_cmd cmd;
1147 int ret = 0, i;
Joerg Roedela19ae1e2008-06-26 21:27:55 +02001148
Joerg Roedel11b64022011-04-06 11:49:28 +02001149 build_inv_iommu_pages(&cmd, address, size, domain->id, pde);
Joerg Roedel999ba412008-07-03 19:35:08 +02001150
Joerg Roedel6de8ad92009-11-23 18:30:32 +01001151 for (i = 0; i < amd_iommus_present; ++i) {
1152 if (!domain->dev_iommu[i])
1153 continue;
1154
1155 /*
1156 * Devices of this domain are behind this IOMMU
1157 * We need a TLB flush
1158 */
Joerg Roedel11b64022011-04-06 11:49:28 +02001159 ret |= iommu_queue_command(amd_iommus[i], &cmd);
Joerg Roedel6de8ad92009-11-23 18:30:32 +01001160 }
1161
Joerg Roedelcb41ed82011-04-05 11:00:53 +02001162 list_for_each_entry(dev_data, &domain->dev_list, list) {
Joerg Roedelcb41ed82011-04-05 11:00:53 +02001163
Joerg Roedelea61cdd2011-06-09 12:56:30 +02001164 if (!dev_data->ats.enabled)
Joerg Roedelcb41ed82011-04-05 11:00:53 +02001165 continue;
1166
Joerg Roedel6c542042011-06-09 17:07:31 +02001167 ret |= device_flush_iotlb(dev_data, address, size);
Joerg Roedelcb41ed82011-04-05 11:00:53 +02001168 }
1169
Joerg Roedel11b64022011-04-06 11:49:28 +02001170 WARN_ON(ret);
Joerg Roedel6de8ad92009-11-23 18:30:32 +01001171}
1172
Joerg Roedel17b124b2011-04-06 18:01:35 +02001173static void domain_flush_pages(struct protection_domain *domain,
1174 u64 address, size_t size)
Joerg Roedel6de8ad92009-11-23 18:30:32 +01001175{
Joerg Roedel17b124b2011-04-06 18:01:35 +02001176 __domain_flush_pages(domain, address, size, 0);
Joerg Roedela19ae1e2008-06-26 21:27:55 +02001177}
Joerg Roedelb6c02712008-06-26 21:27:53 +02001178
Joerg Roedel1c655772008-09-04 18:40:05 +02001179/* Flush the whole IO/TLB for a given protection domain */
Joerg Roedel17b124b2011-04-06 18:01:35 +02001180static void domain_flush_tlb(struct protection_domain *domain)
Joerg Roedel1c655772008-09-04 18:40:05 +02001181{
Joerg Roedel17b124b2011-04-06 18:01:35 +02001182 __domain_flush_pages(domain, 0, CMD_INV_IOMMU_ALL_PAGES_ADDRESS, 0);
Joerg Roedel1c655772008-09-04 18:40:05 +02001183}
1184
Chris Wright42a49f92009-06-15 15:42:00 +02001185/* Flush the whole IO/TLB for a given protection domain - including PDE */
Joerg Roedel17b124b2011-04-06 18:01:35 +02001186static void domain_flush_tlb_pde(struct protection_domain *domain)
Chris Wright42a49f92009-06-15 15:42:00 +02001187{
Joerg Roedel17b124b2011-04-06 18:01:35 +02001188 __domain_flush_pages(domain, 0, CMD_INV_IOMMU_ALL_PAGES_ADDRESS, 1);
1189}
1190
1191static void domain_flush_complete(struct protection_domain *domain)
Joerg Roedelb6c02712008-06-26 21:27:53 +02001192{
1193 int i;
1194
1195 for (i = 0; i < amd_iommus_present; ++i) {
1196 if (!domain->dev_iommu[i])
1197 continue;
1198
1199 /*
1200 * Devices of this domain are behind this IOMMU
1201 * We need to wait for completion of all commands.
1202 */
1203 iommu_completion_wait(amd_iommus[i]);
1204 }
1205}
1206
Joerg Roedelb00d3bc2009-11-26 15:35:33 +01001207
Joerg Roedel43f49602008-12-02 21:01:12 +01001208/*
Joerg Roedelb00d3bc2009-11-26 15:35:33 +01001209 * This function flushes the DTEs for all devices in domain
Joerg Roedel43f49602008-12-02 21:01:12 +01001210 */
Joerg Roedel17b124b2011-04-06 18:01:35 +02001211static void domain_flush_devices(struct protection_domain *domain)
Joerg Roedelbfd1be12009-05-05 15:33:57 +02001212{
Joerg Roedelb00d3bc2009-11-26 15:35:33 +01001213 struct iommu_dev_data *dev_data;
Joerg Roedelb00d3bc2009-11-26 15:35:33 +01001214
1215 list_for_each_entry(dev_data, &domain->dev_list, list)
Joerg Roedel6c542042011-06-09 17:07:31 +02001216 device_flush_dte(dev_data);
Joerg Roedelb00d3bc2009-11-26 15:35:33 +01001217}
1218
Joerg Roedel431b2a22008-07-11 17:14:22 +02001219/****************************************************************************
1220 *
1221 * The functions below are used the create the page table mappings for
1222 * unity mapped regions.
1223 *
1224 ****************************************************************************/
1225
1226/*
Joerg Roedel308973d2009-11-24 17:43:32 +01001227 * This function is used to add another level to an IO page table. Adding
1228 * another level increases the size of the address space by 9 bits to a size up
1229 * to 64 bits.
1230 */
1231static bool increase_address_space(struct protection_domain *domain,
1232 gfp_t gfp)
1233{
1234 u64 *pte;
1235
1236 if (domain->mode == PAGE_MODE_6_LEVEL)
1237 /* address space already 64 bit large */
1238 return false;
1239
1240 pte = (void *)get_zeroed_page(gfp);
1241 if (!pte)
1242 return false;
1243
1244 *pte = PM_LEVEL_PDE(domain->mode,
1245 virt_to_phys(domain->pt_root));
1246 domain->pt_root = pte;
1247 domain->mode += 1;
1248 domain->updated = true;
1249
1250 return true;
1251}
1252
1253static u64 *alloc_pte(struct protection_domain *domain,
1254 unsigned long address,
Joerg Roedelcbb9d722010-01-15 14:41:15 +01001255 unsigned long page_size,
Joerg Roedel308973d2009-11-24 17:43:32 +01001256 u64 **pte_page,
1257 gfp_t gfp)
1258{
Joerg Roedelcbb9d722010-01-15 14:41:15 +01001259 int level, end_lvl;
Joerg Roedel308973d2009-11-24 17:43:32 +01001260 u64 *pte, *page;
Joerg Roedelcbb9d722010-01-15 14:41:15 +01001261
1262 BUG_ON(!is_power_of_2(page_size));
Joerg Roedel308973d2009-11-24 17:43:32 +01001263
1264 while (address > PM_LEVEL_SIZE(domain->mode))
1265 increase_address_space(domain, gfp);
1266
Joerg Roedelcbb9d722010-01-15 14:41:15 +01001267 level = domain->mode - 1;
1268 pte = &domain->pt_root[PM_LEVEL_INDEX(level, address)];
1269 address = PAGE_SIZE_ALIGN(address, page_size);
1270 end_lvl = PAGE_SIZE_LEVEL(page_size);
Joerg Roedel308973d2009-11-24 17:43:32 +01001271
1272 while (level > end_lvl) {
1273 if (!IOMMU_PTE_PRESENT(*pte)) {
1274 page = (u64 *)get_zeroed_page(gfp);
1275 if (!page)
1276 return NULL;
1277 *pte = PM_LEVEL_PDE(level, virt_to_phys(page));
1278 }
1279
Joerg Roedelcbb9d722010-01-15 14:41:15 +01001280 /* No level skipping support yet */
1281 if (PM_PTE_LEVEL(*pte) != level)
1282 return NULL;
1283
Joerg Roedel308973d2009-11-24 17:43:32 +01001284 level -= 1;
1285
1286 pte = IOMMU_PTE_PAGE(*pte);
1287
1288 if (pte_page && level == end_lvl)
1289 *pte_page = pte;
1290
1291 pte = &pte[PM_LEVEL_INDEX(level, address)];
1292 }
1293
1294 return pte;
1295}
1296
1297/*
1298 * This function checks if there is a PTE for a given dma address. If
1299 * there is one, it returns the pointer to it.
1300 */
Joerg Roedel24cd7722010-01-19 17:27:39 +01001301static u64 *fetch_pte(struct protection_domain *domain, unsigned long address)
Joerg Roedel308973d2009-11-24 17:43:32 +01001302{
1303 int level;
1304 u64 *pte;
1305
Joerg Roedel24cd7722010-01-19 17:27:39 +01001306 if (address > PM_LEVEL_SIZE(domain->mode))
1307 return NULL;
Joerg Roedel308973d2009-11-24 17:43:32 +01001308
Joerg Roedel24cd7722010-01-19 17:27:39 +01001309 level = domain->mode - 1;
1310 pte = &domain->pt_root[PM_LEVEL_INDEX(level, address)];
1311
1312 while (level > 0) {
1313
1314 /* Not Present */
Joerg Roedel308973d2009-11-24 17:43:32 +01001315 if (!IOMMU_PTE_PRESENT(*pte))
1316 return NULL;
1317
Joerg Roedel24cd7722010-01-19 17:27:39 +01001318 /* Large PTE */
1319 if (PM_PTE_LEVEL(*pte) == 0x07) {
1320 unsigned long pte_mask, __pte;
1321
1322 /*
1323 * If we have a series of large PTEs, make
1324 * sure to return a pointer to the first one.
1325 */
1326 pte_mask = PTE_PAGE_SIZE(*pte);
1327 pte_mask = ~((PAGE_SIZE_PTE_COUNT(pte_mask) << 3) - 1);
1328 __pte = ((unsigned long)pte) & pte_mask;
1329
1330 return (u64 *)__pte;
1331 }
1332
1333 /* No level skipping support yet */
1334 if (PM_PTE_LEVEL(*pte) != level)
1335 return NULL;
1336
Joerg Roedel308973d2009-11-24 17:43:32 +01001337 level -= 1;
1338
Joerg Roedel24cd7722010-01-19 17:27:39 +01001339 /* Walk to the next level */
Joerg Roedel308973d2009-11-24 17:43:32 +01001340 pte = IOMMU_PTE_PAGE(*pte);
1341 pte = &pte[PM_LEVEL_INDEX(level, address)];
Joerg Roedel308973d2009-11-24 17:43:32 +01001342 }
1343
1344 return pte;
1345}
1346
1347/*
Joerg Roedel431b2a22008-07-11 17:14:22 +02001348 * Generic mapping functions. It maps a physical address into a DMA
1349 * address space. It allocates the page table pages if necessary.
1350 * In the future it can be extended to a generic mapping function
1351 * supporting all features of AMD IOMMU page tables like level skipping
1352 * and full 64 bit address spaces.
1353 */
Joerg Roedel38e817f2008-12-02 17:27:52 +01001354static int iommu_map_page(struct protection_domain *dom,
1355 unsigned long bus_addr,
1356 unsigned long phys_addr,
Joerg Roedelabdc5eb2009-09-03 11:33:51 +02001357 int prot,
Joerg Roedelcbb9d722010-01-15 14:41:15 +01001358 unsigned long page_size)
Joerg Roedelbd0e5212008-06-26 21:27:56 +02001359{
Joerg Roedel8bda3092009-05-12 12:02:46 +02001360 u64 __pte, *pte;
Joerg Roedelcbb9d722010-01-15 14:41:15 +01001361 int i, count;
Joerg Roedelabdc5eb2009-09-03 11:33:51 +02001362
Joerg Roedelbad1cac2009-09-02 16:52:23 +02001363 if (!(prot & IOMMU_PROT_MASK))
Joerg Roedelbd0e5212008-06-26 21:27:56 +02001364 return -EINVAL;
1365
Joerg Roedelcbb9d722010-01-15 14:41:15 +01001366 bus_addr = PAGE_ALIGN(bus_addr);
1367 phys_addr = PAGE_ALIGN(phys_addr);
1368 count = PAGE_SIZE_PTE_COUNT(page_size);
1369 pte = alloc_pte(dom, bus_addr, page_size, NULL, GFP_KERNEL);
Joerg Roedelbd0e5212008-06-26 21:27:56 +02001370
Joerg Roedelcbb9d722010-01-15 14:41:15 +01001371 for (i = 0; i < count; ++i)
1372 if (IOMMU_PTE_PRESENT(pte[i]))
1373 return -EBUSY;
Joerg Roedelbd0e5212008-06-26 21:27:56 +02001374
Joerg Roedelcbb9d722010-01-15 14:41:15 +01001375 if (page_size > PAGE_SIZE) {
1376 __pte = PAGE_SIZE_PTE(phys_addr, page_size);
1377 __pte |= PM_LEVEL_ENC(7) | IOMMU_PTE_P | IOMMU_PTE_FC;
1378 } else
1379 __pte = phys_addr | IOMMU_PTE_P | IOMMU_PTE_FC;
1380
Joerg Roedelbd0e5212008-06-26 21:27:56 +02001381 if (prot & IOMMU_PROT_IR)
1382 __pte |= IOMMU_PTE_IR;
1383 if (prot & IOMMU_PROT_IW)
1384 __pte |= IOMMU_PTE_IW;
1385
Joerg Roedelcbb9d722010-01-15 14:41:15 +01001386 for (i = 0; i < count; ++i)
1387 pte[i] = __pte;
Joerg Roedelbd0e5212008-06-26 21:27:56 +02001388
Joerg Roedel04bfdd82009-09-02 16:00:23 +02001389 update_domain(dom);
1390
Joerg Roedelbd0e5212008-06-26 21:27:56 +02001391 return 0;
1392}
1393
Joerg Roedel24cd7722010-01-19 17:27:39 +01001394static unsigned long iommu_unmap_page(struct protection_domain *dom,
1395 unsigned long bus_addr,
1396 unsigned long page_size)
Joerg Roedeleb74ff62008-12-02 19:59:10 +01001397{
Joerg Roedel24cd7722010-01-19 17:27:39 +01001398 unsigned long long unmap_size, unmapped;
1399 u64 *pte;
Joerg Roedeleb74ff62008-12-02 19:59:10 +01001400
Joerg Roedel24cd7722010-01-19 17:27:39 +01001401 BUG_ON(!is_power_of_2(page_size));
1402
1403 unmapped = 0;
1404
1405 while (unmapped < page_size) {
1406
1407 pte = fetch_pte(dom, bus_addr);
1408
1409 if (!pte) {
1410 /*
1411 * No PTE for this address
1412 * move forward in 4kb steps
1413 */
1414 unmap_size = PAGE_SIZE;
1415 } else if (PM_PTE_LEVEL(*pte) == 0) {
1416 /* 4kb PTE found for this address */
1417 unmap_size = PAGE_SIZE;
1418 *pte = 0ULL;
1419 } else {
1420 int count, i;
1421
1422 /* Large PTE found which maps this address */
1423 unmap_size = PTE_PAGE_SIZE(*pte);
Alex Williamson60d0ca32013-06-21 14:33:19 -06001424
1425 /* Only unmap from the first pte in the page */
1426 if ((unmap_size - 1) & bus_addr)
1427 break;
Joerg Roedel24cd7722010-01-19 17:27:39 +01001428 count = PAGE_SIZE_PTE_COUNT(unmap_size);
1429 for (i = 0; i < count; i++)
1430 pte[i] = 0ULL;
1431 }
1432
1433 bus_addr = (bus_addr & ~(unmap_size - 1)) + unmap_size;
1434 unmapped += unmap_size;
1435 }
1436
Alex Williamson60d0ca32013-06-21 14:33:19 -06001437 BUG_ON(unmapped && !is_power_of_2(unmapped));
Joerg Roedel24cd7722010-01-19 17:27:39 +01001438
1439 return unmapped;
Joerg Roedeleb74ff62008-12-02 19:59:10 +01001440}
Joerg Roedeleb74ff62008-12-02 19:59:10 +01001441
Joerg Roedel431b2a22008-07-11 17:14:22 +02001442/*
1443 * This function checks if a specific unity mapping entry is needed for
1444 * this specific IOMMU.
1445 */
Joerg Roedelbd0e5212008-06-26 21:27:56 +02001446static int iommu_for_unity_map(struct amd_iommu *iommu,
1447 struct unity_map_entry *entry)
1448{
1449 u16 bdf, i;
1450
1451 for (i = entry->devid_start; i <= entry->devid_end; ++i) {
1452 bdf = amd_iommu_alias_table[i];
1453 if (amd_iommu_rlookup_table[bdf] == iommu)
1454 return 1;
1455 }
1456
1457 return 0;
1458}
1459
Joerg Roedel431b2a22008-07-11 17:14:22 +02001460/*
Joerg Roedel431b2a22008-07-11 17:14:22 +02001461 * This function actually applies the mapping to the page table of the
1462 * dma_ops domain.
1463 */
Joerg Roedelbd0e5212008-06-26 21:27:56 +02001464static int dma_ops_unity_map(struct dma_ops_domain *dma_dom,
1465 struct unity_map_entry *e)
1466{
1467 u64 addr;
1468 int ret;
1469
1470 for (addr = e->address_start; addr < e->address_end;
1471 addr += PAGE_SIZE) {
Joerg Roedelabdc5eb2009-09-03 11:33:51 +02001472 ret = iommu_map_page(&dma_dom->domain, addr, addr, e->prot,
Joerg Roedelcbb9d722010-01-15 14:41:15 +01001473 PAGE_SIZE);
Joerg Roedelbd0e5212008-06-26 21:27:56 +02001474 if (ret)
1475 return ret;
1476 /*
1477 * if unity mapping is in aperture range mark the page
1478 * as allocated in the aperture
1479 */
1480 if (addr < dma_dom->aperture_size)
Joerg Roedelc3239562009-05-12 10:56:44 +02001481 __set_bit(addr >> PAGE_SHIFT,
Joerg Roedel384de722009-05-15 12:30:05 +02001482 dma_dom->aperture[0]->bitmap);
Joerg Roedelbd0e5212008-06-26 21:27:56 +02001483 }
1484
1485 return 0;
1486}
1487
Joerg Roedel431b2a22008-07-11 17:14:22 +02001488/*
Joerg Roedel171e7b32009-11-24 17:47:56 +01001489 * Init the unity mappings for a specific IOMMU in the system
1490 *
1491 * Basically iterates over all unity mapping entries and applies them to
1492 * the default domain DMA of that IOMMU if necessary.
1493 */
1494static int iommu_init_unity_mappings(struct amd_iommu *iommu)
1495{
1496 struct unity_map_entry *entry;
1497 int ret;
1498
1499 list_for_each_entry(entry, &amd_iommu_unity_map, list) {
1500 if (!iommu_for_unity_map(iommu, entry))
1501 continue;
1502 ret = dma_ops_unity_map(iommu->default_dom, entry);
1503 if (ret)
1504 return ret;
1505 }
1506
1507 return 0;
1508}
1509
1510/*
Joerg Roedel431b2a22008-07-11 17:14:22 +02001511 * Inits the unity mappings required for a specific device
1512 */
Joerg Roedelbd0e5212008-06-26 21:27:56 +02001513static int init_unity_mappings_for_device(struct dma_ops_domain *dma_dom,
1514 u16 devid)
1515{
1516 struct unity_map_entry *e;
1517 int ret;
1518
1519 list_for_each_entry(e, &amd_iommu_unity_map, list) {
1520 if (!(devid >= e->devid_start && devid <= e->devid_end))
1521 continue;
1522 ret = dma_ops_unity_map(dma_dom, e);
1523 if (ret)
1524 return ret;
1525 }
1526
1527 return 0;
1528}
1529
Joerg Roedel431b2a22008-07-11 17:14:22 +02001530/****************************************************************************
1531 *
1532 * The next functions belong to the address allocator for the dma_ops
1533 * interface functions. They work like the allocators in the other IOMMU
1534 * drivers. Its basically a bitmap which marks the allocated pages in
1535 * the aperture. Maybe it could be enhanced in the future to a more
1536 * efficient allocator.
1537 *
1538 ****************************************************************************/
Joerg Roedeld3086442008-06-26 21:27:57 +02001539
Joerg Roedel431b2a22008-07-11 17:14:22 +02001540/*
Joerg Roedel384de722009-05-15 12:30:05 +02001541 * The address allocator core functions.
Joerg Roedel431b2a22008-07-11 17:14:22 +02001542 *
1543 * called with domain->lock held
1544 */
Joerg Roedel384de722009-05-15 12:30:05 +02001545
Joerg Roedel9cabe892009-05-18 16:38:55 +02001546/*
Joerg Roedel171e7b32009-11-24 17:47:56 +01001547 * Used to reserve address ranges in the aperture (e.g. for exclusion
1548 * ranges.
1549 */
1550static void dma_ops_reserve_addresses(struct dma_ops_domain *dom,
1551 unsigned long start_page,
1552 unsigned int pages)
1553{
1554 unsigned int i, last_page = dom->aperture_size >> PAGE_SHIFT;
1555
1556 if (start_page + pages > last_page)
1557 pages = last_page - start_page;
1558
1559 for (i = start_page; i < start_page + pages; ++i) {
1560 int index = i / APERTURE_RANGE_PAGES;
1561 int page = i % APERTURE_RANGE_PAGES;
1562 __set_bit(page, dom->aperture[index]->bitmap);
1563 }
1564}
1565
1566/*
Joerg Roedel9cabe892009-05-18 16:38:55 +02001567 * This function is used to add a new aperture range to an existing
1568 * aperture in case of dma_ops domain allocation or address allocation
1569 * failure.
1570 */
Joerg Roedel576175c2009-11-23 19:08:46 +01001571static int alloc_new_range(struct dma_ops_domain *dma_dom,
Joerg Roedel9cabe892009-05-18 16:38:55 +02001572 bool populate, gfp_t gfp)
1573{
1574 int index = dma_dom->aperture_size >> APERTURE_RANGE_SHIFT;
Joerg Roedel576175c2009-11-23 19:08:46 +01001575 struct amd_iommu *iommu;
Joerg Roedel17f5b562011-07-06 17:14:44 +02001576 unsigned long i, old_size;
Joerg Roedel9cabe892009-05-18 16:38:55 +02001577
Joerg Roedelf5e97052009-05-22 12:31:53 +02001578#ifdef CONFIG_IOMMU_STRESS
1579 populate = false;
1580#endif
1581
Joerg Roedel9cabe892009-05-18 16:38:55 +02001582 if (index >= APERTURE_MAX_RANGES)
1583 return -ENOMEM;
1584
1585 dma_dom->aperture[index] = kzalloc(sizeof(struct aperture_range), gfp);
1586 if (!dma_dom->aperture[index])
1587 return -ENOMEM;
1588
1589 dma_dom->aperture[index]->bitmap = (void *)get_zeroed_page(gfp);
1590 if (!dma_dom->aperture[index]->bitmap)
1591 goto out_free;
1592
1593 dma_dom->aperture[index]->offset = dma_dom->aperture_size;
1594
1595 if (populate) {
1596 unsigned long address = dma_dom->aperture_size;
1597 int i, num_ptes = APERTURE_RANGE_PAGES / 512;
1598 u64 *pte, *pte_page;
1599
1600 for (i = 0; i < num_ptes; ++i) {
Joerg Roedelcbb9d722010-01-15 14:41:15 +01001601 pte = alloc_pte(&dma_dom->domain, address, PAGE_SIZE,
Joerg Roedel9cabe892009-05-18 16:38:55 +02001602 &pte_page, gfp);
1603 if (!pte)
1604 goto out_free;
1605
1606 dma_dom->aperture[index]->pte_pages[i] = pte_page;
1607
1608 address += APERTURE_RANGE_SIZE / 64;
1609 }
1610 }
1611
Joerg Roedel17f5b562011-07-06 17:14:44 +02001612 old_size = dma_dom->aperture_size;
Joerg Roedel9cabe892009-05-18 16:38:55 +02001613 dma_dom->aperture_size += APERTURE_RANGE_SIZE;
1614
Joerg Roedel17f5b562011-07-06 17:14:44 +02001615 /* Reserve address range used for MSI messages */
1616 if (old_size < MSI_ADDR_BASE_LO &&
1617 dma_dom->aperture_size > MSI_ADDR_BASE_LO) {
1618 unsigned long spage;
1619 int pages;
1620
1621 pages = iommu_num_pages(MSI_ADDR_BASE_LO, 0x10000, PAGE_SIZE);
1622 spage = MSI_ADDR_BASE_LO >> PAGE_SHIFT;
1623
1624 dma_ops_reserve_addresses(dma_dom, spage, pages);
1625 }
1626
Uwe Kleine-Königb5950762010-11-01 15:38:34 -04001627 /* Initialize the exclusion range if necessary */
Joerg Roedel576175c2009-11-23 19:08:46 +01001628 for_each_iommu(iommu) {
1629 if (iommu->exclusion_start &&
1630 iommu->exclusion_start >= dma_dom->aperture[index]->offset
1631 && iommu->exclusion_start < dma_dom->aperture_size) {
1632 unsigned long startpage;
1633 int pages = iommu_num_pages(iommu->exclusion_start,
1634 iommu->exclusion_length,
1635 PAGE_SIZE);
1636 startpage = iommu->exclusion_start >> PAGE_SHIFT;
1637 dma_ops_reserve_addresses(dma_dom, startpage, pages);
1638 }
Joerg Roedel00cd1222009-05-19 09:52:40 +02001639 }
1640
1641 /*
1642 * Check for areas already mapped as present in the new aperture
1643 * range and mark those pages as reserved in the allocator. Such
1644 * mappings may already exist as a result of requested unity
1645 * mappings for devices.
1646 */
1647 for (i = dma_dom->aperture[index]->offset;
1648 i < dma_dom->aperture_size;
1649 i += PAGE_SIZE) {
Joerg Roedel24cd7722010-01-19 17:27:39 +01001650 u64 *pte = fetch_pte(&dma_dom->domain, i);
Joerg Roedel00cd1222009-05-19 09:52:40 +02001651 if (!pte || !IOMMU_PTE_PRESENT(*pte))
1652 continue;
1653
Joerg Roedelfcd08612011-10-11 17:41:32 +02001654 dma_ops_reserve_addresses(dma_dom, i >> PAGE_SHIFT, 1);
Joerg Roedel00cd1222009-05-19 09:52:40 +02001655 }
1656
Joerg Roedel04bfdd82009-09-02 16:00:23 +02001657 update_domain(&dma_dom->domain);
1658
Joerg Roedel9cabe892009-05-18 16:38:55 +02001659 return 0;
1660
1661out_free:
Joerg Roedel04bfdd82009-09-02 16:00:23 +02001662 update_domain(&dma_dom->domain);
1663
Joerg Roedel9cabe892009-05-18 16:38:55 +02001664 free_page((unsigned long)dma_dom->aperture[index]->bitmap);
1665
1666 kfree(dma_dom->aperture[index]);
1667 dma_dom->aperture[index] = NULL;
1668
1669 return -ENOMEM;
1670}
1671
Joerg Roedel384de722009-05-15 12:30:05 +02001672static unsigned long dma_ops_area_alloc(struct device *dev,
1673 struct dma_ops_domain *dom,
1674 unsigned int pages,
1675 unsigned long align_mask,
1676 u64 dma_mask,
1677 unsigned long start)
1678{
Joerg Roedel803b8cb42009-05-18 15:32:48 +02001679 unsigned long next_bit = dom->next_address % APERTURE_RANGE_SIZE;
Joerg Roedel384de722009-05-15 12:30:05 +02001680 int max_index = dom->aperture_size >> APERTURE_RANGE_SHIFT;
1681 int i = start >> APERTURE_RANGE_SHIFT;
1682 unsigned long boundary_size;
1683 unsigned long address = -1;
1684 unsigned long limit;
1685
Joerg Roedel803b8cb42009-05-18 15:32:48 +02001686 next_bit >>= PAGE_SHIFT;
1687
Joerg Roedel384de722009-05-15 12:30:05 +02001688 boundary_size = ALIGN(dma_get_seg_boundary(dev) + 1,
1689 PAGE_SIZE) >> PAGE_SHIFT;
1690
1691 for (;i < max_index; ++i) {
1692 unsigned long offset = dom->aperture[i]->offset >> PAGE_SHIFT;
1693
1694 if (dom->aperture[i]->offset >= dma_mask)
1695 break;
1696
1697 limit = iommu_device_max_index(APERTURE_RANGE_PAGES, offset,
1698 dma_mask >> PAGE_SHIFT);
1699
1700 address = iommu_area_alloc(dom->aperture[i]->bitmap,
1701 limit, next_bit, pages, 0,
1702 boundary_size, align_mask);
1703 if (address != -1) {
1704 address = dom->aperture[i]->offset +
1705 (address << PAGE_SHIFT);
Joerg Roedel803b8cb42009-05-18 15:32:48 +02001706 dom->next_address = address + (pages << PAGE_SHIFT);
Joerg Roedel384de722009-05-15 12:30:05 +02001707 break;
1708 }
1709
1710 next_bit = 0;
1711 }
1712
1713 return address;
1714}
1715
Joerg Roedeld3086442008-06-26 21:27:57 +02001716static unsigned long dma_ops_alloc_addresses(struct device *dev,
1717 struct dma_ops_domain *dom,
Joerg Roedel6d4f3432008-09-04 19:18:02 +02001718 unsigned int pages,
Joerg Roedel832a90c2008-09-18 15:54:23 +02001719 unsigned long align_mask,
1720 u64 dma_mask)
Joerg Roedeld3086442008-06-26 21:27:57 +02001721{
Joerg Roedeld3086442008-06-26 21:27:57 +02001722 unsigned long address;
Joerg Roedeld3086442008-06-26 21:27:57 +02001723
Joerg Roedelfe16f082009-05-22 12:27:53 +02001724#ifdef CONFIG_IOMMU_STRESS
1725 dom->next_address = 0;
1726 dom->need_flush = true;
1727#endif
Joerg Roedeld3086442008-06-26 21:27:57 +02001728
Joerg Roedel384de722009-05-15 12:30:05 +02001729 address = dma_ops_area_alloc(dev, dom, pages, align_mask,
Joerg Roedel803b8cb42009-05-18 15:32:48 +02001730 dma_mask, dom->next_address);
Joerg Roedeld3086442008-06-26 21:27:57 +02001731
Joerg Roedel1c655772008-09-04 18:40:05 +02001732 if (address == -1) {
Joerg Roedel803b8cb42009-05-18 15:32:48 +02001733 dom->next_address = 0;
Joerg Roedel384de722009-05-15 12:30:05 +02001734 address = dma_ops_area_alloc(dev, dom, pages, align_mask,
1735 dma_mask, 0);
Joerg Roedel1c655772008-09-04 18:40:05 +02001736 dom->need_flush = true;
1737 }
Joerg Roedeld3086442008-06-26 21:27:57 +02001738
Joerg Roedel384de722009-05-15 12:30:05 +02001739 if (unlikely(address == -1))
FUJITA Tomonori8fd524b2009-11-15 21:19:53 +09001740 address = DMA_ERROR_CODE;
Joerg Roedeld3086442008-06-26 21:27:57 +02001741
1742 WARN_ON((address + (PAGE_SIZE*pages)) > dom->aperture_size);
1743
1744 return address;
1745}
1746
Joerg Roedel431b2a22008-07-11 17:14:22 +02001747/*
1748 * The address free function.
1749 *
1750 * called with domain->lock held
1751 */
Joerg Roedeld3086442008-06-26 21:27:57 +02001752static void dma_ops_free_addresses(struct dma_ops_domain *dom,
1753 unsigned long address,
1754 unsigned int pages)
1755{
Joerg Roedel384de722009-05-15 12:30:05 +02001756 unsigned i = address >> APERTURE_RANGE_SHIFT;
1757 struct aperture_range *range = dom->aperture[i];
Joerg Roedel80be3082008-11-06 14:59:05 +01001758
Joerg Roedel384de722009-05-15 12:30:05 +02001759 BUG_ON(i >= APERTURE_MAX_RANGES || range == NULL);
1760
Joerg Roedel47bccd62009-05-22 12:40:54 +02001761#ifdef CONFIG_IOMMU_STRESS
1762 if (i < 4)
1763 return;
1764#endif
1765
Joerg Roedel803b8cb42009-05-18 15:32:48 +02001766 if (address >= dom->next_address)
Joerg Roedel80be3082008-11-06 14:59:05 +01001767 dom->need_flush = true;
Joerg Roedel384de722009-05-15 12:30:05 +02001768
1769 address = (address % APERTURE_RANGE_SIZE) >> PAGE_SHIFT;
Joerg Roedel803b8cb42009-05-18 15:32:48 +02001770
Akinobu Mitaa66022c2009-12-15 16:48:28 -08001771 bitmap_clear(range->bitmap, address, pages);
Joerg Roedel384de722009-05-15 12:30:05 +02001772
Joerg Roedeld3086442008-06-26 21:27:57 +02001773}
1774
Joerg Roedel431b2a22008-07-11 17:14:22 +02001775/****************************************************************************
1776 *
1777 * The next functions belong to the domain allocation. A domain is
1778 * allocated for every IOMMU as the default domain. If device isolation
1779 * is enabled, every device get its own domain. The most important thing
1780 * about domains is the page table mapping the DMA address space they
1781 * contain.
1782 *
1783 ****************************************************************************/
1784
Joerg Roedelaeb26f52009-11-20 16:44:01 +01001785/*
1786 * This function adds a protection domain to the global protection domain list
1787 */
1788static void add_domain_to_list(struct protection_domain *domain)
1789{
1790 unsigned long flags;
1791
1792 spin_lock_irqsave(&amd_iommu_pd_lock, flags);
1793 list_add(&domain->list, &amd_iommu_pd_list);
1794 spin_unlock_irqrestore(&amd_iommu_pd_lock, flags);
1795}
1796
1797/*
1798 * This function removes a protection domain to the global
1799 * protection domain list
1800 */
1801static void del_domain_from_list(struct protection_domain *domain)
1802{
1803 unsigned long flags;
1804
1805 spin_lock_irqsave(&amd_iommu_pd_lock, flags);
1806 list_del(&domain->list);
1807 spin_unlock_irqrestore(&amd_iommu_pd_lock, flags);
1808}
1809
Joerg Roedelec487d12008-06-26 21:27:58 +02001810static u16 domain_id_alloc(void)
1811{
1812 unsigned long flags;
1813 int id;
1814
1815 write_lock_irqsave(&amd_iommu_devtable_lock, flags);
1816 id = find_first_zero_bit(amd_iommu_pd_alloc_bitmap, MAX_DOMAIN_ID);
1817 BUG_ON(id == 0);
1818 if (id > 0 && id < MAX_DOMAIN_ID)
1819 __set_bit(id, amd_iommu_pd_alloc_bitmap);
1820 else
1821 id = 0;
1822 write_unlock_irqrestore(&amd_iommu_devtable_lock, flags);
1823
1824 return id;
1825}
1826
Joerg Roedela2acfb72008-12-02 18:28:53 +01001827static void domain_id_free(int id)
1828{
1829 unsigned long flags;
1830
1831 write_lock_irqsave(&amd_iommu_devtable_lock, flags);
1832 if (id > 0 && id < MAX_DOMAIN_ID)
1833 __clear_bit(id, amd_iommu_pd_alloc_bitmap);
1834 write_unlock_irqrestore(&amd_iommu_devtable_lock, flags);
1835}
Joerg Roedela2acfb72008-12-02 18:28:53 +01001836
Joerg Roedel5c34c402013-06-20 20:22:58 +02001837#define DEFINE_FREE_PT_FN(LVL, FN) \
1838static void free_pt_##LVL (unsigned long __pt) \
1839{ \
1840 unsigned long p; \
1841 u64 *pt; \
1842 int i; \
1843 \
1844 pt = (u64 *)__pt; \
1845 \
1846 for (i = 0; i < 512; ++i) { \
1847 if (!IOMMU_PTE_PRESENT(pt[i])) \
1848 continue; \
1849 \
1850 p = (unsigned long)IOMMU_PTE_PAGE(pt[i]); \
1851 FN(p); \
1852 } \
1853 free_page((unsigned long)pt); \
1854}
1855
1856DEFINE_FREE_PT_FN(l2, free_page)
1857DEFINE_FREE_PT_FN(l3, free_pt_l2)
1858DEFINE_FREE_PT_FN(l4, free_pt_l3)
1859DEFINE_FREE_PT_FN(l5, free_pt_l4)
1860DEFINE_FREE_PT_FN(l6, free_pt_l5)
1861
Joerg Roedel86db2e52008-12-02 18:20:21 +01001862static void free_pagetable(struct protection_domain *domain)
Joerg Roedelec487d12008-06-26 21:27:58 +02001863{
Joerg Roedel5c34c402013-06-20 20:22:58 +02001864 unsigned long root = (unsigned long)domain->pt_root;
Joerg Roedelec487d12008-06-26 21:27:58 +02001865
Joerg Roedel5c34c402013-06-20 20:22:58 +02001866 switch (domain->mode) {
1867 case PAGE_MODE_NONE:
1868 break;
1869 case PAGE_MODE_1_LEVEL:
1870 free_page(root);
1871 break;
1872 case PAGE_MODE_2_LEVEL:
1873 free_pt_l2(root);
1874 break;
1875 case PAGE_MODE_3_LEVEL:
1876 free_pt_l3(root);
1877 break;
1878 case PAGE_MODE_4_LEVEL:
1879 free_pt_l4(root);
1880 break;
1881 case PAGE_MODE_5_LEVEL:
1882 free_pt_l5(root);
1883 break;
1884 case PAGE_MODE_6_LEVEL:
1885 free_pt_l6(root);
1886 break;
1887 default:
1888 BUG();
Joerg Roedelec487d12008-06-26 21:27:58 +02001889 }
Joerg Roedelec487d12008-06-26 21:27:58 +02001890}
1891
Joerg Roedelb16137b2011-11-21 16:50:23 +01001892static void free_gcr3_tbl_level1(u64 *tbl)
1893{
1894 u64 *ptr;
1895 int i;
1896
1897 for (i = 0; i < 512; ++i) {
1898 if (!(tbl[i] & GCR3_VALID))
1899 continue;
1900
1901 ptr = __va(tbl[i] & PAGE_MASK);
1902
1903 free_page((unsigned long)ptr);
1904 }
1905}
1906
1907static void free_gcr3_tbl_level2(u64 *tbl)
1908{
1909 u64 *ptr;
1910 int i;
1911
1912 for (i = 0; i < 512; ++i) {
1913 if (!(tbl[i] & GCR3_VALID))
1914 continue;
1915
1916 ptr = __va(tbl[i] & PAGE_MASK);
1917
1918 free_gcr3_tbl_level1(ptr);
1919 }
1920}
1921
Joerg Roedel52815b72011-11-17 17:24:28 +01001922static void free_gcr3_table(struct protection_domain *domain)
1923{
Joerg Roedelb16137b2011-11-21 16:50:23 +01001924 if (domain->glx == 2)
1925 free_gcr3_tbl_level2(domain->gcr3_tbl);
1926 else if (domain->glx == 1)
1927 free_gcr3_tbl_level1(domain->gcr3_tbl);
1928 else if (domain->glx != 0)
1929 BUG();
1930
Joerg Roedel52815b72011-11-17 17:24:28 +01001931 free_page((unsigned long)domain->gcr3_tbl);
1932}
1933
Joerg Roedel431b2a22008-07-11 17:14:22 +02001934/*
1935 * Free a domain, only used if something went wrong in the
1936 * allocation path and we need to free an already allocated page table
1937 */
Joerg Roedelec487d12008-06-26 21:27:58 +02001938static void dma_ops_domain_free(struct dma_ops_domain *dom)
1939{
Joerg Roedel384de722009-05-15 12:30:05 +02001940 int i;
1941
Joerg Roedelec487d12008-06-26 21:27:58 +02001942 if (!dom)
1943 return;
1944
Joerg Roedelaeb26f52009-11-20 16:44:01 +01001945 del_domain_from_list(&dom->domain);
1946
Joerg Roedel86db2e52008-12-02 18:20:21 +01001947 free_pagetable(&dom->domain);
Joerg Roedelec487d12008-06-26 21:27:58 +02001948
Joerg Roedel384de722009-05-15 12:30:05 +02001949 for (i = 0; i < APERTURE_MAX_RANGES; ++i) {
1950 if (!dom->aperture[i])
1951 continue;
1952 free_page((unsigned long)dom->aperture[i]->bitmap);
1953 kfree(dom->aperture[i]);
1954 }
Joerg Roedelec487d12008-06-26 21:27:58 +02001955
1956 kfree(dom);
1957}
1958
Joerg Roedel431b2a22008-07-11 17:14:22 +02001959/*
1960 * Allocates a new protection domain usable for the dma_ops functions.
Uwe Kleine-Königb5950762010-11-01 15:38:34 -04001961 * It also initializes the page table and the address allocator data
Joerg Roedel431b2a22008-07-11 17:14:22 +02001962 * structures required for the dma_ops interface
1963 */
Joerg Roedel87a64d52009-11-24 17:26:43 +01001964static struct dma_ops_domain *dma_ops_domain_alloc(void)
Joerg Roedelec487d12008-06-26 21:27:58 +02001965{
1966 struct dma_ops_domain *dma_dom;
Joerg Roedelec487d12008-06-26 21:27:58 +02001967
1968 dma_dom = kzalloc(sizeof(struct dma_ops_domain), GFP_KERNEL);
1969 if (!dma_dom)
1970 return NULL;
1971
1972 spin_lock_init(&dma_dom->domain.lock);
1973
1974 dma_dom->domain.id = domain_id_alloc();
1975 if (dma_dom->domain.id == 0)
1976 goto free_dma_dom;
Joerg Roedel7c392cb2009-11-26 11:13:32 +01001977 INIT_LIST_HEAD(&dma_dom->domain.dev_list);
Joerg Roedel8f7a0172009-09-02 16:55:24 +02001978 dma_dom->domain.mode = PAGE_MODE_2_LEVEL;
Joerg Roedelec487d12008-06-26 21:27:58 +02001979 dma_dom->domain.pt_root = (void *)get_zeroed_page(GFP_KERNEL);
Joerg Roedel9fdb19d2008-12-02 17:46:25 +01001980 dma_dom->domain.flags = PD_DMA_OPS_MASK;
Joerg Roedelec487d12008-06-26 21:27:58 +02001981 dma_dom->domain.priv = dma_dom;
1982 if (!dma_dom->domain.pt_root)
1983 goto free_dma_dom;
Joerg Roedelec487d12008-06-26 21:27:58 +02001984
Joerg Roedel1c655772008-09-04 18:40:05 +02001985 dma_dom->need_flush = false;
Joerg Roedelbd60b732008-09-11 10:24:48 +02001986 dma_dom->target_dev = 0xffff;
Joerg Roedel1c655772008-09-04 18:40:05 +02001987
Joerg Roedelaeb26f52009-11-20 16:44:01 +01001988 add_domain_to_list(&dma_dom->domain);
1989
Joerg Roedel576175c2009-11-23 19:08:46 +01001990 if (alloc_new_range(dma_dom, true, GFP_KERNEL))
Joerg Roedelec487d12008-06-26 21:27:58 +02001991 goto free_dma_dom;
Joerg Roedelec487d12008-06-26 21:27:58 +02001992
Joerg Roedel431b2a22008-07-11 17:14:22 +02001993 /*
Joerg Roedelec487d12008-06-26 21:27:58 +02001994 * mark the first page as allocated so we never return 0 as
1995 * a valid dma-address. So we can use 0 as error value
Joerg Roedel431b2a22008-07-11 17:14:22 +02001996 */
Joerg Roedel384de722009-05-15 12:30:05 +02001997 dma_dom->aperture[0]->bitmap[0] = 1;
Joerg Roedel803b8cb42009-05-18 15:32:48 +02001998 dma_dom->next_address = 0;
Joerg Roedelec487d12008-06-26 21:27:58 +02001999
Joerg Roedelec487d12008-06-26 21:27:58 +02002000
2001 return dma_dom;
2002
2003free_dma_dom:
2004 dma_ops_domain_free(dma_dom);
2005
2006 return NULL;
2007}
2008
Joerg Roedel431b2a22008-07-11 17:14:22 +02002009/*
Joerg Roedel5b28df62008-12-02 17:49:42 +01002010 * little helper function to check whether a given protection domain is a
2011 * dma_ops domain
2012 */
2013static bool dma_ops_domain(struct protection_domain *domain)
2014{
2015 return domain->flags & PD_DMA_OPS_MASK;
2016}
2017
Joerg Roedelfd7b5532011-04-05 15:31:08 +02002018static void set_dte_entry(u16 devid, struct protection_domain *domain, bool ats)
Joerg Roedelb20ac0d2008-06-26 21:27:59 +02002019{
Joerg Roedel132bd682011-11-17 14:18:46 +01002020 u64 pte_root = 0;
Joerg Roedelee6c2862011-11-09 12:06:03 +01002021 u64 flags = 0;
Joerg Roedel863c74e2008-12-02 17:56:36 +01002022
Joerg Roedel132bd682011-11-17 14:18:46 +01002023 if (domain->mode != PAGE_MODE_NONE)
2024 pte_root = virt_to_phys(domain->pt_root);
2025
Joerg Roedel38ddf412008-09-11 10:38:32 +02002026 pte_root |= (domain->mode & DEV_ENTRY_MODE_MASK)
2027 << DEV_ENTRY_MODE_SHIFT;
2028 pte_root |= IOMMU_PTE_IR | IOMMU_PTE_IW | IOMMU_PTE_P | IOMMU_PTE_TV;
Joerg Roedelb20ac0d2008-06-26 21:27:59 +02002029
Joerg Roedelee6c2862011-11-09 12:06:03 +01002030 flags = amd_iommu_dev_table[devid].data[1];
2031
Joerg Roedelfd7b5532011-04-05 15:31:08 +02002032 if (ats)
2033 flags |= DTE_FLAG_IOTLB;
2034
Joerg Roedel52815b72011-11-17 17:24:28 +01002035 if (domain->flags & PD_IOMMUV2_MASK) {
2036 u64 gcr3 = __pa(domain->gcr3_tbl);
2037 u64 glx = domain->glx;
2038 u64 tmp;
2039
2040 pte_root |= DTE_FLAG_GV;
2041 pte_root |= (glx & DTE_GLX_MASK) << DTE_GLX_SHIFT;
2042
2043 /* First mask out possible old values for GCR3 table */
2044 tmp = DTE_GCR3_VAL_B(~0ULL) << DTE_GCR3_SHIFT_B;
2045 flags &= ~tmp;
2046
2047 tmp = DTE_GCR3_VAL_C(~0ULL) << DTE_GCR3_SHIFT_C;
2048 flags &= ~tmp;
2049
2050 /* Encode GCR3 table into DTE */
2051 tmp = DTE_GCR3_VAL_A(gcr3) << DTE_GCR3_SHIFT_A;
2052 pte_root |= tmp;
2053
2054 tmp = DTE_GCR3_VAL_B(gcr3) << DTE_GCR3_SHIFT_B;
2055 flags |= tmp;
2056
2057 tmp = DTE_GCR3_VAL_C(gcr3) << DTE_GCR3_SHIFT_C;
2058 flags |= tmp;
2059 }
2060
Joerg Roedelee6c2862011-11-09 12:06:03 +01002061 flags &= ~(0xffffUL);
2062 flags |= domain->id;
2063
2064 amd_iommu_dev_table[devid].data[1] = flags;
2065 amd_iommu_dev_table[devid].data[0] = pte_root;
Joerg Roedelb20ac0d2008-06-26 21:27:59 +02002066}
2067
Joerg Roedel15898bb2009-11-24 15:39:42 +01002068static void clear_dte_entry(u16 devid)
Joerg Roedel355bf552008-12-08 12:02:41 +01002069{
Joerg Roedel355bf552008-12-08 12:02:41 +01002070 /* remove entry from the device table seen by the hardware */
2071 amd_iommu_dev_table[devid].data[0] = IOMMU_PTE_P | IOMMU_PTE_TV;
2072 amd_iommu_dev_table[devid].data[1] = 0;
Joerg Roedel355bf552008-12-08 12:02:41 +01002073
Joerg Roedelc5cca142009-10-09 18:31:20 +02002074 amd_iommu_apply_erratum_63(devid);
Joerg Roedel7f760dd2009-11-26 14:49:59 +01002075}
2076
Joerg Roedelec9e79e2011-06-09 17:25:50 +02002077static void do_attach(struct iommu_dev_data *dev_data,
2078 struct protection_domain *domain)
Joerg Roedel7f760dd2009-11-26 14:49:59 +01002079{
Joerg Roedel7f760dd2009-11-26 14:49:59 +01002080 struct amd_iommu *iommu;
Joerg Roedelec9e79e2011-06-09 17:25:50 +02002081 bool ats;
Joerg Roedel7f760dd2009-11-26 14:49:59 +01002082
Joerg Roedelec9e79e2011-06-09 17:25:50 +02002083 iommu = amd_iommu_rlookup_table[dev_data->devid];
2084 ats = dev_data->ats.enabled;
Joerg Roedel7f760dd2009-11-26 14:49:59 +01002085
2086 /* Update data structures */
2087 dev_data->domain = domain;
2088 list_add(&dev_data->list, &domain->dev_list);
Joerg Roedelf62dda62011-06-09 12:55:35 +02002089 set_dte_entry(dev_data->devid, domain, ats);
Joerg Roedel7f760dd2009-11-26 14:49:59 +01002090
2091 /* Do reference counting */
2092 domain->dev_iommu[iommu->index] += 1;
2093 domain->dev_cnt += 1;
2094
2095 /* Flush the DTE entry */
Joerg Roedel6c542042011-06-09 17:07:31 +02002096 device_flush_dte(dev_data);
Joerg Roedel7f760dd2009-11-26 14:49:59 +01002097}
2098
Joerg Roedelec9e79e2011-06-09 17:25:50 +02002099static void do_detach(struct iommu_dev_data *dev_data)
Joerg Roedel7f760dd2009-11-26 14:49:59 +01002100{
Joerg Roedel7f760dd2009-11-26 14:49:59 +01002101 struct amd_iommu *iommu;
Joerg Roedel7f760dd2009-11-26 14:49:59 +01002102
Joerg Roedelec9e79e2011-06-09 17:25:50 +02002103 iommu = amd_iommu_rlookup_table[dev_data->devid];
Joerg Roedelc5cca142009-10-09 18:31:20 +02002104
Joerg Roedelc4596112009-11-20 14:57:32 +01002105 /* decrease reference counters */
Joerg Roedel7f760dd2009-11-26 14:49:59 +01002106 dev_data->domain->dev_iommu[iommu->index] -= 1;
2107 dev_data->domain->dev_cnt -= 1;
Joerg Roedel355bf552008-12-08 12:02:41 +01002108
Joerg Roedel7f760dd2009-11-26 14:49:59 +01002109 /* Update data structures */
2110 dev_data->domain = NULL;
2111 list_del(&dev_data->list);
Joerg Roedelf62dda62011-06-09 12:55:35 +02002112 clear_dte_entry(dev_data->devid);
Joerg Roedel7f760dd2009-11-26 14:49:59 +01002113
2114 /* Flush the DTE entry */
Joerg Roedel6c542042011-06-09 17:07:31 +02002115 device_flush_dte(dev_data);
Joerg Roedel15898bb2009-11-24 15:39:42 +01002116}
2117
2118/*
2119 * If a device is not yet associated with a domain, this function does
2120 * assigns it visible for the hardware
2121 */
Joerg Roedelec9e79e2011-06-09 17:25:50 +02002122static int __attach_device(struct iommu_dev_data *dev_data,
Joerg Roedel15898bb2009-11-24 15:39:42 +01002123 struct protection_domain *domain)
2124{
Julia Lawall84fe6c12010-05-27 12:31:51 +02002125 int ret;
Joerg Roedel657cbb62009-11-23 15:26:46 +01002126
Joerg Roedel15898bb2009-11-24 15:39:42 +01002127 /* lock domain */
2128 spin_lock(&domain->lock);
2129
Joerg Roedel71f77582011-06-09 19:03:15 +02002130 if (dev_data->alias_data != NULL) {
2131 struct iommu_dev_data *alias_data = dev_data->alias_data;
Joerg Roedel15898bb2009-11-24 15:39:42 +01002132
Joerg Roedel2b02b092011-06-09 17:48:39 +02002133 /* Some sanity checks */
2134 ret = -EBUSY;
2135 if (alias_data->domain != NULL &&
2136 alias_data->domain != domain)
2137 goto out_unlock;
Joerg Roedel15898bb2009-11-24 15:39:42 +01002138
Joerg Roedel2b02b092011-06-09 17:48:39 +02002139 if (dev_data->domain != NULL &&
2140 dev_data->domain != domain)
2141 goto out_unlock;
2142
2143 /* Do real assignment */
Joerg Roedel7f760dd2009-11-26 14:49:59 +01002144 if (alias_data->domain == NULL)
Joerg Roedelec9e79e2011-06-09 17:25:50 +02002145 do_attach(alias_data, domain);
Joerg Roedel24100052009-11-25 15:59:57 +01002146
2147 atomic_inc(&alias_data->bind);
Joerg Roedel657cbb62009-11-23 15:26:46 +01002148 }
Joerg Roedel15898bb2009-11-24 15:39:42 +01002149
Joerg Roedel7f760dd2009-11-26 14:49:59 +01002150 if (dev_data->domain == NULL)
Joerg Roedelec9e79e2011-06-09 17:25:50 +02002151 do_attach(dev_data, domain);
Joerg Roedel15898bb2009-11-24 15:39:42 +01002152
Joerg Roedel24100052009-11-25 15:59:57 +01002153 atomic_inc(&dev_data->bind);
2154
Julia Lawall84fe6c12010-05-27 12:31:51 +02002155 ret = 0;
2156
2157out_unlock:
2158
Joerg Roedel355bf552008-12-08 12:02:41 +01002159 /* ready */
2160 spin_unlock(&domain->lock);
Joerg Roedel21129f72009-09-01 11:59:42 +02002161
Julia Lawall84fe6c12010-05-27 12:31:51 +02002162 return ret;
Joerg Roedel15898bb2009-11-24 15:39:42 +01002163}
2164
Joerg Roedel52815b72011-11-17 17:24:28 +01002165
2166static void pdev_iommuv2_disable(struct pci_dev *pdev)
2167{
2168 pci_disable_ats(pdev);
2169 pci_disable_pri(pdev);
2170 pci_disable_pasid(pdev);
2171}
2172
Joerg Roedel6a113dd2011-12-01 12:04:58 +01002173/* FIXME: Change generic reset-function to do the same */
2174static int pri_reset_while_enabled(struct pci_dev *pdev)
2175{
2176 u16 control;
2177 int pos;
2178
Joerg Roedel46277b72011-12-07 14:34:02 +01002179 pos = pci_find_ext_capability(pdev, PCI_EXT_CAP_ID_PRI);
Joerg Roedel6a113dd2011-12-01 12:04:58 +01002180 if (!pos)
2181 return -EINVAL;
2182
Joerg Roedel46277b72011-12-07 14:34:02 +01002183 pci_read_config_word(pdev, pos + PCI_PRI_CTRL, &control);
2184 control |= PCI_PRI_CTRL_RESET;
2185 pci_write_config_word(pdev, pos + PCI_PRI_CTRL, control);
Joerg Roedel6a113dd2011-12-01 12:04:58 +01002186
2187 return 0;
2188}
2189
Joerg Roedel52815b72011-11-17 17:24:28 +01002190static int pdev_iommuv2_enable(struct pci_dev *pdev)
2191{
Joerg Roedel6a113dd2011-12-01 12:04:58 +01002192 bool reset_enable;
2193 int reqs, ret;
2194
2195 /* FIXME: Hardcode number of outstanding requests for now */
2196 reqs = 32;
2197 if (pdev_pri_erratum(pdev, AMD_PRI_DEV_ERRATUM_LIMIT_REQ_ONE))
2198 reqs = 1;
2199 reset_enable = pdev_pri_erratum(pdev, AMD_PRI_DEV_ERRATUM_ENABLE_RESET);
Joerg Roedel52815b72011-11-17 17:24:28 +01002200
2201 /* Only allow access to user-accessible pages */
2202 ret = pci_enable_pasid(pdev, 0);
2203 if (ret)
2204 goto out_err;
2205
2206 /* First reset the PRI state of the device */
2207 ret = pci_reset_pri(pdev);
2208 if (ret)
2209 goto out_err;
2210
Joerg Roedel6a113dd2011-12-01 12:04:58 +01002211 /* Enable PRI */
2212 ret = pci_enable_pri(pdev, reqs);
Joerg Roedel52815b72011-11-17 17:24:28 +01002213 if (ret)
2214 goto out_err;
2215
Joerg Roedel6a113dd2011-12-01 12:04:58 +01002216 if (reset_enable) {
2217 ret = pri_reset_while_enabled(pdev);
2218 if (ret)
2219 goto out_err;
2220 }
2221
Joerg Roedel52815b72011-11-17 17:24:28 +01002222 ret = pci_enable_ats(pdev, PAGE_SHIFT);
2223 if (ret)
2224 goto out_err;
2225
2226 return 0;
2227
2228out_err:
2229 pci_disable_pri(pdev);
2230 pci_disable_pasid(pdev);
2231
2232 return ret;
2233}
2234
Joerg Roedelc99afa22011-11-21 18:19:25 +01002235/* FIXME: Move this to PCI code */
Joerg Roedela3b93122012-04-12 12:49:26 +02002236#define PCI_PRI_TLP_OFF (1 << 15)
Joerg Roedelc99afa22011-11-21 18:19:25 +01002237
Joerg Roedel98f1ad22012-07-06 13:28:37 +02002238static bool pci_pri_tlp_required(struct pci_dev *pdev)
Joerg Roedelc99afa22011-11-21 18:19:25 +01002239{
Joerg Roedela3b93122012-04-12 12:49:26 +02002240 u16 status;
Joerg Roedelc99afa22011-11-21 18:19:25 +01002241 int pos;
2242
Joerg Roedel46277b72011-12-07 14:34:02 +01002243 pos = pci_find_ext_capability(pdev, PCI_EXT_CAP_ID_PRI);
Joerg Roedelc99afa22011-11-21 18:19:25 +01002244 if (!pos)
2245 return false;
2246
Joerg Roedela3b93122012-04-12 12:49:26 +02002247 pci_read_config_word(pdev, pos + PCI_PRI_STATUS, &status);
Joerg Roedelc99afa22011-11-21 18:19:25 +01002248
Joerg Roedela3b93122012-04-12 12:49:26 +02002249 return (status & PCI_PRI_TLP_OFF) ? true : false;
Joerg Roedelc99afa22011-11-21 18:19:25 +01002250}
2251
Joerg Roedel15898bb2009-11-24 15:39:42 +01002252/*
Frank Arnolddf805ab2012-08-27 19:21:04 +02002253 * If a device is not yet associated with a domain, this function
Joerg Roedel15898bb2009-11-24 15:39:42 +01002254 * assigns it visible for the hardware
2255 */
2256static int attach_device(struct device *dev,
2257 struct protection_domain *domain)
2258{
Joerg Roedelfd7b5532011-04-05 15:31:08 +02002259 struct pci_dev *pdev = to_pci_dev(dev);
Joerg Roedelea61cdd2011-06-09 12:56:30 +02002260 struct iommu_dev_data *dev_data;
Joerg Roedel15898bb2009-11-24 15:39:42 +01002261 unsigned long flags;
2262 int ret;
2263
Joerg Roedelea61cdd2011-06-09 12:56:30 +02002264 dev_data = get_dev_data(dev);
2265
Joerg Roedel52815b72011-11-17 17:24:28 +01002266 if (domain->flags & PD_IOMMUV2_MASK) {
2267 if (!dev_data->iommu_v2 || !dev_data->passthrough)
2268 return -EINVAL;
2269
2270 if (pdev_iommuv2_enable(pdev) != 0)
2271 return -EINVAL;
2272
2273 dev_data->ats.enabled = true;
2274 dev_data->ats.qdep = pci_ats_queue_depth(pdev);
Joerg Roedelc99afa22011-11-21 18:19:25 +01002275 dev_data->pri_tlp = pci_pri_tlp_required(pdev);
Joerg Roedel52815b72011-11-17 17:24:28 +01002276 } else if (amd_iommu_iotlb_sup &&
2277 pci_enable_ats(pdev, PAGE_SHIFT) == 0) {
Joerg Roedelea61cdd2011-06-09 12:56:30 +02002278 dev_data->ats.enabled = true;
2279 dev_data->ats.qdep = pci_ats_queue_depth(pdev);
2280 }
Joerg Roedelfd7b5532011-04-05 15:31:08 +02002281
Joerg Roedel15898bb2009-11-24 15:39:42 +01002282 write_lock_irqsave(&amd_iommu_devtable_lock, flags);
Joerg Roedelec9e79e2011-06-09 17:25:50 +02002283 ret = __attach_device(dev_data, domain);
Joerg Roedel15898bb2009-11-24 15:39:42 +01002284 write_unlock_irqrestore(&amd_iommu_devtable_lock, flags);
2285
2286 /*
2287 * We might boot into a crash-kernel here. The crashed kernel
2288 * left the caches in the IOMMU dirty. So we have to flush
2289 * here to evict all dirty stuff.
2290 */
Joerg Roedel17b124b2011-04-06 18:01:35 +02002291 domain_flush_tlb_pde(domain);
Joerg Roedel15898bb2009-11-24 15:39:42 +01002292
2293 return ret;
2294}
2295
2296/*
2297 * Removes a device from a protection domain (unlocked)
2298 */
Joerg Roedelec9e79e2011-06-09 17:25:50 +02002299static void __detach_device(struct iommu_dev_data *dev_data)
Joerg Roedel15898bb2009-11-24 15:39:42 +01002300{
Joerg Roedel2ca76272010-01-22 16:45:31 +01002301 struct protection_domain *domain;
Joerg Roedel7c392cb2009-11-26 11:13:32 +01002302 unsigned long flags;
Joerg Roedel15898bb2009-11-24 15:39:42 +01002303
Joerg Roedel7f760dd2009-11-26 14:49:59 +01002304 BUG_ON(!dev_data->domain);
Joerg Roedel15898bb2009-11-24 15:39:42 +01002305
Joerg Roedel2ca76272010-01-22 16:45:31 +01002306 domain = dev_data->domain;
2307
2308 spin_lock_irqsave(&domain->lock, flags);
Joerg Roedel24100052009-11-25 15:59:57 +01002309
Joerg Roedel71f77582011-06-09 19:03:15 +02002310 if (dev_data->alias_data != NULL) {
2311 struct iommu_dev_data *alias_data = dev_data->alias_data;
2312
Joerg Roedel7f760dd2009-11-26 14:49:59 +01002313 if (atomic_dec_and_test(&alias_data->bind))
Joerg Roedelec9e79e2011-06-09 17:25:50 +02002314 do_detach(alias_data);
Joerg Roedel24100052009-11-25 15:59:57 +01002315 }
2316
Joerg Roedel7f760dd2009-11-26 14:49:59 +01002317 if (atomic_dec_and_test(&dev_data->bind))
Joerg Roedelec9e79e2011-06-09 17:25:50 +02002318 do_detach(dev_data);
Joerg Roedel7f760dd2009-11-26 14:49:59 +01002319
Joerg Roedel2ca76272010-01-22 16:45:31 +01002320 spin_unlock_irqrestore(&domain->lock, flags);
Joerg Roedel15898bb2009-11-24 15:39:42 +01002321
Joerg Roedel21129f72009-09-01 11:59:42 +02002322 /*
2323 * If we run in passthrough mode the device must be assigned to the
Joerg Roedeld3ad9372010-01-22 17:55:27 +01002324 * passthrough domain if it is detached from any other domain.
2325 * Make sure we can deassign from the pt_domain itself.
Joerg Roedel21129f72009-09-01 11:59:42 +02002326 */
Joerg Roedel5abcdba2011-12-01 15:49:45 +01002327 if (dev_data->passthrough &&
Joerg Roedeld3ad9372010-01-22 17:55:27 +01002328 (dev_data->domain == NULL && domain != pt_domain))
Joerg Roedelec9e79e2011-06-09 17:25:50 +02002329 __attach_device(dev_data, pt_domain);
Joerg Roedel355bf552008-12-08 12:02:41 +01002330}
2331
2332/*
2333 * Removes a device from a protection domain (with devtable_lock held)
2334 */
Joerg Roedel15898bb2009-11-24 15:39:42 +01002335static void detach_device(struct device *dev)
Joerg Roedel355bf552008-12-08 12:02:41 +01002336{
Joerg Roedel52815b72011-11-17 17:24:28 +01002337 struct protection_domain *domain;
Joerg Roedelea61cdd2011-06-09 12:56:30 +02002338 struct iommu_dev_data *dev_data;
Joerg Roedel355bf552008-12-08 12:02:41 +01002339 unsigned long flags;
2340
Joerg Roedelec9e79e2011-06-09 17:25:50 +02002341 dev_data = get_dev_data(dev);
Joerg Roedel52815b72011-11-17 17:24:28 +01002342 domain = dev_data->domain;
Joerg Roedelec9e79e2011-06-09 17:25:50 +02002343
Joerg Roedel355bf552008-12-08 12:02:41 +01002344 /* lock device table */
2345 write_lock_irqsave(&amd_iommu_devtable_lock, flags);
Joerg Roedelec9e79e2011-06-09 17:25:50 +02002346 __detach_device(dev_data);
Joerg Roedel355bf552008-12-08 12:02:41 +01002347 write_unlock_irqrestore(&amd_iommu_devtable_lock, flags);
Joerg Roedelfd7b5532011-04-05 15:31:08 +02002348
Joerg Roedel52815b72011-11-17 17:24:28 +01002349 if (domain->flags & PD_IOMMUV2_MASK)
2350 pdev_iommuv2_disable(to_pci_dev(dev));
2351 else if (dev_data->ats.enabled)
Joerg Roedelea61cdd2011-06-09 12:56:30 +02002352 pci_disable_ats(to_pci_dev(dev));
Joerg Roedel52815b72011-11-17 17:24:28 +01002353
2354 dev_data->ats.enabled = false;
Joerg Roedel355bf552008-12-08 12:02:41 +01002355}
Joerg Roedele275a2a2008-12-10 18:27:25 +01002356
Joerg Roedel15898bb2009-11-24 15:39:42 +01002357/*
2358 * Find out the protection domain structure for a given PCI device. This
2359 * will give us the pointer to the page table root for example.
2360 */
2361static struct protection_domain *domain_for_device(struct device *dev)
2362{
Joerg Roedel71f77582011-06-09 19:03:15 +02002363 struct iommu_dev_data *dev_data;
Joerg Roedel2b02b092011-06-09 17:48:39 +02002364 struct protection_domain *dom = NULL;
Joerg Roedel15898bb2009-11-24 15:39:42 +01002365 unsigned long flags;
Joerg Roedel15898bb2009-11-24 15:39:42 +01002366
Joerg Roedel657cbb62009-11-23 15:26:46 +01002367 dev_data = get_dev_data(dev);
Joerg Roedel15898bb2009-11-24 15:39:42 +01002368
Joerg Roedel2b02b092011-06-09 17:48:39 +02002369 if (dev_data->domain)
2370 return dev_data->domain;
2371
Joerg Roedel71f77582011-06-09 19:03:15 +02002372 if (dev_data->alias_data != NULL) {
2373 struct iommu_dev_data *alias_data = dev_data->alias_data;
Joerg Roedel2b02b092011-06-09 17:48:39 +02002374
2375 read_lock_irqsave(&amd_iommu_devtable_lock, flags);
2376 if (alias_data->domain != NULL) {
2377 __attach_device(dev_data, alias_data->domain);
2378 dom = alias_data->domain;
2379 }
2380 read_unlock_irqrestore(&amd_iommu_devtable_lock, flags);
Joerg Roedel15898bb2009-11-24 15:39:42 +01002381 }
2382
Joerg Roedel15898bb2009-11-24 15:39:42 +01002383 return dom;
2384}
2385
Joerg Roedele275a2a2008-12-10 18:27:25 +01002386static int device_change_notifier(struct notifier_block *nb,
2387 unsigned long action, void *data)
2388{
Joerg Roedele275a2a2008-12-10 18:27:25 +01002389 struct dma_ops_domain *dma_domain;
Joerg Roedel5abcdba2011-12-01 15:49:45 +01002390 struct protection_domain *domain;
2391 struct iommu_dev_data *dev_data;
2392 struct device *dev = data;
Joerg Roedele275a2a2008-12-10 18:27:25 +01002393 struct amd_iommu *iommu;
Joerg Roedel1ac4cbb2008-12-10 19:33:26 +01002394 unsigned long flags;
Joerg Roedel5abcdba2011-12-01 15:49:45 +01002395 u16 devid;
Joerg Roedele275a2a2008-12-10 18:27:25 +01002396
Joerg Roedel98fc5a62009-11-24 17:19:23 +01002397 if (!check_device(dev))
2398 return 0;
Joerg Roedele275a2a2008-12-10 18:27:25 +01002399
Joerg Roedel5abcdba2011-12-01 15:49:45 +01002400 devid = get_device_id(dev);
2401 iommu = amd_iommu_rlookup_table[devid];
2402 dev_data = get_dev_data(dev);
Joerg Roedele275a2a2008-12-10 18:27:25 +01002403
2404 switch (action) {
Chris Wrightc1eee672009-05-21 00:56:58 -07002405 case BUS_NOTIFY_UNBOUND_DRIVER:
Joerg Roedel657cbb62009-11-23 15:26:46 +01002406
2407 domain = domain_for_device(dev);
2408
Joerg Roedele275a2a2008-12-10 18:27:25 +01002409 if (!domain)
2410 goto out;
Joerg Roedel5abcdba2011-12-01 15:49:45 +01002411 if (dev_data->passthrough)
Joerg Roedela1ca3312009-09-01 12:22:22 +02002412 break;
Joerg Roedel15898bb2009-11-24 15:39:42 +01002413 detach_device(dev);
Joerg Roedele275a2a2008-12-10 18:27:25 +01002414 break;
Joerg Roedel1ac4cbb2008-12-10 19:33:26 +01002415 case BUS_NOTIFY_ADD_DEVICE:
Joerg Roedel657cbb62009-11-23 15:26:46 +01002416
2417 iommu_init_device(dev);
2418
Joerg Roedel2c9195e2012-07-19 13:42:54 +02002419 /*
2420 * dev_data is still NULL and
2421 * got initialized in iommu_init_device
2422 */
2423 dev_data = get_dev_data(dev);
2424
2425 if (iommu_pass_through || dev_data->iommu_v2) {
2426 dev_data->passthrough = true;
2427 attach_device(dev, pt_domain);
2428 break;
2429 }
2430
Joerg Roedel657cbb62009-11-23 15:26:46 +01002431 domain = domain_for_device(dev);
2432
Joerg Roedel1ac4cbb2008-12-10 19:33:26 +01002433 /* allocate a protection domain if a device is added */
2434 dma_domain = find_protection_domain(devid);
Joerg Roedelc2a28762013-03-26 22:48:23 +01002435 if (!dma_domain) {
2436 dma_domain = dma_ops_domain_alloc();
2437 if (!dma_domain)
2438 goto out;
2439 dma_domain->target_dev = devid;
Joerg Roedel1ac4cbb2008-12-10 19:33:26 +01002440
Joerg Roedelc2a28762013-03-26 22:48:23 +01002441 spin_lock_irqsave(&iommu_pd_list_lock, flags);
2442 list_add_tail(&dma_domain->list, &iommu_pd_list);
2443 spin_unlock_irqrestore(&iommu_pd_list_lock, flags);
2444 }
Joerg Roedelac1534a2012-06-21 14:52:40 +02002445
Joerg Roedel2c9195e2012-07-19 13:42:54 +02002446 dev->archdata.dma_ops = &amd_iommu_dma_ops;
Joerg Roedelac1534a2012-06-21 14:52:40 +02002447
Joerg Roedel1ac4cbb2008-12-10 19:33:26 +01002448 break;
Joerg Roedel657cbb62009-11-23 15:26:46 +01002449 case BUS_NOTIFY_DEL_DEVICE:
2450
2451 iommu_uninit_device(dev);
2452
Joerg Roedele275a2a2008-12-10 18:27:25 +01002453 default:
2454 goto out;
2455 }
2456
Joerg Roedele275a2a2008-12-10 18:27:25 +01002457 iommu_completion_wait(iommu);
2458
2459out:
2460 return 0;
2461}
2462
Jaswinder Singh Rajputb25ae672009-07-01 19:53:14 +05302463static struct notifier_block device_nb = {
Joerg Roedele275a2a2008-12-10 18:27:25 +01002464 .notifier_call = device_change_notifier,
2465};
Joerg Roedel355bf552008-12-08 12:02:41 +01002466
Joerg Roedel8638c492009-12-10 11:12:25 +01002467void amd_iommu_init_notifier(void)
2468{
2469 bus_register_notifier(&pci_bus_type, &device_nb);
2470}
2471
Joerg Roedel431b2a22008-07-11 17:14:22 +02002472/*****************************************************************************
2473 *
2474 * The next functions belong to the dma_ops mapping/unmapping code.
2475 *
2476 *****************************************************************************/
2477
2478/*
2479 * In the dma_ops path we only have the struct device. This function
2480 * finds the corresponding IOMMU, the protection domain and the
2481 * requestor id for a given device.
2482 * If the device is not yet associated with a domain this is also done
2483 * in this function.
2484 */
Joerg Roedel94f6d192009-11-24 16:40:02 +01002485static struct protection_domain *get_domain(struct device *dev)
Joerg Roedelb20ac0d2008-06-26 21:27:59 +02002486{
Joerg Roedel94f6d192009-11-24 16:40:02 +01002487 struct protection_domain *domain;
Joerg Roedelb20ac0d2008-06-26 21:27:59 +02002488 struct dma_ops_domain *dma_dom;
Joerg Roedel94f6d192009-11-24 16:40:02 +01002489 u16 devid = get_device_id(dev);
Joerg Roedelb20ac0d2008-06-26 21:27:59 +02002490
Joerg Roedelf99c0f12009-11-23 16:52:56 +01002491 if (!check_device(dev))
Joerg Roedel94f6d192009-11-24 16:40:02 +01002492 return ERR_PTR(-EINVAL);
Joerg Roedeldbcc1122008-09-04 15:04:26 +02002493
Joerg Roedel94f6d192009-11-24 16:40:02 +01002494 domain = domain_for_device(dev);
2495 if (domain != NULL && !dma_ops_domain(domain))
2496 return ERR_PTR(-EBUSY);
Joerg Roedelf99c0f12009-11-23 16:52:56 +01002497
Joerg Roedel94f6d192009-11-24 16:40:02 +01002498 if (domain != NULL)
2499 return domain;
Joerg Roedelb20ac0d2008-06-26 21:27:59 +02002500
Frank Arnolddf805ab2012-08-27 19:21:04 +02002501 /* Device not bound yet - bind it */
Joerg Roedel94f6d192009-11-24 16:40:02 +01002502 dma_dom = find_protection_domain(devid);
Joerg Roedel15898bb2009-11-24 15:39:42 +01002503 if (!dma_dom)
Joerg Roedel94f6d192009-11-24 16:40:02 +01002504 dma_dom = amd_iommu_rlookup_table[devid]->default_dom;
2505 attach_device(dev, &dma_dom->domain);
Joerg Roedel15898bb2009-11-24 15:39:42 +01002506 DUMP_printk("Using protection domain %d for device %s\n",
Joerg Roedel94f6d192009-11-24 16:40:02 +01002507 dma_dom->domain.id, dev_name(dev));
Joerg Roedelf91ba192008-11-25 12:56:12 +01002508
Joerg Roedel94f6d192009-11-24 16:40:02 +01002509 return &dma_dom->domain;
Joerg Roedelb20ac0d2008-06-26 21:27:59 +02002510}
2511
Joerg Roedel04bfdd82009-09-02 16:00:23 +02002512static void update_device_table(struct protection_domain *domain)
2513{
Joerg Roedel492667d2009-11-27 13:25:47 +01002514 struct iommu_dev_data *dev_data;
Joerg Roedel04bfdd82009-09-02 16:00:23 +02002515
Joerg Roedelea61cdd2011-06-09 12:56:30 +02002516 list_for_each_entry(dev_data, &domain->dev_list, list)
2517 set_dte_entry(dev_data->devid, domain, dev_data->ats.enabled);
Joerg Roedel04bfdd82009-09-02 16:00:23 +02002518}
2519
2520static void update_domain(struct protection_domain *domain)
2521{
2522 if (!domain->updated)
2523 return;
2524
2525 update_device_table(domain);
Joerg Roedel17b124b2011-04-06 18:01:35 +02002526
2527 domain_flush_devices(domain);
2528 domain_flush_tlb_pde(domain);
Joerg Roedel04bfdd82009-09-02 16:00:23 +02002529
2530 domain->updated = false;
2531}
2532
Joerg Roedel431b2a22008-07-11 17:14:22 +02002533/*
Joerg Roedel8bda3092009-05-12 12:02:46 +02002534 * This function fetches the PTE for a given address in the aperture
2535 */
2536static u64* dma_ops_get_pte(struct dma_ops_domain *dom,
2537 unsigned long address)
2538{
Joerg Roedel384de722009-05-15 12:30:05 +02002539 struct aperture_range *aperture;
Joerg Roedel8bda3092009-05-12 12:02:46 +02002540 u64 *pte, *pte_page;
2541
Joerg Roedel384de722009-05-15 12:30:05 +02002542 aperture = dom->aperture[APERTURE_RANGE_INDEX(address)];
2543 if (!aperture)
2544 return NULL;
2545
2546 pte = aperture->pte_pages[APERTURE_PAGE_INDEX(address)];
Joerg Roedel8bda3092009-05-12 12:02:46 +02002547 if (!pte) {
Joerg Roedelcbb9d722010-01-15 14:41:15 +01002548 pte = alloc_pte(&dom->domain, address, PAGE_SIZE, &pte_page,
Joerg Roedelabdc5eb2009-09-03 11:33:51 +02002549 GFP_ATOMIC);
Joerg Roedel384de722009-05-15 12:30:05 +02002550 aperture->pte_pages[APERTURE_PAGE_INDEX(address)] = pte_page;
2551 } else
Joerg Roedel8c8c1432009-09-02 17:30:00 +02002552 pte += PM_LEVEL_INDEX(0, address);
Joerg Roedel8bda3092009-05-12 12:02:46 +02002553
Joerg Roedel04bfdd82009-09-02 16:00:23 +02002554 update_domain(&dom->domain);
Joerg Roedel8bda3092009-05-12 12:02:46 +02002555
2556 return pte;
2557}
2558
2559/*
Joerg Roedel431b2a22008-07-11 17:14:22 +02002560 * This is the generic map function. It maps one 4kb page at paddr to
2561 * the given address in the DMA address space for the domain.
2562 */
Joerg Roedel680525e2009-11-23 18:44:42 +01002563static dma_addr_t dma_ops_domain_map(struct dma_ops_domain *dom,
Joerg Roedelcb76c322008-06-26 21:28:00 +02002564 unsigned long address,
2565 phys_addr_t paddr,
2566 int direction)
2567{
2568 u64 *pte, __pte;
2569
2570 WARN_ON(address > dom->aperture_size);
2571
2572 paddr &= PAGE_MASK;
2573
Joerg Roedel8bda3092009-05-12 12:02:46 +02002574 pte = dma_ops_get_pte(dom, address);
Joerg Roedel53812c12009-05-12 12:17:38 +02002575 if (!pte)
FUJITA Tomonori8fd524b2009-11-15 21:19:53 +09002576 return DMA_ERROR_CODE;
Joerg Roedelcb76c322008-06-26 21:28:00 +02002577
2578 __pte = paddr | IOMMU_PTE_P | IOMMU_PTE_FC;
2579
2580 if (direction == DMA_TO_DEVICE)
2581 __pte |= IOMMU_PTE_IR;
2582 else if (direction == DMA_FROM_DEVICE)
2583 __pte |= IOMMU_PTE_IW;
2584 else if (direction == DMA_BIDIRECTIONAL)
2585 __pte |= IOMMU_PTE_IR | IOMMU_PTE_IW;
2586
2587 WARN_ON(*pte);
2588
2589 *pte = __pte;
2590
2591 return (dma_addr_t)address;
2592}
2593
Joerg Roedel431b2a22008-07-11 17:14:22 +02002594/*
2595 * The generic unmapping function for on page in the DMA address space.
2596 */
Joerg Roedel680525e2009-11-23 18:44:42 +01002597static void dma_ops_domain_unmap(struct dma_ops_domain *dom,
Joerg Roedelcb76c322008-06-26 21:28:00 +02002598 unsigned long address)
2599{
Joerg Roedel384de722009-05-15 12:30:05 +02002600 struct aperture_range *aperture;
Joerg Roedelcb76c322008-06-26 21:28:00 +02002601 u64 *pte;
2602
2603 if (address >= dom->aperture_size)
2604 return;
2605
Joerg Roedel384de722009-05-15 12:30:05 +02002606 aperture = dom->aperture[APERTURE_RANGE_INDEX(address)];
2607 if (!aperture)
2608 return;
Joerg Roedelcb76c322008-06-26 21:28:00 +02002609
Joerg Roedel384de722009-05-15 12:30:05 +02002610 pte = aperture->pte_pages[APERTURE_PAGE_INDEX(address)];
2611 if (!pte)
2612 return;
2613
Joerg Roedel8c8c1432009-09-02 17:30:00 +02002614 pte += PM_LEVEL_INDEX(0, address);
Joerg Roedelcb76c322008-06-26 21:28:00 +02002615
2616 WARN_ON(!*pte);
2617
2618 *pte = 0ULL;
2619}
2620
Joerg Roedel431b2a22008-07-11 17:14:22 +02002621/*
2622 * This function contains common code for mapping of a physically
Joerg Roedel24f81162008-12-08 14:25:39 +01002623 * contiguous memory region into DMA address space. It is used by all
2624 * mapping functions provided with this IOMMU driver.
Joerg Roedel431b2a22008-07-11 17:14:22 +02002625 * Must be called with the domain lock held.
2626 */
Joerg Roedelcb76c322008-06-26 21:28:00 +02002627static dma_addr_t __map_single(struct device *dev,
Joerg Roedelcb76c322008-06-26 21:28:00 +02002628 struct dma_ops_domain *dma_dom,
2629 phys_addr_t paddr,
2630 size_t size,
Joerg Roedel6d4f3432008-09-04 19:18:02 +02002631 int dir,
Joerg Roedel832a90c2008-09-18 15:54:23 +02002632 bool align,
2633 u64 dma_mask)
Joerg Roedelcb76c322008-06-26 21:28:00 +02002634{
2635 dma_addr_t offset = paddr & ~PAGE_MASK;
Joerg Roedel53812c12009-05-12 12:17:38 +02002636 dma_addr_t address, start, ret;
Joerg Roedelcb76c322008-06-26 21:28:00 +02002637 unsigned int pages;
Joerg Roedel6d4f3432008-09-04 19:18:02 +02002638 unsigned long align_mask = 0;
Joerg Roedelcb76c322008-06-26 21:28:00 +02002639 int i;
2640
Joerg Roedele3c449f2008-10-15 22:02:11 -07002641 pages = iommu_num_pages(paddr, size, PAGE_SIZE);
Joerg Roedelcb76c322008-06-26 21:28:00 +02002642 paddr &= PAGE_MASK;
2643
Joerg Roedel8ecaf8f2008-12-12 16:13:04 +01002644 INC_STATS_COUNTER(total_map_requests);
2645
Joerg Roedelc1858972008-12-12 15:42:39 +01002646 if (pages > 1)
2647 INC_STATS_COUNTER(cross_page);
2648
Joerg Roedel6d4f3432008-09-04 19:18:02 +02002649 if (align)
2650 align_mask = (1UL << get_order(size)) - 1;
2651
Joerg Roedel11b83882009-05-19 10:23:15 +02002652retry:
Joerg Roedel832a90c2008-09-18 15:54:23 +02002653 address = dma_ops_alloc_addresses(dev, dma_dom, pages, align_mask,
2654 dma_mask);
FUJITA Tomonori8fd524b2009-11-15 21:19:53 +09002655 if (unlikely(address == DMA_ERROR_CODE)) {
Joerg Roedel11b83882009-05-19 10:23:15 +02002656 /*
2657 * setting next_address here will let the address
2658 * allocator only scan the new allocated range in the
2659 * first run. This is a small optimization.
2660 */
2661 dma_dom->next_address = dma_dom->aperture_size;
2662
Joerg Roedel576175c2009-11-23 19:08:46 +01002663 if (alloc_new_range(dma_dom, false, GFP_ATOMIC))
Joerg Roedel11b83882009-05-19 10:23:15 +02002664 goto out;
2665
2666 /*
André Goddard Rosaaf901ca2009-11-14 13:09:05 -02002667 * aperture was successfully enlarged by 128 MB, try
Joerg Roedel11b83882009-05-19 10:23:15 +02002668 * allocation again
2669 */
2670 goto retry;
2671 }
Joerg Roedelcb76c322008-06-26 21:28:00 +02002672
2673 start = address;
2674 for (i = 0; i < pages; ++i) {
Joerg Roedel680525e2009-11-23 18:44:42 +01002675 ret = dma_ops_domain_map(dma_dom, start, paddr, dir);
FUJITA Tomonori8fd524b2009-11-15 21:19:53 +09002676 if (ret == DMA_ERROR_CODE)
Joerg Roedel53812c12009-05-12 12:17:38 +02002677 goto out_unmap;
2678
Joerg Roedelcb76c322008-06-26 21:28:00 +02002679 paddr += PAGE_SIZE;
2680 start += PAGE_SIZE;
2681 }
2682 address += offset;
2683
Joerg Roedel5774f7c2008-12-12 15:57:30 +01002684 ADD_STATS_COUNTER(alloced_io_mem, size);
2685
FUJITA Tomonoriafa9fdc2008-09-20 01:23:30 +09002686 if (unlikely(dma_dom->need_flush && !amd_iommu_unmap_flush)) {
Joerg Roedel17b124b2011-04-06 18:01:35 +02002687 domain_flush_tlb(&dma_dom->domain);
Joerg Roedel1c655772008-09-04 18:40:05 +02002688 dma_dom->need_flush = false;
Joerg Roedel318afd42009-11-23 18:32:38 +01002689 } else if (unlikely(amd_iommu_np_cache))
Joerg Roedel17b124b2011-04-06 18:01:35 +02002690 domain_flush_pages(&dma_dom->domain, address, size);
Joerg Roedel270cab242008-09-04 15:49:46 +02002691
Joerg Roedelcb76c322008-06-26 21:28:00 +02002692out:
2693 return address;
Joerg Roedel53812c12009-05-12 12:17:38 +02002694
2695out_unmap:
2696
2697 for (--i; i >= 0; --i) {
2698 start -= PAGE_SIZE;
Joerg Roedel680525e2009-11-23 18:44:42 +01002699 dma_ops_domain_unmap(dma_dom, start);
Joerg Roedel53812c12009-05-12 12:17:38 +02002700 }
2701
2702 dma_ops_free_addresses(dma_dom, address, pages);
2703
FUJITA Tomonori8fd524b2009-11-15 21:19:53 +09002704 return DMA_ERROR_CODE;
Joerg Roedelcb76c322008-06-26 21:28:00 +02002705}
2706
Joerg Roedel431b2a22008-07-11 17:14:22 +02002707/*
2708 * Does the reverse of the __map_single function. Must be called with
2709 * the domain lock held too
2710 */
Joerg Roedelcd8c82e2009-11-23 19:33:56 +01002711static void __unmap_single(struct dma_ops_domain *dma_dom,
Joerg Roedelcb76c322008-06-26 21:28:00 +02002712 dma_addr_t dma_addr,
2713 size_t size,
2714 int dir)
2715{
Joerg Roedel04e04632010-09-23 16:12:48 +02002716 dma_addr_t flush_addr;
Joerg Roedelcb76c322008-06-26 21:28:00 +02002717 dma_addr_t i, start;
2718 unsigned int pages;
2719
FUJITA Tomonori8fd524b2009-11-15 21:19:53 +09002720 if ((dma_addr == DMA_ERROR_CODE) ||
Joerg Roedelb8d99052008-12-08 14:40:26 +01002721 (dma_addr + size > dma_dom->aperture_size))
Joerg Roedelcb76c322008-06-26 21:28:00 +02002722 return;
2723
Joerg Roedel04e04632010-09-23 16:12:48 +02002724 flush_addr = dma_addr;
Joerg Roedele3c449f2008-10-15 22:02:11 -07002725 pages = iommu_num_pages(dma_addr, size, PAGE_SIZE);
Joerg Roedelcb76c322008-06-26 21:28:00 +02002726 dma_addr &= PAGE_MASK;
2727 start = dma_addr;
2728
2729 for (i = 0; i < pages; ++i) {
Joerg Roedel680525e2009-11-23 18:44:42 +01002730 dma_ops_domain_unmap(dma_dom, start);
Joerg Roedelcb76c322008-06-26 21:28:00 +02002731 start += PAGE_SIZE;
2732 }
2733
Joerg Roedel5774f7c2008-12-12 15:57:30 +01002734 SUB_STATS_COUNTER(alloced_io_mem, size);
2735
Joerg Roedelcb76c322008-06-26 21:28:00 +02002736 dma_ops_free_addresses(dma_dom, dma_addr, pages);
Joerg Roedel270cab242008-09-04 15:49:46 +02002737
Joerg Roedel80be3082008-11-06 14:59:05 +01002738 if (amd_iommu_unmap_flush || dma_dom->need_flush) {
Joerg Roedel17b124b2011-04-06 18:01:35 +02002739 domain_flush_pages(&dma_dom->domain, flush_addr, size);
Joerg Roedel80be3082008-11-06 14:59:05 +01002740 dma_dom->need_flush = false;
2741 }
Joerg Roedelcb76c322008-06-26 21:28:00 +02002742}
2743
Joerg Roedel431b2a22008-07-11 17:14:22 +02002744/*
2745 * The exported map_single function for dma_ops.
2746 */
FUJITA Tomonori51491362009-01-05 23:47:25 +09002747static dma_addr_t map_page(struct device *dev, struct page *page,
2748 unsigned long offset, size_t size,
2749 enum dma_data_direction dir,
2750 struct dma_attrs *attrs)
Joerg Roedel4da70b92008-06-26 21:28:01 +02002751{
2752 unsigned long flags;
Joerg Roedel4da70b92008-06-26 21:28:01 +02002753 struct protection_domain *domain;
Joerg Roedel4da70b92008-06-26 21:28:01 +02002754 dma_addr_t addr;
Joerg Roedel832a90c2008-09-18 15:54:23 +02002755 u64 dma_mask;
FUJITA Tomonori51491362009-01-05 23:47:25 +09002756 phys_addr_t paddr = page_to_phys(page) + offset;
Joerg Roedel4da70b92008-06-26 21:28:01 +02002757
Joerg Roedel0f2a86f2008-12-12 15:05:16 +01002758 INC_STATS_COUNTER(cnt_map_single);
2759
Joerg Roedel94f6d192009-11-24 16:40:02 +01002760 domain = get_domain(dev);
2761 if (PTR_ERR(domain) == -EINVAL)
Joerg Roedel4da70b92008-06-26 21:28:01 +02002762 return (dma_addr_t)paddr;
Joerg Roedel94f6d192009-11-24 16:40:02 +01002763 else if (IS_ERR(domain))
2764 return DMA_ERROR_CODE;
Joerg Roedel4da70b92008-06-26 21:28:01 +02002765
Joerg Roedelf99c0f12009-11-23 16:52:56 +01002766 dma_mask = *dev->dma_mask;
2767
Joerg Roedel4da70b92008-06-26 21:28:01 +02002768 spin_lock_irqsave(&domain->lock, flags);
Joerg Roedel94f6d192009-11-24 16:40:02 +01002769
Joerg Roedelcd8c82e2009-11-23 19:33:56 +01002770 addr = __map_single(dev, domain->priv, paddr, size, dir, false,
Joerg Roedel832a90c2008-09-18 15:54:23 +02002771 dma_mask);
FUJITA Tomonori8fd524b2009-11-15 21:19:53 +09002772 if (addr == DMA_ERROR_CODE)
Joerg Roedel4da70b92008-06-26 21:28:01 +02002773 goto out;
2774
Joerg Roedel17b124b2011-04-06 18:01:35 +02002775 domain_flush_complete(domain);
Joerg Roedel4da70b92008-06-26 21:28:01 +02002776
2777out:
2778 spin_unlock_irqrestore(&domain->lock, flags);
2779
2780 return addr;
2781}
2782
Joerg Roedel431b2a22008-07-11 17:14:22 +02002783/*
2784 * The exported unmap_single function for dma_ops.
2785 */
FUJITA Tomonori51491362009-01-05 23:47:25 +09002786static void unmap_page(struct device *dev, dma_addr_t dma_addr, size_t size,
2787 enum dma_data_direction dir, struct dma_attrs *attrs)
Joerg Roedel4da70b92008-06-26 21:28:01 +02002788{
2789 unsigned long flags;
Joerg Roedel4da70b92008-06-26 21:28:01 +02002790 struct protection_domain *domain;
Joerg Roedel4da70b92008-06-26 21:28:01 +02002791
Joerg Roedel146a6912008-12-12 15:07:12 +01002792 INC_STATS_COUNTER(cnt_unmap_single);
2793
Joerg Roedel94f6d192009-11-24 16:40:02 +01002794 domain = get_domain(dev);
2795 if (IS_ERR(domain))
Joerg Roedel5b28df62008-12-02 17:49:42 +01002796 return;
2797
Joerg Roedel4da70b92008-06-26 21:28:01 +02002798 spin_lock_irqsave(&domain->lock, flags);
2799
Joerg Roedelcd8c82e2009-11-23 19:33:56 +01002800 __unmap_single(domain->priv, dma_addr, size, dir);
Joerg Roedel4da70b92008-06-26 21:28:01 +02002801
Joerg Roedel17b124b2011-04-06 18:01:35 +02002802 domain_flush_complete(domain);
Joerg Roedel4da70b92008-06-26 21:28:01 +02002803
2804 spin_unlock_irqrestore(&domain->lock, flags);
2805}
2806
Joerg Roedel431b2a22008-07-11 17:14:22 +02002807/*
Joerg Roedel431b2a22008-07-11 17:14:22 +02002808 * The exported map_sg function for dma_ops (handles scatter-gather
2809 * lists).
2810 */
Joerg Roedel65b050a2008-06-26 21:28:02 +02002811static int map_sg(struct device *dev, struct scatterlist *sglist,
FUJITA Tomonori160c1d82009-01-05 23:59:02 +09002812 int nelems, enum dma_data_direction dir,
2813 struct dma_attrs *attrs)
Joerg Roedel65b050a2008-06-26 21:28:02 +02002814{
2815 unsigned long flags;
Joerg Roedel65b050a2008-06-26 21:28:02 +02002816 struct protection_domain *domain;
Joerg Roedel65b050a2008-06-26 21:28:02 +02002817 int i;
2818 struct scatterlist *s;
2819 phys_addr_t paddr;
2820 int mapped_elems = 0;
Joerg Roedel832a90c2008-09-18 15:54:23 +02002821 u64 dma_mask;
Joerg Roedel65b050a2008-06-26 21:28:02 +02002822
Joerg Roedeld03f067a2008-12-12 15:09:48 +01002823 INC_STATS_COUNTER(cnt_map_sg);
2824
Joerg Roedel94f6d192009-11-24 16:40:02 +01002825 domain = get_domain(dev);
Joerg Roedela0e191b2013-04-09 15:04:36 +02002826 if (IS_ERR(domain))
Joerg Roedel94f6d192009-11-24 16:40:02 +01002827 return 0;
Joerg Roedeldbcc1122008-09-04 15:04:26 +02002828
Joerg Roedel832a90c2008-09-18 15:54:23 +02002829 dma_mask = *dev->dma_mask;
Joerg Roedel65b050a2008-06-26 21:28:02 +02002830
Joerg Roedel65b050a2008-06-26 21:28:02 +02002831 spin_lock_irqsave(&domain->lock, flags);
2832
2833 for_each_sg(sglist, s, nelems, i) {
2834 paddr = sg_phys(s);
2835
Joerg Roedelcd8c82e2009-11-23 19:33:56 +01002836 s->dma_address = __map_single(dev, domain->priv,
Joerg Roedel832a90c2008-09-18 15:54:23 +02002837 paddr, s->length, dir, false,
2838 dma_mask);
Joerg Roedel65b050a2008-06-26 21:28:02 +02002839
2840 if (s->dma_address) {
2841 s->dma_length = s->length;
2842 mapped_elems++;
2843 } else
2844 goto unmap;
Joerg Roedel65b050a2008-06-26 21:28:02 +02002845 }
2846
Joerg Roedel17b124b2011-04-06 18:01:35 +02002847 domain_flush_complete(domain);
Joerg Roedel65b050a2008-06-26 21:28:02 +02002848
2849out:
2850 spin_unlock_irqrestore(&domain->lock, flags);
2851
2852 return mapped_elems;
2853unmap:
2854 for_each_sg(sglist, s, mapped_elems, i) {
2855 if (s->dma_address)
Joerg Roedelcd8c82e2009-11-23 19:33:56 +01002856 __unmap_single(domain->priv, s->dma_address,
Joerg Roedel65b050a2008-06-26 21:28:02 +02002857 s->dma_length, dir);
2858 s->dma_address = s->dma_length = 0;
2859 }
2860
2861 mapped_elems = 0;
2862
2863 goto out;
2864}
2865
Joerg Roedel431b2a22008-07-11 17:14:22 +02002866/*
2867 * The exported map_sg function for dma_ops (handles scatter-gather
2868 * lists).
2869 */
Joerg Roedel65b050a2008-06-26 21:28:02 +02002870static void unmap_sg(struct device *dev, struct scatterlist *sglist,
FUJITA Tomonori160c1d82009-01-05 23:59:02 +09002871 int nelems, enum dma_data_direction dir,
2872 struct dma_attrs *attrs)
Joerg Roedel65b050a2008-06-26 21:28:02 +02002873{
2874 unsigned long flags;
Joerg Roedel65b050a2008-06-26 21:28:02 +02002875 struct protection_domain *domain;
2876 struct scatterlist *s;
Joerg Roedel65b050a2008-06-26 21:28:02 +02002877 int i;
2878
Joerg Roedel55877a62008-12-12 15:12:14 +01002879 INC_STATS_COUNTER(cnt_unmap_sg);
2880
Joerg Roedel94f6d192009-11-24 16:40:02 +01002881 domain = get_domain(dev);
2882 if (IS_ERR(domain))
Joerg Roedel5b28df62008-12-02 17:49:42 +01002883 return;
2884
Joerg Roedel65b050a2008-06-26 21:28:02 +02002885 spin_lock_irqsave(&domain->lock, flags);
2886
2887 for_each_sg(sglist, s, nelems, i) {
Joerg Roedelcd8c82e2009-11-23 19:33:56 +01002888 __unmap_single(domain->priv, s->dma_address,
Joerg Roedel65b050a2008-06-26 21:28:02 +02002889 s->dma_length, dir);
Joerg Roedel65b050a2008-06-26 21:28:02 +02002890 s->dma_address = s->dma_length = 0;
2891 }
2892
Joerg Roedel17b124b2011-04-06 18:01:35 +02002893 domain_flush_complete(domain);
Joerg Roedel65b050a2008-06-26 21:28:02 +02002894
2895 spin_unlock_irqrestore(&domain->lock, flags);
2896}
2897
Joerg Roedel431b2a22008-07-11 17:14:22 +02002898/*
2899 * The exported alloc_coherent function for dma_ops.
2900 */
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002901static void *alloc_coherent(struct device *dev, size_t size,
Andrzej Pietrasiewiczbaa676f2012-03-27 14:28:18 +02002902 dma_addr_t *dma_addr, gfp_t flag,
2903 struct dma_attrs *attrs)
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002904{
2905 unsigned long flags;
2906 void *virt_addr;
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002907 struct protection_domain *domain;
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002908 phys_addr_t paddr;
Joerg Roedel832a90c2008-09-18 15:54:23 +02002909 u64 dma_mask = dev->coherent_dma_mask;
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002910
Joerg Roedelc8f0fb32008-12-12 15:14:21 +01002911 INC_STATS_COUNTER(cnt_alloc_coherent);
2912
Joerg Roedel94f6d192009-11-24 16:40:02 +01002913 domain = get_domain(dev);
2914 if (PTR_ERR(domain) == -EINVAL) {
Joerg Roedelf99c0f12009-11-23 16:52:56 +01002915 virt_addr = (void *)__get_free_pages(flag, get_order(size));
2916 *dma_addr = __pa(virt_addr);
2917 return virt_addr;
Joerg Roedel94f6d192009-11-24 16:40:02 +01002918 } else if (IS_ERR(domain))
2919 return NULL;
Joerg Roedeldbcc1122008-09-04 15:04:26 +02002920
Joerg Roedelf99c0f12009-11-23 16:52:56 +01002921 dma_mask = dev->coherent_dma_mask;
2922 flag &= ~(__GFP_DMA | __GFP_HIGHMEM | __GFP_DMA32);
2923 flag |= __GFP_ZERO;
FUJITA Tomonori13d9fea2008-09-10 20:19:40 +09002924
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002925 virt_addr = (void *)__get_free_pages(flag, get_order(size));
2926 if (!virt_addr)
Jaswinder Singh Rajputb25ae672009-07-01 19:53:14 +05302927 return NULL;
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002928
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002929 paddr = virt_to_phys(virt_addr);
2930
Joerg Roedel832a90c2008-09-18 15:54:23 +02002931 if (!dma_mask)
2932 dma_mask = *dev->dma_mask;
2933
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002934 spin_lock_irqsave(&domain->lock, flags);
2935
Joerg Roedelcd8c82e2009-11-23 19:33:56 +01002936 *dma_addr = __map_single(dev, domain->priv, paddr,
Joerg Roedel832a90c2008-09-18 15:54:23 +02002937 size, DMA_BIDIRECTIONAL, true, dma_mask);
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002938
FUJITA Tomonori8fd524b2009-11-15 21:19:53 +09002939 if (*dma_addr == DMA_ERROR_CODE) {
Jiri Slaby367d04c2009-05-28 09:54:48 +02002940 spin_unlock_irqrestore(&domain->lock, flags);
Joerg Roedel5b28df62008-12-02 17:49:42 +01002941 goto out_free;
Jiri Slaby367d04c2009-05-28 09:54:48 +02002942 }
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002943
Joerg Roedel17b124b2011-04-06 18:01:35 +02002944 domain_flush_complete(domain);
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002945
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002946 spin_unlock_irqrestore(&domain->lock, flags);
2947
2948 return virt_addr;
Joerg Roedel5b28df62008-12-02 17:49:42 +01002949
2950out_free:
2951
2952 free_pages((unsigned long)virt_addr, get_order(size));
2953
2954 return NULL;
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002955}
2956
Joerg Roedel431b2a22008-07-11 17:14:22 +02002957/*
2958 * The exported free_coherent function for dma_ops.
Joerg Roedel431b2a22008-07-11 17:14:22 +02002959 */
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002960static void free_coherent(struct device *dev, size_t size,
Andrzej Pietrasiewiczbaa676f2012-03-27 14:28:18 +02002961 void *virt_addr, dma_addr_t dma_addr,
2962 struct dma_attrs *attrs)
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002963{
2964 unsigned long flags;
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002965 struct protection_domain *domain;
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002966
Joerg Roedel5d31ee72008-12-12 15:16:38 +01002967 INC_STATS_COUNTER(cnt_free_coherent);
2968
Joerg Roedel94f6d192009-11-24 16:40:02 +01002969 domain = get_domain(dev);
2970 if (IS_ERR(domain))
Joerg Roedel5b28df62008-12-02 17:49:42 +01002971 goto free_mem;
2972
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002973 spin_lock_irqsave(&domain->lock, flags);
2974
Joerg Roedelcd8c82e2009-11-23 19:33:56 +01002975 __unmap_single(domain->priv, dma_addr, size, DMA_BIDIRECTIONAL);
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002976
Joerg Roedel17b124b2011-04-06 18:01:35 +02002977 domain_flush_complete(domain);
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002978
2979 spin_unlock_irqrestore(&domain->lock, flags);
2980
2981free_mem:
2982 free_pages((unsigned long)virt_addr, get_order(size));
2983}
2984
Joerg Roedelc432f3d2008-06-26 21:28:04 +02002985/*
Joerg Roedelb39ba6a2008-09-09 18:40:46 +02002986 * This function is called by the DMA layer to find out if we can handle a
2987 * particular device. It is part of the dma_ops.
2988 */
2989static int amd_iommu_dma_supported(struct device *dev, u64 mask)
2990{
Joerg Roedel420aef82009-11-23 16:14:57 +01002991 return check_device(dev);
Joerg Roedelb39ba6a2008-09-09 18:40:46 +02002992}
2993
2994/*
Joerg Roedel431b2a22008-07-11 17:14:22 +02002995 * The function for pre-allocating protection domains.
2996 *
Joerg Roedelc432f3d2008-06-26 21:28:04 +02002997 * If the driver core informs the DMA layer if a driver grabs a device
2998 * we don't need to preallocate the protection domains anymore.
2999 * For now we have to.
3000 */
Steffen Persvold943bc7e2012-03-15 12:16:28 +01003001static void __init prealloc_protection_domains(void)
Joerg Roedelc432f3d2008-06-26 21:28:04 +02003002{
Joerg Roedel5abcdba2011-12-01 15:49:45 +01003003 struct iommu_dev_data *dev_data;
Joerg Roedelc432f3d2008-06-26 21:28:04 +02003004 struct dma_ops_domain *dma_dom;
Joerg Roedel5abcdba2011-12-01 15:49:45 +01003005 struct pci_dev *dev = NULL;
Joerg Roedel98fc5a62009-11-24 17:19:23 +01003006 u16 devid;
Joerg Roedelc432f3d2008-06-26 21:28:04 +02003007
Chris Wrightd18c69d2010-04-02 18:27:55 -07003008 for_each_pci_dev(dev) {
Joerg Roedel98fc5a62009-11-24 17:19:23 +01003009
3010 /* Do we handle this device? */
3011 if (!check_device(&dev->dev))
Joerg Roedelc432f3d2008-06-26 21:28:04 +02003012 continue;
Joerg Roedel98fc5a62009-11-24 17:19:23 +01003013
Joerg Roedel5abcdba2011-12-01 15:49:45 +01003014 dev_data = get_dev_data(&dev->dev);
3015 if (!amd_iommu_force_isolation && dev_data->iommu_v2) {
3016 /* Make sure passthrough domain is allocated */
3017 alloc_passthrough_domain();
3018 dev_data->passthrough = true;
3019 attach_device(&dev->dev, pt_domain);
Frank Arnolddf805ab2012-08-27 19:21:04 +02003020 pr_info("AMD-Vi: Using passthrough domain for device %s\n",
Joerg Roedel5abcdba2011-12-01 15:49:45 +01003021 dev_name(&dev->dev));
3022 }
3023
Joerg Roedel98fc5a62009-11-24 17:19:23 +01003024 /* Is there already any domain for it? */
Joerg Roedel15898bb2009-11-24 15:39:42 +01003025 if (domain_for_device(&dev->dev))
Joerg Roedelc432f3d2008-06-26 21:28:04 +02003026 continue;
Joerg Roedel98fc5a62009-11-24 17:19:23 +01003027
3028 devid = get_device_id(&dev->dev);
3029
Joerg Roedel87a64d52009-11-24 17:26:43 +01003030 dma_dom = dma_ops_domain_alloc();
Joerg Roedelc432f3d2008-06-26 21:28:04 +02003031 if (!dma_dom)
3032 continue;
3033 init_unity_mappings_for_device(dma_dom, devid);
Joerg Roedelbd60b732008-09-11 10:24:48 +02003034 dma_dom->target_dev = devid;
3035
Joerg Roedel15898bb2009-11-24 15:39:42 +01003036 attach_device(&dev->dev, &dma_dom->domain);
Joerg Roedelbe831292009-11-23 12:50:00 +01003037
Joerg Roedelbd60b732008-09-11 10:24:48 +02003038 list_add_tail(&dma_dom->list, &iommu_pd_list);
Joerg Roedelc432f3d2008-06-26 21:28:04 +02003039 }
3040}
3041
FUJITA Tomonori160c1d82009-01-05 23:59:02 +09003042static struct dma_map_ops amd_iommu_dma_ops = {
Andrzej Pietrasiewiczbaa676f2012-03-27 14:28:18 +02003043 .alloc = alloc_coherent,
3044 .free = free_coherent,
FUJITA Tomonori51491362009-01-05 23:47:25 +09003045 .map_page = map_page,
3046 .unmap_page = unmap_page,
Joerg Roedel6631ee92008-06-26 21:28:05 +02003047 .map_sg = map_sg,
3048 .unmap_sg = unmap_sg,
Joerg Roedelb39ba6a2008-09-09 18:40:46 +02003049 .dma_supported = amd_iommu_dma_supported,
Joerg Roedel6631ee92008-06-26 21:28:05 +02003050};
3051
Joerg Roedel27c21272011-05-30 15:56:24 +02003052static unsigned device_dma_ops_init(void)
3053{
Joerg Roedel5abcdba2011-12-01 15:49:45 +01003054 struct iommu_dev_data *dev_data;
Joerg Roedel27c21272011-05-30 15:56:24 +02003055 struct pci_dev *pdev = NULL;
3056 unsigned unhandled = 0;
3057
3058 for_each_pci_dev(pdev) {
3059 if (!check_device(&pdev->dev)) {
Joerg Roedelaf1be042012-01-18 14:03:11 +01003060
3061 iommu_ignore_device(&pdev->dev);
3062
Joerg Roedel27c21272011-05-30 15:56:24 +02003063 unhandled += 1;
3064 continue;
3065 }
3066
Joerg Roedel5abcdba2011-12-01 15:49:45 +01003067 dev_data = get_dev_data(&pdev->dev);
3068
3069 if (!dev_data->passthrough)
3070 pdev->dev.archdata.dma_ops = &amd_iommu_dma_ops;
3071 else
3072 pdev->dev.archdata.dma_ops = &nommu_dma_ops;
Joerg Roedel27c21272011-05-30 15:56:24 +02003073 }
3074
3075 return unhandled;
3076}
3077
Joerg Roedel431b2a22008-07-11 17:14:22 +02003078/*
3079 * The function which clues the AMD IOMMU driver into dma_ops.
3080 */
Joerg Roedelf5325092010-01-22 17:44:35 +01003081
3082void __init amd_iommu_init_api(void)
3083{
Joerg Roedel2cc21c42011-09-06 17:56:07 +02003084 bus_set_iommu(&pci_bus_type, &amd_iommu_ops);
Joerg Roedelf5325092010-01-22 17:44:35 +01003085}
3086
Joerg Roedel6631ee92008-06-26 21:28:05 +02003087int __init amd_iommu_init_dma_ops(void)
3088{
3089 struct amd_iommu *iommu;
Joerg Roedel27c21272011-05-30 15:56:24 +02003090 int ret, unhandled;
Joerg Roedel6631ee92008-06-26 21:28:05 +02003091
Joerg Roedel431b2a22008-07-11 17:14:22 +02003092 /*
3093 * first allocate a default protection domain for every IOMMU we
3094 * found in the system. Devices not assigned to any other
3095 * protection domain will be assigned to the default one.
3096 */
Joerg Roedel3bd22172009-05-04 15:06:20 +02003097 for_each_iommu(iommu) {
Joerg Roedel87a64d52009-11-24 17:26:43 +01003098 iommu->default_dom = dma_ops_domain_alloc();
Joerg Roedel6631ee92008-06-26 21:28:05 +02003099 if (iommu->default_dom == NULL)
3100 return -ENOMEM;
Joerg Roedele2dc14a2008-12-10 18:48:59 +01003101 iommu->default_dom->domain.flags |= PD_DEFAULT_MASK;
Joerg Roedel6631ee92008-06-26 21:28:05 +02003102 ret = iommu_init_unity_mappings(iommu);
3103 if (ret)
3104 goto free_domains;
3105 }
3106
Joerg Roedel431b2a22008-07-11 17:14:22 +02003107 /*
Joerg Roedel8793abe2009-11-27 11:40:33 +01003108 * Pre-allocate the protection domains for each device.
Joerg Roedel431b2a22008-07-11 17:14:22 +02003109 */
Joerg Roedel8793abe2009-11-27 11:40:33 +01003110 prealloc_protection_domains();
Joerg Roedel6631ee92008-06-26 21:28:05 +02003111
3112 iommu_detected = 1;
FUJITA Tomonori75f1cdf2009-11-10 19:46:20 +09003113 swiotlb = 0;
Joerg Roedel6631ee92008-06-26 21:28:05 +02003114
Joerg Roedel431b2a22008-07-11 17:14:22 +02003115 /* Make the driver finally visible to the drivers */
Joerg Roedel27c21272011-05-30 15:56:24 +02003116 unhandled = device_dma_ops_init();
3117 if (unhandled && max_pfn > MAX_DMA32_PFN) {
3118 /* There are unhandled devices - initialize swiotlb for them */
3119 swiotlb = 1;
3120 }
Joerg Roedel6631ee92008-06-26 21:28:05 +02003121
Joerg Roedel7f265082008-12-12 13:50:21 +01003122 amd_iommu_stats_init();
3123
Joerg Roedel62410ee2012-06-12 16:42:43 +02003124 if (amd_iommu_unmap_flush)
3125 pr_info("AMD-Vi: IO/TLB flush on unmap enabled\n");
3126 else
3127 pr_info("AMD-Vi: Lazy IO/TLB flushing enabled\n");
3128
Joerg Roedel6631ee92008-06-26 21:28:05 +02003129 return 0;
3130
3131free_domains:
3132
Joerg Roedel3bd22172009-05-04 15:06:20 +02003133 for_each_iommu(iommu) {
Cyril Roelandt91457df2013-02-12 05:01:50 +01003134 dma_ops_domain_free(iommu->default_dom);
Joerg Roedel6631ee92008-06-26 21:28:05 +02003135 }
3136
3137 return ret;
3138}
Joerg Roedel6d98cd82008-12-08 12:05:55 +01003139
3140/*****************************************************************************
3141 *
3142 * The following functions belong to the exported interface of AMD IOMMU
3143 *
3144 * This interface allows access to lower level functions of the IOMMU
3145 * like protection domain handling and assignement of devices to domains
3146 * which is not possible with the dma_ops interface.
3147 *
3148 *****************************************************************************/
3149
Joerg Roedel6d98cd82008-12-08 12:05:55 +01003150static void cleanup_domain(struct protection_domain *domain)
3151{
Joerg Roedel492667d2009-11-27 13:25:47 +01003152 struct iommu_dev_data *dev_data, *next;
Joerg Roedel6d98cd82008-12-08 12:05:55 +01003153 unsigned long flags;
Joerg Roedel6d98cd82008-12-08 12:05:55 +01003154
3155 write_lock_irqsave(&amd_iommu_devtable_lock, flags);
3156
Joerg Roedel492667d2009-11-27 13:25:47 +01003157 list_for_each_entry_safe(dev_data, next, &domain->dev_list, list) {
Joerg Roedelec9e79e2011-06-09 17:25:50 +02003158 __detach_device(dev_data);
Joerg Roedel492667d2009-11-27 13:25:47 +01003159 atomic_set(&dev_data->bind, 0);
3160 }
Joerg Roedel6d98cd82008-12-08 12:05:55 +01003161
3162 write_unlock_irqrestore(&amd_iommu_devtable_lock, flags);
3163}
3164
Joerg Roedel26508152009-08-26 16:52:40 +02003165static void protection_domain_free(struct protection_domain *domain)
3166{
3167 if (!domain)
3168 return;
3169
Joerg Roedelaeb26f52009-11-20 16:44:01 +01003170 del_domain_from_list(domain);
3171
Joerg Roedel26508152009-08-26 16:52:40 +02003172 if (domain->id)
3173 domain_id_free(domain->id);
3174
3175 kfree(domain);
3176}
3177
3178static struct protection_domain *protection_domain_alloc(void)
Joerg Roedelc156e342008-12-02 18:13:27 +01003179{
3180 struct protection_domain *domain;
3181
3182 domain = kzalloc(sizeof(*domain), GFP_KERNEL);
3183 if (!domain)
Joerg Roedel26508152009-08-26 16:52:40 +02003184 return NULL;
Joerg Roedelc156e342008-12-02 18:13:27 +01003185
3186 spin_lock_init(&domain->lock);
Joerg Roedel5d214fe2010-02-08 14:44:49 +01003187 mutex_init(&domain->api_lock);
Joerg Roedelc156e342008-12-02 18:13:27 +01003188 domain->id = domain_id_alloc();
3189 if (!domain->id)
Joerg Roedel26508152009-08-26 16:52:40 +02003190 goto out_err;
Joerg Roedel7c392cb2009-11-26 11:13:32 +01003191 INIT_LIST_HEAD(&domain->dev_list);
Joerg Roedel26508152009-08-26 16:52:40 +02003192
Joerg Roedelaeb26f52009-11-20 16:44:01 +01003193 add_domain_to_list(domain);
3194
Joerg Roedel26508152009-08-26 16:52:40 +02003195 return domain;
3196
3197out_err:
3198 kfree(domain);
3199
3200 return NULL;
3201}
3202
Joerg Roedel5abcdba2011-12-01 15:49:45 +01003203static int __init alloc_passthrough_domain(void)
3204{
3205 if (pt_domain != NULL)
3206 return 0;
3207
3208 /* allocate passthrough domain */
3209 pt_domain = protection_domain_alloc();
3210 if (!pt_domain)
3211 return -ENOMEM;
3212
3213 pt_domain->mode = PAGE_MODE_NONE;
3214
3215 return 0;
3216}
Joerg Roedel26508152009-08-26 16:52:40 +02003217static int amd_iommu_domain_init(struct iommu_domain *dom)
3218{
3219 struct protection_domain *domain;
3220
3221 domain = protection_domain_alloc();
3222 if (!domain)
Joerg Roedelc156e342008-12-02 18:13:27 +01003223 goto out_free;
Joerg Roedel26508152009-08-26 16:52:40 +02003224
3225 domain->mode = PAGE_MODE_3_LEVEL;
Joerg Roedelc156e342008-12-02 18:13:27 +01003226 domain->pt_root = (void *)get_zeroed_page(GFP_KERNEL);
3227 if (!domain->pt_root)
3228 goto out_free;
3229
Joerg Roedelf3572db2011-11-23 12:36:25 +01003230 domain->iommu_domain = dom;
3231
Joerg Roedelc156e342008-12-02 18:13:27 +01003232 dom->priv = domain;
3233
Joerg Roedel0ff64f82012-01-26 19:40:53 +01003234 dom->geometry.aperture_start = 0;
3235 dom->geometry.aperture_end = ~0ULL;
3236 dom->geometry.force_aperture = true;
3237
Joerg Roedelc156e342008-12-02 18:13:27 +01003238 return 0;
3239
3240out_free:
Joerg Roedel26508152009-08-26 16:52:40 +02003241 protection_domain_free(domain);
Joerg Roedelc156e342008-12-02 18:13:27 +01003242
3243 return -ENOMEM;
3244}
3245
Joerg Roedel98383fc2008-12-02 18:34:12 +01003246static void amd_iommu_domain_destroy(struct iommu_domain *dom)
3247{
3248 struct protection_domain *domain = dom->priv;
3249
3250 if (!domain)
3251 return;
3252
3253 if (domain->dev_cnt > 0)
3254 cleanup_domain(domain);
3255
3256 BUG_ON(domain->dev_cnt != 0);
3257
Joerg Roedel132bd682011-11-17 14:18:46 +01003258 if (domain->mode != PAGE_MODE_NONE)
3259 free_pagetable(domain);
Joerg Roedel98383fc2008-12-02 18:34:12 +01003260
Joerg Roedel52815b72011-11-17 17:24:28 +01003261 if (domain->flags & PD_IOMMUV2_MASK)
3262 free_gcr3_table(domain);
3263
Joerg Roedel8b408fe2010-03-08 14:20:07 +01003264 protection_domain_free(domain);
Joerg Roedel98383fc2008-12-02 18:34:12 +01003265
3266 dom->priv = NULL;
3267}
3268
Joerg Roedel684f2882008-12-08 12:07:44 +01003269static void amd_iommu_detach_device(struct iommu_domain *dom,
3270 struct device *dev)
3271{
Joerg Roedel657cbb62009-11-23 15:26:46 +01003272 struct iommu_dev_data *dev_data = dev->archdata.iommu;
Joerg Roedel684f2882008-12-08 12:07:44 +01003273 struct amd_iommu *iommu;
Joerg Roedel684f2882008-12-08 12:07:44 +01003274 u16 devid;
3275
Joerg Roedel98fc5a62009-11-24 17:19:23 +01003276 if (!check_device(dev))
Joerg Roedel684f2882008-12-08 12:07:44 +01003277 return;
3278
Joerg Roedel98fc5a62009-11-24 17:19:23 +01003279 devid = get_device_id(dev);
Joerg Roedel684f2882008-12-08 12:07:44 +01003280
Joerg Roedel657cbb62009-11-23 15:26:46 +01003281 if (dev_data->domain != NULL)
Joerg Roedel15898bb2009-11-24 15:39:42 +01003282 detach_device(dev);
Joerg Roedel684f2882008-12-08 12:07:44 +01003283
3284 iommu = amd_iommu_rlookup_table[devid];
3285 if (!iommu)
3286 return;
3287
Joerg Roedel684f2882008-12-08 12:07:44 +01003288 iommu_completion_wait(iommu);
3289}
3290
Joerg Roedel01106062008-12-02 19:34:11 +01003291static int amd_iommu_attach_device(struct iommu_domain *dom,
3292 struct device *dev)
3293{
3294 struct protection_domain *domain = dom->priv;
Joerg Roedel657cbb62009-11-23 15:26:46 +01003295 struct iommu_dev_data *dev_data;
Joerg Roedel01106062008-12-02 19:34:11 +01003296 struct amd_iommu *iommu;
Joerg Roedel15898bb2009-11-24 15:39:42 +01003297 int ret;
Joerg Roedel01106062008-12-02 19:34:11 +01003298
Joerg Roedel98fc5a62009-11-24 17:19:23 +01003299 if (!check_device(dev))
Joerg Roedel01106062008-12-02 19:34:11 +01003300 return -EINVAL;
3301
Joerg Roedel657cbb62009-11-23 15:26:46 +01003302 dev_data = dev->archdata.iommu;
3303
Joerg Roedelf62dda62011-06-09 12:55:35 +02003304 iommu = amd_iommu_rlookup_table[dev_data->devid];
Joerg Roedel01106062008-12-02 19:34:11 +01003305 if (!iommu)
3306 return -EINVAL;
3307
Joerg Roedel657cbb62009-11-23 15:26:46 +01003308 if (dev_data->domain)
Joerg Roedel15898bb2009-11-24 15:39:42 +01003309 detach_device(dev);
Joerg Roedel01106062008-12-02 19:34:11 +01003310
Joerg Roedel15898bb2009-11-24 15:39:42 +01003311 ret = attach_device(dev, domain);
Joerg Roedel01106062008-12-02 19:34:11 +01003312
3313 iommu_completion_wait(iommu);
3314
Joerg Roedel15898bb2009-11-24 15:39:42 +01003315 return ret;
Joerg Roedel01106062008-12-02 19:34:11 +01003316}
3317
Joerg Roedel468e2362010-01-21 16:37:36 +01003318static int amd_iommu_map(struct iommu_domain *dom, unsigned long iova,
Ohad Ben-Cohen50090652011-11-10 11:32:25 +02003319 phys_addr_t paddr, size_t page_size, int iommu_prot)
Joerg Roedelc6229ca2008-12-02 19:48:43 +01003320{
3321 struct protection_domain *domain = dom->priv;
Joerg Roedelc6229ca2008-12-02 19:48:43 +01003322 int prot = 0;
3323 int ret;
3324
Joerg Roedel132bd682011-11-17 14:18:46 +01003325 if (domain->mode == PAGE_MODE_NONE)
3326 return -EINVAL;
3327
Joerg Roedelc6229ca2008-12-02 19:48:43 +01003328 if (iommu_prot & IOMMU_READ)
3329 prot |= IOMMU_PROT_IR;
3330 if (iommu_prot & IOMMU_WRITE)
3331 prot |= IOMMU_PROT_IW;
3332
Joerg Roedel5d214fe2010-02-08 14:44:49 +01003333 mutex_lock(&domain->api_lock);
Joerg Roedel795e74f72010-05-11 17:40:57 +02003334 ret = iommu_map_page(domain, iova, paddr, prot, page_size);
Joerg Roedel5d214fe2010-02-08 14:44:49 +01003335 mutex_unlock(&domain->api_lock);
3336
Joerg Roedel795e74f72010-05-11 17:40:57 +02003337 return ret;
Joerg Roedelc6229ca2008-12-02 19:48:43 +01003338}
3339
Ohad Ben-Cohen50090652011-11-10 11:32:25 +02003340static size_t amd_iommu_unmap(struct iommu_domain *dom, unsigned long iova,
3341 size_t page_size)
Joerg Roedeleb74ff62008-12-02 19:59:10 +01003342{
Joerg Roedeleb74ff62008-12-02 19:59:10 +01003343 struct protection_domain *domain = dom->priv;
Ohad Ben-Cohen50090652011-11-10 11:32:25 +02003344 size_t unmap_size;
Joerg Roedeleb74ff62008-12-02 19:59:10 +01003345
Joerg Roedel132bd682011-11-17 14:18:46 +01003346 if (domain->mode == PAGE_MODE_NONE)
3347 return -EINVAL;
3348
Joerg Roedel5d214fe2010-02-08 14:44:49 +01003349 mutex_lock(&domain->api_lock);
Joerg Roedel468e2362010-01-21 16:37:36 +01003350 unmap_size = iommu_unmap_page(domain, iova, page_size);
Joerg Roedel795e74f72010-05-11 17:40:57 +02003351 mutex_unlock(&domain->api_lock);
Joerg Roedeleb74ff62008-12-02 19:59:10 +01003352
Joerg Roedel17b124b2011-04-06 18:01:35 +02003353 domain_flush_tlb_pde(domain);
Joerg Roedel5d214fe2010-02-08 14:44:49 +01003354
Ohad Ben-Cohen50090652011-11-10 11:32:25 +02003355 return unmap_size;
Joerg Roedeleb74ff62008-12-02 19:59:10 +01003356}
3357
Joerg Roedel645c4c82008-12-02 20:05:50 +01003358static phys_addr_t amd_iommu_iova_to_phys(struct iommu_domain *dom,
Varun Sethibb5547ac2013-03-29 01:23:58 +05303359 dma_addr_t iova)
Joerg Roedel645c4c82008-12-02 20:05:50 +01003360{
3361 struct protection_domain *domain = dom->priv;
Joerg Roedelf03152b2010-01-21 16:15:24 +01003362 unsigned long offset_mask;
Joerg Roedel645c4c82008-12-02 20:05:50 +01003363 phys_addr_t paddr;
Joerg Roedelf03152b2010-01-21 16:15:24 +01003364 u64 *pte, __pte;
Joerg Roedel645c4c82008-12-02 20:05:50 +01003365
Joerg Roedel132bd682011-11-17 14:18:46 +01003366 if (domain->mode == PAGE_MODE_NONE)
3367 return iova;
3368
Joerg Roedel24cd7722010-01-19 17:27:39 +01003369 pte = fetch_pte(domain, iova);
Joerg Roedel645c4c82008-12-02 20:05:50 +01003370
Joerg Roedela6d41a42009-09-02 17:08:55 +02003371 if (!pte || !IOMMU_PTE_PRESENT(*pte))
Joerg Roedel645c4c82008-12-02 20:05:50 +01003372 return 0;
3373
Joerg Roedelf03152b2010-01-21 16:15:24 +01003374 if (PM_PTE_LEVEL(*pte) == 0)
3375 offset_mask = PAGE_SIZE - 1;
3376 else
3377 offset_mask = PTE_PAGE_SIZE(*pte) - 1;
3378
3379 __pte = *pte & PM_ADDR_MASK;
3380 paddr = (__pte & ~offset_mask) | (iova & offset_mask);
Joerg Roedel645c4c82008-12-02 20:05:50 +01003381
3382 return paddr;
3383}
3384
Sheng Yangdbb9fd82009-03-18 15:33:06 +08003385static int amd_iommu_domain_has_cap(struct iommu_domain *domain,
3386 unsigned long cap)
3387{
Joerg Roedel80a506b2010-07-27 17:14:24 +02003388 switch (cap) {
3389 case IOMMU_CAP_CACHE_COHERENCY:
3390 return 1;
Joerg Roedelbdddadc2012-07-02 18:38:13 +02003391 case IOMMU_CAP_INTR_REMAP:
3392 return irq_remapping_enabled;
Joerg Roedel80a506b2010-07-27 17:14:24 +02003393 }
3394
Sheng Yangdbb9fd82009-03-18 15:33:06 +08003395 return 0;
3396}
3397
Joerg Roedel26961ef2008-12-03 17:00:17 +01003398static struct iommu_ops amd_iommu_ops = {
3399 .domain_init = amd_iommu_domain_init,
3400 .domain_destroy = amd_iommu_domain_destroy,
3401 .attach_dev = amd_iommu_attach_device,
3402 .detach_dev = amd_iommu_detach_device,
Joerg Roedel468e2362010-01-21 16:37:36 +01003403 .map = amd_iommu_map,
3404 .unmap = amd_iommu_unmap,
Joerg Roedel26961ef2008-12-03 17:00:17 +01003405 .iova_to_phys = amd_iommu_iova_to_phys,
Sheng Yangdbb9fd82009-03-18 15:33:06 +08003406 .domain_has_cap = amd_iommu_domain_has_cap,
Ohad Ben-Cohenaa3de9c2011-11-10 11:32:29 +02003407 .pgsize_bitmap = AMD_IOMMU_PGSIZES,
Joerg Roedel26961ef2008-12-03 17:00:17 +01003408};
3409
Joerg Roedel0feae532009-08-26 15:26:30 +02003410/*****************************************************************************
3411 *
3412 * The next functions do a basic initialization of IOMMU for pass through
3413 * mode
3414 *
3415 * In passthrough mode the IOMMU is initialized and enabled but not used for
3416 * DMA-API translation.
3417 *
3418 *****************************************************************************/
3419
3420int __init amd_iommu_init_passthrough(void)
3421{
Joerg Roedel5abcdba2011-12-01 15:49:45 +01003422 struct iommu_dev_data *dev_data;
Joerg Roedel0feae532009-08-26 15:26:30 +02003423 struct pci_dev *dev = NULL;
Joerg Roedel5abcdba2011-12-01 15:49:45 +01003424 int ret;
Joerg Roedel0feae532009-08-26 15:26:30 +02003425
Joerg Roedel5abcdba2011-12-01 15:49:45 +01003426 ret = alloc_passthrough_domain();
3427 if (ret)
3428 return ret;
Joerg Roedel0feae532009-08-26 15:26:30 +02003429
Kulikov Vasiliy6c54aab2010-07-03 12:03:51 -04003430 for_each_pci_dev(dev) {
Joerg Roedel98fc5a62009-11-24 17:19:23 +01003431 if (!check_device(&dev->dev))
Joerg Roedel0feae532009-08-26 15:26:30 +02003432 continue;
3433
Joerg Roedel5abcdba2011-12-01 15:49:45 +01003434 dev_data = get_dev_data(&dev->dev);
3435 dev_data->passthrough = true;
3436
Joerg Roedel15898bb2009-11-24 15:39:42 +01003437 attach_device(&dev->dev, pt_domain);
Joerg Roedel0feae532009-08-26 15:26:30 +02003438 }
3439
Joerg Roedel2655d7a2011-12-22 12:35:38 +01003440 amd_iommu_stats_init();
3441
Joerg Roedel0feae532009-08-26 15:26:30 +02003442 pr_info("AMD-Vi: Initialized for Passthrough Mode\n");
3443
3444 return 0;
3445}
Joerg Roedel72e1dcc2011-11-10 19:13:51 +01003446
3447/* IOMMUv2 specific functions */
3448int amd_iommu_register_ppr_notifier(struct notifier_block *nb)
3449{
3450 return atomic_notifier_chain_register(&ppr_notifier, nb);
3451}
3452EXPORT_SYMBOL(amd_iommu_register_ppr_notifier);
3453
3454int amd_iommu_unregister_ppr_notifier(struct notifier_block *nb)
3455{
3456 return atomic_notifier_chain_unregister(&ppr_notifier, nb);
3457}
3458EXPORT_SYMBOL(amd_iommu_unregister_ppr_notifier);
Joerg Roedel132bd682011-11-17 14:18:46 +01003459
3460void amd_iommu_domain_direct_map(struct iommu_domain *dom)
3461{
3462 struct protection_domain *domain = dom->priv;
3463 unsigned long flags;
3464
3465 spin_lock_irqsave(&domain->lock, flags);
3466
3467 /* Update data structure */
3468 domain->mode = PAGE_MODE_NONE;
3469 domain->updated = true;
3470
3471 /* Make changes visible to IOMMUs */
3472 update_domain(domain);
3473
3474 /* Page-table is not visible to IOMMU anymore, so free it */
3475 free_pagetable(domain);
3476
3477 spin_unlock_irqrestore(&domain->lock, flags);
3478}
3479EXPORT_SYMBOL(amd_iommu_domain_direct_map);
Joerg Roedel52815b72011-11-17 17:24:28 +01003480
3481int amd_iommu_domain_enable_v2(struct iommu_domain *dom, int pasids)
3482{
3483 struct protection_domain *domain = dom->priv;
3484 unsigned long flags;
3485 int levels, ret;
3486
3487 if (pasids <= 0 || pasids > (PASID_MASK + 1))
3488 return -EINVAL;
3489
3490 /* Number of GCR3 table levels required */
3491 for (levels = 0; (pasids - 1) & ~0x1ff; pasids >>= 9)
3492 levels += 1;
3493
3494 if (levels > amd_iommu_max_glx_val)
3495 return -EINVAL;
3496
3497 spin_lock_irqsave(&domain->lock, flags);
3498
3499 /*
3500 * Save us all sanity checks whether devices already in the
3501 * domain support IOMMUv2. Just force that the domain has no
3502 * devices attached when it is switched into IOMMUv2 mode.
3503 */
3504 ret = -EBUSY;
3505 if (domain->dev_cnt > 0 || domain->flags & PD_IOMMUV2_MASK)
3506 goto out;
3507
3508 ret = -ENOMEM;
3509 domain->gcr3_tbl = (void *)get_zeroed_page(GFP_ATOMIC);
3510 if (domain->gcr3_tbl == NULL)
3511 goto out;
3512
3513 domain->glx = levels;
3514 domain->flags |= PD_IOMMUV2_MASK;
3515 domain->updated = true;
3516
3517 update_domain(domain);
3518
3519 ret = 0;
3520
3521out:
3522 spin_unlock_irqrestore(&domain->lock, flags);
3523
3524 return ret;
3525}
3526EXPORT_SYMBOL(amd_iommu_domain_enable_v2);
Joerg Roedel22e266c2011-11-21 15:59:08 +01003527
3528static int __flush_pasid(struct protection_domain *domain, int pasid,
3529 u64 address, bool size)
3530{
3531 struct iommu_dev_data *dev_data;
3532 struct iommu_cmd cmd;
3533 int i, ret;
3534
3535 if (!(domain->flags & PD_IOMMUV2_MASK))
3536 return -EINVAL;
3537
3538 build_inv_iommu_pasid(&cmd, domain->id, pasid, address, size);
3539
3540 /*
3541 * IOMMU TLB needs to be flushed before Device TLB to
3542 * prevent device TLB refill from IOMMU TLB
3543 */
3544 for (i = 0; i < amd_iommus_present; ++i) {
3545 if (domain->dev_iommu[i] == 0)
3546 continue;
3547
3548 ret = iommu_queue_command(amd_iommus[i], &cmd);
3549 if (ret != 0)
3550 goto out;
3551 }
3552
3553 /* Wait until IOMMU TLB flushes are complete */
3554 domain_flush_complete(domain);
3555
3556 /* Now flush device TLBs */
3557 list_for_each_entry(dev_data, &domain->dev_list, list) {
3558 struct amd_iommu *iommu;
3559 int qdep;
3560
3561 BUG_ON(!dev_data->ats.enabled);
3562
3563 qdep = dev_data->ats.qdep;
3564 iommu = amd_iommu_rlookup_table[dev_data->devid];
3565
3566 build_inv_iotlb_pasid(&cmd, dev_data->devid, pasid,
3567 qdep, address, size);
3568
3569 ret = iommu_queue_command(iommu, &cmd);
3570 if (ret != 0)
3571 goto out;
3572 }
3573
3574 /* Wait until all device TLBs are flushed */
3575 domain_flush_complete(domain);
3576
3577 ret = 0;
3578
3579out:
3580
3581 return ret;
3582}
3583
3584static int __amd_iommu_flush_page(struct protection_domain *domain, int pasid,
3585 u64 address)
3586{
Joerg Roedel399be2f2011-12-01 16:53:47 +01003587 INC_STATS_COUNTER(invalidate_iotlb);
3588
Joerg Roedel22e266c2011-11-21 15:59:08 +01003589 return __flush_pasid(domain, pasid, address, false);
3590}
3591
3592int amd_iommu_flush_page(struct iommu_domain *dom, int pasid,
3593 u64 address)
3594{
3595 struct protection_domain *domain = dom->priv;
3596 unsigned long flags;
3597 int ret;
3598
3599 spin_lock_irqsave(&domain->lock, flags);
3600 ret = __amd_iommu_flush_page(domain, pasid, address);
3601 spin_unlock_irqrestore(&domain->lock, flags);
3602
3603 return ret;
3604}
3605EXPORT_SYMBOL(amd_iommu_flush_page);
3606
3607static int __amd_iommu_flush_tlb(struct protection_domain *domain, int pasid)
3608{
Joerg Roedel399be2f2011-12-01 16:53:47 +01003609 INC_STATS_COUNTER(invalidate_iotlb_all);
3610
Joerg Roedel22e266c2011-11-21 15:59:08 +01003611 return __flush_pasid(domain, pasid, CMD_INV_IOMMU_ALL_PAGES_ADDRESS,
3612 true);
3613}
3614
3615int amd_iommu_flush_tlb(struct iommu_domain *dom, int pasid)
3616{
3617 struct protection_domain *domain = dom->priv;
3618 unsigned long flags;
3619 int ret;
3620
3621 spin_lock_irqsave(&domain->lock, flags);
3622 ret = __amd_iommu_flush_tlb(domain, pasid);
3623 spin_unlock_irqrestore(&domain->lock, flags);
3624
3625 return ret;
3626}
3627EXPORT_SYMBOL(amd_iommu_flush_tlb);
3628
Joerg Roedelb16137b2011-11-21 16:50:23 +01003629static u64 *__get_gcr3_pte(u64 *root, int level, int pasid, bool alloc)
3630{
3631 int index;
3632 u64 *pte;
3633
3634 while (true) {
3635
3636 index = (pasid >> (9 * level)) & 0x1ff;
3637 pte = &root[index];
3638
3639 if (level == 0)
3640 break;
3641
3642 if (!(*pte & GCR3_VALID)) {
3643 if (!alloc)
3644 return NULL;
3645
3646 root = (void *)get_zeroed_page(GFP_ATOMIC);
3647 if (root == NULL)
3648 return NULL;
3649
3650 *pte = __pa(root) | GCR3_VALID;
3651 }
3652
3653 root = __va(*pte & PAGE_MASK);
3654
3655 level -= 1;
3656 }
3657
3658 return pte;
3659}
3660
3661static int __set_gcr3(struct protection_domain *domain, int pasid,
3662 unsigned long cr3)
3663{
3664 u64 *pte;
3665
3666 if (domain->mode != PAGE_MODE_NONE)
3667 return -EINVAL;
3668
3669 pte = __get_gcr3_pte(domain->gcr3_tbl, domain->glx, pasid, true);
3670 if (pte == NULL)
3671 return -ENOMEM;
3672
3673 *pte = (cr3 & PAGE_MASK) | GCR3_VALID;
3674
3675 return __amd_iommu_flush_tlb(domain, pasid);
3676}
3677
3678static int __clear_gcr3(struct protection_domain *domain, int pasid)
3679{
3680 u64 *pte;
3681
3682 if (domain->mode != PAGE_MODE_NONE)
3683 return -EINVAL;
3684
3685 pte = __get_gcr3_pte(domain->gcr3_tbl, domain->glx, pasid, false);
3686 if (pte == NULL)
3687 return 0;
3688
3689 *pte = 0;
3690
3691 return __amd_iommu_flush_tlb(domain, pasid);
3692}
3693
3694int amd_iommu_domain_set_gcr3(struct iommu_domain *dom, int pasid,
3695 unsigned long cr3)
3696{
3697 struct protection_domain *domain = dom->priv;
3698 unsigned long flags;
3699 int ret;
3700
3701 spin_lock_irqsave(&domain->lock, flags);
3702 ret = __set_gcr3(domain, pasid, cr3);
3703 spin_unlock_irqrestore(&domain->lock, flags);
3704
3705 return ret;
3706}
3707EXPORT_SYMBOL(amd_iommu_domain_set_gcr3);
3708
3709int amd_iommu_domain_clear_gcr3(struct iommu_domain *dom, int pasid)
3710{
3711 struct protection_domain *domain = dom->priv;
3712 unsigned long flags;
3713 int ret;
3714
3715 spin_lock_irqsave(&domain->lock, flags);
3716 ret = __clear_gcr3(domain, pasid);
3717 spin_unlock_irqrestore(&domain->lock, flags);
3718
3719 return ret;
3720}
3721EXPORT_SYMBOL(amd_iommu_domain_clear_gcr3);
Joerg Roedelc99afa22011-11-21 18:19:25 +01003722
3723int amd_iommu_complete_ppr(struct pci_dev *pdev, int pasid,
3724 int status, int tag)
3725{
3726 struct iommu_dev_data *dev_data;
3727 struct amd_iommu *iommu;
3728 struct iommu_cmd cmd;
3729
Joerg Roedel399be2f2011-12-01 16:53:47 +01003730 INC_STATS_COUNTER(complete_ppr);
3731
Joerg Roedelc99afa22011-11-21 18:19:25 +01003732 dev_data = get_dev_data(&pdev->dev);
3733 iommu = amd_iommu_rlookup_table[dev_data->devid];
3734
3735 build_complete_ppr(&cmd, dev_data->devid, pasid, status,
3736 tag, dev_data->pri_tlp);
3737
3738 return iommu_queue_command(iommu, &cmd);
3739}
3740EXPORT_SYMBOL(amd_iommu_complete_ppr);
Joerg Roedelf3572db2011-11-23 12:36:25 +01003741
3742struct iommu_domain *amd_iommu_get_v2_domain(struct pci_dev *pdev)
3743{
3744 struct protection_domain *domain;
3745
3746 domain = get_domain(&pdev->dev);
3747 if (IS_ERR(domain))
3748 return NULL;
3749
3750 /* Only return IOMMUv2 domains */
3751 if (!(domain->flags & PD_IOMMUV2_MASK))
3752 return NULL;
3753
3754 return domain->iommu_domain;
3755}
3756EXPORT_SYMBOL(amd_iommu_get_v2_domain);
Joerg Roedel6a113dd2011-12-01 12:04:58 +01003757
3758void amd_iommu_enable_device_erratum(struct pci_dev *pdev, u32 erratum)
3759{
3760 struct iommu_dev_data *dev_data;
3761
3762 if (!amd_iommu_v2_supported())
3763 return;
3764
3765 dev_data = get_dev_data(&pdev->dev);
3766 dev_data->errata |= (1 << erratum);
3767}
3768EXPORT_SYMBOL(amd_iommu_enable_device_erratum);
Joerg Roedel52efdb82011-12-07 12:01:36 +01003769
3770int amd_iommu_device_info(struct pci_dev *pdev,
3771 struct amd_iommu_device_info *info)
3772{
3773 int max_pasids;
3774 int pos;
3775
3776 if (pdev == NULL || info == NULL)
3777 return -EINVAL;
3778
3779 if (!amd_iommu_v2_supported())
3780 return -EINVAL;
3781
3782 memset(info, 0, sizeof(*info));
3783
3784 pos = pci_find_ext_capability(pdev, PCI_EXT_CAP_ID_ATS);
3785 if (pos)
3786 info->flags |= AMD_IOMMU_DEVICE_FLAG_ATS_SUP;
3787
3788 pos = pci_find_ext_capability(pdev, PCI_EXT_CAP_ID_PRI);
3789 if (pos)
3790 info->flags |= AMD_IOMMU_DEVICE_FLAG_PRI_SUP;
3791
3792 pos = pci_find_ext_capability(pdev, PCI_EXT_CAP_ID_PASID);
3793 if (pos) {
3794 int features;
3795
3796 max_pasids = 1 << (9 * (amd_iommu_max_glx_val + 1));
3797 max_pasids = min(max_pasids, (1 << 20));
3798
3799 info->flags |= AMD_IOMMU_DEVICE_FLAG_PASID_SUP;
3800 info->max_pasids = min(pci_max_pasids(pdev), max_pasids);
3801
3802 features = pci_pasid_features(pdev);
3803 if (features & PCI_PASID_CAP_EXEC)
3804 info->flags |= AMD_IOMMU_DEVICE_FLAG_EXEC_SUP;
3805 if (features & PCI_PASID_CAP_PRIV)
3806 info->flags |= AMD_IOMMU_DEVICE_FLAG_PRIV_SUP;
3807 }
3808
3809 return 0;
3810}
3811EXPORT_SYMBOL(amd_iommu_device_info);
Joerg Roedel2b324502012-06-21 16:29:10 +02003812
3813#ifdef CONFIG_IRQ_REMAP
3814
3815/*****************************************************************************
3816 *
3817 * Interrupt Remapping Implementation
3818 *
3819 *****************************************************************************/
3820
3821union irte {
3822 u32 val;
3823 struct {
3824 u32 valid : 1,
3825 no_fault : 1,
3826 int_type : 3,
3827 rq_eoi : 1,
3828 dm : 1,
3829 rsvd_1 : 1,
3830 destination : 8,
3831 vector : 8,
3832 rsvd_2 : 8;
3833 } fields;
3834};
3835
3836#define DTE_IRQ_PHYS_ADDR_MASK (((1ULL << 45)-1) << 6)
3837#define DTE_IRQ_REMAP_INTCTL (2ULL << 60)
3838#define DTE_IRQ_TABLE_LEN (8ULL << 1)
3839#define DTE_IRQ_REMAP_ENABLE 1ULL
3840
3841static void set_dte_irq_entry(u16 devid, struct irq_remap_table *table)
3842{
3843 u64 dte;
3844
3845 dte = amd_iommu_dev_table[devid].data[2];
3846 dte &= ~DTE_IRQ_PHYS_ADDR_MASK;
3847 dte |= virt_to_phys(table->table);
3848 dte |= DTE_IRQ_REMAP_INTCTL;
3849 dte |= DTE_IRQ_TABLE_LEN;
3850 dte |= DTE_IRQ_REMAP_ENABLE;
3851
3852 amd_iommu_dev_table[devid].data[2] = dte;
3853}
3854
3855#define IRTE_ALLOCATED (~1U)
3856
3857static struct irq_remap_table *get_irq_table(u16 devid, bool ioapic)
3858{
3859 struct irq_remap_table *table = NULL;
3860 struct amd_iommu *iommu;
3861 unsigned long flags;
3862 u16 alias;
3863
3864 write_lock_irqsave(&amd_iommu_devtable_lock, flags);
3865
3866 iommu = amd_iommu_rlookup_table[devid];
3867 if (!iommu)
3868 goto out_unlock;
3869
3870 table = irq_lookup_table[devid];
3871 if (table)
3872 goto out;
3873
3874 alias = amd_iommu_alias_table[devid];
3875 table = irq_lookup_table[alias];
3876 if (table) {
3877 irq_lookup_table[devid] = table;
3878 set_dte_irq_entry(devid, table);
3879 iommu_flush_dte(iommu, devid);
3880 goto out;
3881 }
3882
3883 /* Nothing there yet, allocate new irq remapping table */
3884 table = kzalloc(sizeof(*table), GFP_ATOMIC);
3885 if (!table)
3886 goto out;
3887
Joerg Roedel197887f2013-04-09 21:14:08 +02003888 /* Initialize table spin-lock */
3889 spin_lock_init(&table->lock);
3890
Joerg Roedel2b324502012-06-21 16:29:10 +02003891 if (ioapic)
3892 /* Keep the first 32 indexes free for IOAPIC interrupts */
3893 table->min_index = 32;
3894
3895 table->table = kmem_cache_alloc(amd_iommu_irq_cache, GFP_ATOMIC);
3896 if (!table->table) {
3897 kfree(table);
Dan Carpenter821f0f62012-10-02 11:34:40 +03003898 table = NULL;
Joerg Roedel2b324502012-06-21 16:29:10 +02003899 goto out;
3900 }
3901
3902 memset(table->table, 0, MAX_IRQS_PER_TABLE * sizeof(u32));
3903
3904 if (ioapic) {
3905 int i;
3906
3907 for (i = 0; i < 32; ++i)
3908 table->table[i] = IRTE_ALLOCATED;
3909 }
3910
3911 irq_lookup_table[devid] = table;
3912 set_dte_irq_entry(devid, table);
3913 iommu_flush_dte(iommu, devid);
3914 if (devid != alias) {
3915 irq_lookup_table[alias] = table;
Alex Williamsone028a9e2014-04-22 10:08:40 -06003916 set_dte_irq_entry(alias, table);
Joerg Roedel2b324502012-06-21 16:29:10 +02003917 iommu_flush_dte(iommu, alias);
3918 }
3919
3920out:
3921 iommu_completion_wait(iommu);
3922
3923out_unlock:
3924 write_unlock_irqrestore(&amd_iommu_devtable_lock, flags);
3925
3926 return table;
3927}
3928
3929static int alloc_irq_index(struct irq_cfg *cfg, u16 devid, int count)
3930{
3931 struct irq_remap_table *table;
3932 unsigned long flags;
3933 int index, c;
3934
3935 table = get_irq_table(devid, false);
3936 if (!table)
3937 return -ENODEV;
3938
3939 spin_lock_irqsave(&table->lock, flags);
3940
3941 /* Scan table for free entries */
3942 for (c = 0, index = table->min_index;
3943 index < MAX_IRQS_PER_TABLE;
3944 ++index) {
3945 if (table->table[index] == 0)
3946 c += 1;
3947 else
3948 c = 0;
3949
3950 if (c == count) {
Joerg Roedel0dfedd62013-04-09 15:39:16 +02003951 struct irq_2_irte *irte_info;
Joerg Roedel2b324502012-06-21 16:29:10 +02003952
3953 for (; c != 0; --c)
3954 table->table[index - c + 1] = IRTE_ALLOCATED;
3955
3956 index -= count - 1;
3957
Joerg Roedel9b1b0e42012-09-26 12:44:45 +02003958 cfg->remapped = 1;
Joerg Roedel0dfedd62013-04-09 15:39:16 +02003959 irte_info = &cfg->irq_2_irte;
3960 irte_info->devid = devid;
3961 irte_info->index = index;
Joerg Roedel2b324502012-06-21 16:29:10 +02003962
3963 goto out;
3964 }
3965 }
3966
3967 index = -ENOSPC;
3968
3969out:
3970 spin_unlock_irqrestore(&table->lock, flags);
3971
3972 return index;
3973}
3974
3975static int get_irte(u16 devid, int index, union irte *irte)
3976{
3977 struct irq_remap_table *table;
3978 unsigned long flags;
3979
3980 table = get_irq_table(devid, false);
3981 if (!table)
3982 return -ENOMEM;
3983
3984 spin_lock_irqsave(&table->lock, flags);
3985 irte->val = table->table[index];
3986 spin_unlock_irqrestore(&table->lock, flags);
3987
3988 return 0;
3989}
3990
3991static int modify_irte(u16 devid, int index, union irte irte)
3992{
3993 struct irq_remap_table *table;
3994 struct amd_iommu *iommu;
3995 unsigned long flags;
3996
3997 iommu = amd_iommu_rlookup_table[devid];
3998 if (iommu == NULL)
3999 return -EINVAL;
4000
4001 table = get_irq_table(devid, false);
4002 if (!table)
4003 return -ENOMEM;
4004
4005 spin_lock_irqsave(&table->lock, flags);
4006 table->table[index] = irte.val;
4007 spin_unlock_irqrestore(&table->lock, flags);
4008
4009 iommu_flush_irt(iommu, devid);
4010 iommu_completion_wait(iommu);
4011
4012 return 0;
4013}
4014
4015static void free_irte(u16 devid, int index)
4016{
4017 struct irq_remap_table *table;
4018 struct amd_iommu *iommu;
4019 unsigned long flags;
4020
4021 iommu = amd_iommu_rlookup_table[devid];
4022 if (iommu == NULL)
4023 return;
4024
4025 table = get_irq_table(devid, false);
4026 if (!table)
4027 return;
4028
4029 spin_lock_irqsave(&table->lock, flags);
4030 table->table[index] = 0;
4031 spin_unlock_irqrestore(&table->lock, flags);
4032
4033 iommu_flush_irt(iommu, devid);
4034 iommu_completion_wait(iommu);
4035}
4036
Joerg Roedel5527de72012-06-26 11:17:32 +02004037static int setup_ioapic_entry(int irq, struct IO_APIC_route_entry *entry,
4038 unsigned int destination, int vector,
4039 struct io_apic_irq_attr *attr)
4040{
4041 struct irq_remap_table *table;
Joerg Roedel0dfedd62013-04-09 15:39:16 +02004042 struct irq_2_irte *irte_info;
Joerg Roedel5527de72012-06-26 11:17:32 +02004043 struct irq_cfg *cfg;
4044 union irte irte;
4045 int ioapic_id;
4046 int index;
4047 int devid;
4048 int ret;
4049
4050 cfg = irq_get_chip_data(irq);
4051 if (!cfg)
4052 return -EINVAL;
4053
Joerg Roedel0dfedd62013-04-09 15:39:16 +02004054 irte_info = &cfg->irq_2_irte;
Joerg Roedel5527de72012-06-26 11:17:32 +02004055 ioapic_id = mpc_ioapic_id(attr->ioapic);
4056 devid = get_ioapic_devid(ioapic_id);
4057
4058 if (devid < 0)
4059 return devid;
4060
4061 table = get_irq_table(devid, true);
4062 if (table == NULL)
4063 return -ENOMEM;
4064
4065 index = attr->ioapic_pin;
4066
4067 /* Setup IRQ remapping info */
Joerg Roedel9b1b0e42012-09-26 12:44:45 +02004068 cfg->remapped = 1;
Joerg Roedel0dfedd62013-04-09 15:39:16 +02004069 irte_info->devid = devid;
4070 irte_info->index = index;
Joerg Roedel5527de72012-06-26 11:17:32 +02004071
4072 /* Setup IRTE for IOMMU */
4073 irte.val = 0;
4074 irte.fields.vector = vector;
4075 irte.fields.int_type = apic->irq_delivery_mode;
4076 irte.fields.destination = destination;
4077 irte.fields.dm = apic->irq_dest_mode;
4078 irte.fields.valid = 1;
4079
4080 ret = modify_irte(devid, index, irte);
4081 if (ret)
4082 return ret;
4083
4084 /* Setup IOAPIC entry */
4085 memset(entry, 0, sizeof(*entry));
4086
4087 entry->vector = index;
4088 entry->mask = 0;
4089 entry->trigger = attr->trigger;
4090 entry->polarity = attr->polarity;
4091
4092 /*
4093 * Mask level triggered irqs.
Joerg Roedel5527de72012-06-26 11:17:32 +02004094 */
4095 if (attr->trigger)
4096 entry->mask = 1;
4097
4098 return 0;
4099}
4100
4101static int set_affinity(struct irq_data *data, const struct cpumask *mask,
4102 bool force)
4103{
Joerg Roedel0dfedd62013-04-09 15:39:16 +02004104 struct irq_2_irte *irte_info;
Joerg Roedel5527de72012-06-26 11:17:32 +02004105 unsigned int dest, irq;
4106 struct irq_cfg *cfg;
4107 union irte irte;
4108 int err;
4109
4110 if (!config_enabled(CONFIG_SMP))
4111 return -1;
4112
4113 cfg = data->chip_data;
4114 irq = data->irq;
Joerg Roedel0dfedd62013-04-09 15:39:16 +02004115 irte_info = &cfg->irq_2_irte;
Joerg Roedel5527de72012-06-26 11:17:32 +02004116
4117 if (!cpumask_intersects(mask, cpu_online_mask))
4118 return -EINVAL;
4119
Joerg Roedel0dfedd62013-04-09 15:39:16 +02004120 if (get_irte(irte_info->devid, irte_info->index, &irte))
Joerg Roedel5527de72012-06-26 11:17:32 +02004121 return -EBUSY;
4122
4123 if (assign_irq_vector(irq, cfg, mask))
4124 return -EBUSY;
4125
4126 err = apic->cpu_mask_to_apicid_and(cfg->domain, mask, &dest);
4127 if (err) {
4128 if (assign_irq_vector(irq, cfg, data->affinity))
4129 pr_err("AMD-Vi: Failed to recover vector for irq %d\n", irq);
4130 return err;
4131 }
4132
4133 irte.fields.vector = cfg->vector;
4134 irte.fields.destination = dest;
4135
Joerg Roedel0dfedd62013-04-09 15:39:16 +02004136 modify_irte(irte_info->devid, irte_info->index, irte);
Joerg Roedel5527de72012-06-26 11:17:32 +02004137
4138 if (cfg->move_in_progress)
4139 send_cleanup_vector(cfg);
4140
4141 cpumask_copy(data->affinity, mask);
4142
4143 return 0;
4144}
4145
4146static int free_irq(int irq)
4147{
Joerg Roedel0dfedd62013-04-09 15:39:16 +02004148 struct irq_2_irte *irte_info;
Joerg Roedel5527de72012-06-26 11:17:32 +02004149 struct irq_cfg *cfg;
4150
4151 cfg = irq_get_chip_data(irq);
4152 if (!cfg)
4153 return -EINVAL;
4154
Joerg Roedel0dfedd62013-04-09 15:39:16 +02004155 irte_info = &cfg->irq_2_irte;
Joerg Roedel5527de72012-06-26 11:17:32 +02004156
Joerg Roedel0dfedd62013-04-09 15:39:16 +02004157 free_irte(irte_info->devid, irte_info->index);
Joerg Roedel5527de72012-06-26 11:17:32 +02004158
4159 return 0;
4160}
4161
Joerg Roedel0b4d48c2012-06-26 14:54:17 +02004162static void compose_msi_msg(struct pci_dev *pdev,
4163 unsigned int irq, unsigned int dest,
4164 struct msi_msg *msg, u8 hpet_id)
4165{
Joerg Roedel0dfedd62013-04-09 15:39:16 +02004166 struct irq_2_irte *irte_info;
Joerg Roedel0b4d48c2012-06-26 14:54:17 +02004167 struct irq_cfg *cfg;
4168 union irte irte;
4169
4170 cfg = irq_get_chip_data(irq);
4171 if (!cfg)
4172 return;
4173
Joerg Roedel0dfedd62013-04-09 15:39:16 +02004174 irte_info = &cfg->irq_2_irte;
Joerg Roedel0b4d48c2012-06-26 14:54:17 +02004175
4176 irte.val = 0;
4177 irte.fields.vector = cfg->vector;
4178 irte.fields.int_type = apic->irq_delivery_mode;
4179 irte.fields.destination = dest;
4180 irte.fields.dm = apic->irq_dest_mode;
4181 irte.fields.valid = 1;
4182
Joerg Roedel0dfedd62013-04-09 15:39:16 +02004183 modify_irte(irte_info->devid, irte_info->index, irte);
Joerg Roedel0b4d48c2012-06-26 14:54:17 +02004184
4185 msg->address_hi = MSI_ADDR_BASE_HI;
4186 msg->address_lo = MSI_ADDR_BASE_LO;
Joerg Roedel0dfedd62013-04-09 15:39:16 +02004187 msg->data = irte_info->index;
Joerg Roedel0b4d48c2012-06-26 14:54:17 +02004188}
4189
4190static int msi_alloc_irq(struct pci_dev *pdev, int irq, int nvec)
4191{
4192 struct irq_cfg *cfg;
4193 int index;
4194 u16 devid;
4195
4196 if (!pdev)
4197 return -EINVAL;
4198
4199 cfg = irq_get_chip_data(irq);
4200 if (!cfg)
4201 return -EINVAL;
4202
4203 devid = get_device_id(&pdev->dev);
4204 index = alloc_irq_index(cfg, devid, nvec);
4205
4206 return index < 0 ? MAX_IRQS_PER_TABLE : index;
4207}
4208
4209static int msi_setup_irq(struct pci_dev *pdev, unsigned int irq,
4210 int index, int offset)
4211{
Joerg Roedel0dfedd62013-04-09 15:39:16 +02004212 struct irq_2_irte *irte_info;
Joerg Roedel0b4d48c2012-06-26 14:54:17 +02004213 struct irq_cfg *cfg;
4214 u16 devid;
4215
4216 if (!pdev)
4217 return -EINVAL;
4218
4219 cfg = irq_get_chip_data(irq);
4220 if (!cfg)
4221 return -EINVAL;
4222
4223 if (index >= MAX_IRQS_PER_TABLE)
4224 return 0;
4225
4226 devid = get_device_id(&pdev->dev);
Joerg Roedel0dfedd62013-04-09 15:39:16 +02004227 irte_info = &cfg->irq_2_irte;
Joerg Roedel0b4d48c2012-06-26 14:54:17 +02004228
Joerg Roedel9b1b0e42012-09-26 12:44:45 +02004229 cfg->remapped = 1;
Joerg Roedel0dfedd62013-04-09 15:39:16 +02004230 irte_info->devid = devid;
4231 irte_info->index = index + offset;
Joerg Roedel0b4d48c2012-06-26 14:54:17 +02004232
4233 return 0;
4234}
4235
Joerg Roedeld9761952012-06-26 16:00:08 +02004236static int setup_hpet_msi(unsigned int irq, unsigned int id)
4237{
Joerg Roedel0dfedd62013-04-09 15:39:16 +02004238 struct irq_2_irte *irte_info;
Joerg Roedeld9761952012-06-26 16:00:08 +02004239 struct irq_cfg *cfg;
4240 int index, devid;
4241
4242 cfg = irq_get_chip_data(irq);
4243 if (!cfg)
4244 return -EINVAL;
4245
Joerg Roedel0dfedd62013-04-09 15:39:16 +02004246 irte_info = &cfg->irq_2_irte;
Joerg Roedeld9761952012-06-26 16:00:08 +02004247 devid = get_hpet_devid(id);
4248 if (devid < 0)
4249 return devid;
4250
4251 index = alloc_irq_index(cfg, devid, 1);
4252 if (index < 0)
4253 return index;
4254
Joerg Roedel9b1b0e42012-09-26 12:44:45 +02004255 cfg->remapped = 1;
Joerg Roedel0dfedd62013-04-09 15:39:16 +02004256 irte_info->devid = devid;
4257 irte_info->index = index;
Joerg Roedeld9761952012-06-26 16:00:08 +02004258
4259 return 0;
4260}
4261
Joerg Roedel6b474b82012-06-26 16:46:04 +02004262struct irq_remap_ops amd_iommu_irq_ops = {
4263 .supported = amd_iommu_supported,
4264 .prepare = amd_iommu_prepare,
4265 .enable = amd_iommu_enable,
4266 .disable = amd_iommu_disable,
4267 .reenable = amd_iommu_reenable,
4268 .enable_faulting = amd_iommu_enable_faulting,
4269 .setup_ioapic_entry = setup_ioapic_entry,
4270 .set_affinity = set_affinity,
4271 .free_irq = free_irq,
4272 .compose_msi_msg = compose_msi_msg,
4273 .msi_alloc_irq = msi_alloc_irq,
4274 .msi_setup_irq = msi_setup_irq,
4275 .setup_hpet_msi = setup_hpet_msi,
4276};
Joerg Roedel2b324502012-06-21 16:29:10 +02004277#endif