blob: 8c52166339878b5754fc860ad27bf81bfc432d47 [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
Thierry Redingb22f6432014-06-27 09:03:12 +020083static const 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 Williamson25b11ce2014-09-19 10:03:13 -0600263static void init_iommu_group(struct device *dev)
Alex Williamson2851db22012-10-08 22:49:41 -0600264{
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 Williamson25b11ce2014-09-19 10:03:13 -0600268 if (!IS_ERR(group))
269 iommu_group_put(group);
Alex Williamsoneb9c9522012-10-08 22:49:35 -0600270}
271
Alex Williamsonc1931092014-07-03 09:51:24 -0600272static int __last_alias(struct pci_dev *pdev, u16 alias, void *data)
273{
274 *(u16 *)data = alias;
275 return 0;
276}
277
278static u16 get_alias(struct device *dev)
279{
280 struct pci_dev *pdev = to_pci_dev(dev);
281 u16 devid, ivrs_alias, pci_alias;
282
283 devid = get_device_id(dev);
284 ivrs_alias = amd_iommu_alias_table[devid];
285 pci_for_each_dma_alias(pdev, __last_alias, &pci_alias);
286
287 if (ivrs_alias == pci_alias)
288 return ivrs_alias;
289
290 /*
291 * DMA alias showdown
292 *
293 * The IVRS is fairly reliable in telling us about aliases, but it
294 * can't know about every screwy device. If we don't have an IVRS
295 * reported alias, use the PCI reported alias. In that case we may
296 * still need to initialize the rlookup and dev_table entries if the
297 * alias is to a non-existent device.
298 */
299 if (ivrs_alias == devid) {
300 if (!amd_iommu_rlookup_table[pci_alias]) {
301 amd_iommu_rlookup_table[pci_alias] =
302 amd_iommu_rlookup_table[devid];
303 memcpy(amd_iommu_dev_table[pci_alias].data,
304 amd_iommu_dev_table[devid].data,
305 sizeof(amd_iommu_dev_table[pci_alias].data));
306 }
307
308 return pci_alias;
309 }
310
311 pr_info("AMD-Vi: Using IVRS reported alias %02x:%02x.%d "
312 "for device %s[%04x:%04x], kernel reported alias "
313 "%02x:%02x.%d\n", PCI_BUS_NUM(ivrs_alias), PCI_SLOT(ivrs_alias),
314 PCI_FUNC(ivrs_alias), dev_name(dev), pdev->vendor, pdev->device,
315 PCI_BUS_NUM(pci_alias), PCI_SLOT(pci_alias),
316 PCI_FUNC(pci_alias));
317
318 /*
319 * If we don't have a PCI DMA alias and the IVRS alias is on the same
320 * bus, then the IVRS table may know about a quirk that we don't.
321 */
322 if (pci_alias == devid &&
323 PCI_BUS_NUM(ivrs_alias) == pdev->bus->number) {
324 pdev->dev_flags |= PCI_DEV_FLAGS_DMA_ALIAS_DEVFN;
325 pdev->dma_alias_devfn = ivrs_alias & 0xff;
326 pr_info("AMD-Vi: Added PCI DMA alias %02x.%d for %s\n",
327 PCI_SLOT(ivrs_alias), PCI_FUNC(ivrs_alias),
328 dev_name(dev));
329 }
330
331 return ivrs_alias;
332}
333
Alex Williamsoneb9c9522012-10-08 22:49:35 -0600334static int iommu_init_device(struct device *dev)
335{
336 struct pci_dev *pdev = to_pci_dev(dev);
337 struct iommu_dev_data *dev_data;
338 u16 alias;
Alex Williamsoneb9c9522012-10-08 22:49:35 -0600339
340 if (dev->archdata.iommu)
341 return 0;
342
343 dev_data = find_dev_data(get_device_id(dev));
344 if (!dev_data)
345 return -ENOMEM;
346
Alex Williamsonc1931092014-07-03 09:51:24 -0600347 alias = get_alias(dev);
348
Alex Williamsoneb9c9522012-10-08 22:49:35 -0600349 if (alias != dev_data->devid) {
350 struct iommu_dev_data *alias_data;
351
352 alias_data = find_dev_data(alias);
353 if (alias_data == NULL) {
354 pr_err("AMD-Vi: Warning: Unhandled device %s\n",
355 dev_name(dev));
356 free_dev_data(dev_data);
357 return -ENOTSUPP;
358 }
359 dev_data->alias_data = alias_data;
360 }
361
Joerg Roedel5abcdba2011-12-01 15:49:45 +0100362 if (pci_iommuv2_capable(pdev)) {
363 struct amd_iommu *iommu;
364
365 iommu = amd_iommu_rlookup_table[dev_data->devid];
366 dev_data->iommu_v2 = iommu->is_iommu_v2;
367 }
368
Joerg Roedel657cbb62009-11-23 15:26:46 +0100369 dev->archdata.iommu = dev_data;
370
Alex Williamson066f2e92014-06-12 16:12:37 -0600371 iommu_device_link(amd_iommu_rlookup_table[dev_data->devid]->iommu_dev,
372 dev);
373
Joerg Roedel657cbb62009-11-23 15:26:46 +0100374 return 0;
375}
376
Joerg Roedel26018872011-06-06 16:50:14 +0200377static void iommu_ignore_device(struct device *dev)
378{
379 u16 devid, alias;
380
381 devid = get_device_id(dev);
382 alias = amd_iommu_alias_table[devid];
383
384 memset(&amd_iommu_dev_table[devid], 0, sizeof(struct dev_table_entry));
385 memset(&amd_iommu_dev_table[alias], 0, sizeof(struct dev_table_entry));
386
387 amd_iommu_rlookup_table[devid] = NULL;
388 amd_iommu_rlookup_table[alias] = NULL;
389}
390
Joerg Roedel657cbb62009-11-23 15:26:46 +0100391static void iommu_uninit_device(struct device *dev)
392{
Alex Williamsonc1931092014-07-03 09:51:24 -0600393 struct iommu_dev_data *dev_data = search_dev_data(get_device_id(dev));
394
395 if (!dev_data)
396 return;
397
Alex Williamson066f2e92014-06-12 16:12:37 -0600398 iommu_device_unlink(amd_iommu_rlookup_table[dev_data->devid]->iommu_dev,
399 dev);
400
Alex Williamson9dcd6132012-05-30 14:19:07 -0600401 iommu_group_remove_device(dev);
402
Alex Williamsonc1931092014-07-03 09:51:24 -0600403 /* Unlink from alias, it may change if another device is re-plugged */
404 dev_data->alias_data = NULL;
405
Joerg Roedel8fa5f802011-06-09 12:24:45 +0200406 /*
Alex Williamsonc1931092014-07-03 09:51:24 -0600407 * We keep dev_data around for unplugged devices and reuse it when the
408 * device is re-plugged - not doing so would introduce a ton of races.
Joerg Roedel8fa5f802011-06-09 12:24:45 +0200409 */
Joerg Roedel657cbb62009-11-23 15:26:46 +0100410}
Joerg Roedelb7cc9552009-12-10 11:03:39 +0100411
412void __init amd_iommu_uninit_devices(void)
413{
Joerg Roedel8fa5f802011-06-09 12:24:45 +0200414 struct iommu_dev_data *dev_data, *n;
Joerg Roedelb7cc9552009-12-10 11:03:39 +0100415 struct pci_dev *pdev = NULL;
416
417 for_each_pci_dev(pdev) {
418
419 if (!check_device(&pdev->dev))
420 continue;
421
422 iommu_uninit_device(&pdev->dev);
423 }
Joerg Roedel8fa5f802011-06-09 12:24:45 +0200424
425 /* Free all of our dev_data structures */
426 list_for_each_entry_safe(dev_data, n, &dev_data_list, dev_data_list)
427 free_dev_data(dev_data);
Joerg Roedelb7cc9552009-12-10 11:03:39 +0100428}
429
430int __init amd_iommu_init_devices(void)
431{
432 struct pci_dev *pdev = NULL;
433 int ret = 0;
434
435 for_each_pci_dev(pdev) {
436
437 if (!check_device(&pdev->dev))
438 continue;
439
440 ret = iommu_init_device(&pdev->dev);
Joerg Roedel26018872011-06-06 16:50:14 +0200441 if (ret == -ENOTSUPP)
442 iommu_ignore_device(&pdev->dev);
443 else if (ret)
Joerg Roedelb7cc9552009-12-10 11:03:39 +0100444 goto out_free;
445 }
446
Alex Williamson25b11ce2014-09-19 10:03:13 -0600447 /*
448 * Initialize IOMMU groups only after iommu_init_device() has
449 * had a chance to populate any IVRS defined aliases.
450 */
451 for_each_pci_dev(pdev) {
452 if (check_device(&pdev->dev))
453 init_iommu_group(&pdev->dev);
454 }
455
Joerg Roedelb7cc9552009-12-10 11:03:39 +0100456 return 0;
457
458out_free:
459
460 amd_iommu_uninit_devices();
461
462 return ret;
463}
Joerg Roedel7f265082008-12-12 13:50:21 +0100464#ifdef CONFIG_AMD_IOMMU_STATS
465
466/*
467 * Initialization code for statistics collection
468 */
469
Joerg Roedelda49f6d2008-12-12 14:59:58 +0100470DECLARE_STATS_COUNTER(compl_wait);
Joerg Roedel0f2a86f2008-12-12 15:05:16 +0100471DECLARE_STATS_COUNTER(cnt_map_single);
Joerg Roedel146a6912008-12-12 15:07:12 +0100472DECLARE_STATS_COUNTER(cnt_unmap_single);
Joerg Roedeld03f067a2008-12-12 15:09:48 +0100473DECLARE_STATS_COUNTER(cnt_map_sg);
Joerg Roedel55877a62008-12-12 15:12:14 +0100474DECLARE_STATS_COUNTER(cnt_unmap_sg);
Joerg Roedelc8f0fb32008-12-12 15:14:21 +0100475DECLARE_STATS_COUNTER(cnt_alloc_coherent);
Joerg Roedel5d31ee72008-12-12 15:16:38 +0100476DECLARE_STATS_COUNTER(cnt_free_coherent);
Joerg Roedelc1858972008-12-12 15:42:39 +0100477DECLARE_STATS_COUNTER(cross_page);
Joerg Roedelf57d98a2008-12-12 15:46:29 +0100478DECLARE_STATS_COUNTER(domain_flush_single);
Joerg Roedel18811f52008-12-12 15:48:28 +0100479DECLARE_STATS_COUNTER(domain_flush_all);
Joerg Roedel5774f7c2008-12-12 15:57:30 +0100480DECLARE_STATS_COUNTER(alloced_io_mem);
Joerg Roedel8ecaf8f2008-12-12 16:13:04 +0100481DECLARE_STATS_COUNTER(total_map_requests);
Joerg Roedel399be2f2011-12-01 16:53:47 +0100482DECLARE_STATS_COUNTER(complete_ppr);
483DECLARE_STATS_COUNTER(invalidate_iotlb);
484DECLARE_STATS_COUNTER(invalidate_iotlb_all);
485DECLARE_STATS_COUNTER(pri_requests);
486
Joerg Roedel7f265082008-12-12 13:50:21 +0100487static struct dentry *stats_dir;
Joerg Roedel7f265082008-12-12 13:50:21 +0100488static struct dentry *de_fflush;
489
490static void amd_iommu_stats_add(struct __iommu_counter *cnt)
491{
492 if (stats_dir == NULL)
493 return;
494
495 cnt->dent = debugfs_create_u64(cnt->name, 0444, stats_dir,
496 &cnt->value);
497}
498
499static void amd_iommu_stats_init(void)
500{
501 stats_dir = debugfs_create_dir("amd-iommu", NULL);
502 if (stats_dir == NULL)
503 return;
504
Joerg Roedel7f265082008-12-12 13:50:21 +0100505 de_fflush = debugfs_create_bool("fullflush", 0444, stats_dir,
Dan Carpenter3775d482012-06-27 12:09:18 +0300506 &amd_iommu_unmap_flush);
Joerg Roedelda49f6d2008-12-12 14:59:58 +0100507
508 amd_iommu_stats_add(&compl_wait);
Joerg Roedel0f2a86f2008-12-12 15:05:16 +0100509 amd_iommu_stats_add(&cnt_map_single);
Joerg Roedel146a6912008-12-12 15:07:12 +0100510 amd_iommu_stats_add(&cnt_unmap_single);
Joerg Roedeld03f067a2008-12-12 15:09:48 +0100511 amd_iommu_stats_add(&cnt_map_sg);
Joerg Roedel55877a62008-12-12 15:12:14 +0100512 amd_iommu_stats_add(&cnt_unmap_sg);
Joerg Roedelc8f0fb32008-12-12 15:14:21 +0100513 amd_iommu_stats_add(&cnt_alloc_coherent);
Joerg Roedel5d31ee72008-12-12 15:16:38 +0100514 amd_iommu_stats_add(&cnt_free_coherent);
Joerg Roedelc1858972008-12-12 15:42:39 +0100515 amd_iommu_stats_add(&cross_page);
Joerg Roedelf57d98a2008-12-12 15:46:29 +0100516 amd_iommu_stats_add(&domain_flush_single);
Joerg Roedel18811f52008-12-12 15:48:28 +0100517 amd_iommu_stats_add(&domain_flush_all);
Joerg Roedel5774f7c2008-12-12 15:57:30 +0100518 amd_iommu_stats_add(&alloced_io_mem);
Joerg Roedel8ecaf8f2008-12-12 16:13:04 +0100519 amd_iommu_stats_add(&total_map_requests);
Joerg Roedel399be2f2011-12-01 16:53:47 +0100520 amd_iommu_stats_add(&complete_ppr);
521 amd_iommu_stats_add(&invalidate_iotlb);
522 amd_iommu_stats_add(&invalidate_iotlb_all);
523 amd_iommu_stats_add(&pri_requests);
Joerg Roedel7f265082008-12-12 13:50:21 +0100524}
525
526#endif
527
Joerg Roedel431b2a22008-07-11 17:14:22 +0200528/****************************************************************************
529 *
Joerg Roedela80dc3e2008-09-11 16:51:41 +0200530 * Interrupt handling functions
531 *
532 ****************************************************************************/
533
Joerg Roedele3e59872009-09-03 14:02:10 +0200534static void dump_dte_entry(u16 devid)
535{
536 int i;
537
Joerg Roedelee6c2862011-11-09 12:06:03 +0100538 for (i = 0; i < 4; ++i)
539 pr_err("AMD-Vi: DTE[%d]: %016llx\n", i,
Joerg Roedele3e59872009-09-03 14:02:10 +0200540 amd_iommu_dev_table[devid].data[i]);
541}
542
Joerg Roedel945b4ac2009-09-03 14:25:02 +0200543static void dump_command(unsigned long phys_addr)
544{
545 struct iommu_cmd *cmd = phys_to_virt(phys_addr);
546 int i;
547
548 for (i = 0; i < 4; ++i)
549 pr_err("AMD-Vi: CMD[%d]: %08x\n", i, cmd->data[i]);
550}
551
Joerg Roedela345b232009-09-03 15:01:43 +0200552static void iommu_print_event(struct amd_iommu *iommu, void *__evt)
Joerg Roedel90008ee2008-09-09 16:41:05 +0200553{
Joerg Roedel3d06fca2012-04-12 14:12:00 +0200554 int type, devid, domid, flags;
555 volatile u32 *event = __evt;
556 int count = 0;
557 u64 address;
558
559retry:
560 type = (event[1] >> EVENT_TYPE_SHIFT) & EVENT_TYPE_MASK;
561 devid = (event[0] >> EVENT_DEVID_SHIFT) & EVENT_DEVID_MASK;
562 domid = (event[1] >> EVENT_DOMID_SHIFT) & EVENT_DOMID_MASK;
563 flags = (event[1] >> EVENT_FLAGS_SHIFT) & EVENT_FLAGS_MASK;
564 address = (u64)(((u64)event[3]) << 32) | event[2];
565
566 if (type == 0) {
567 /* Did we hit the erratum? */
568 if (++count == LOOP_TIMEOUT) {
569 pr_err("AMD-Vi: No event written to event log\n");
570 return;
571 }
572 udelay(1);
573 goto retry;
574 }
Joerg Roedel90008ee2008-09-09 16:41:05 +0200575
Joerg Roedel4c6f40d2009-09-01 16:43:58 +0200576 printk(KERN_ERR "AMD-Vi: Event logged [");
Joerg Roedel90008ee2008-09-09 16:41:05 +0200577
578 switch (type) {
579 case EVENT_TYPE_ILL_DEV:
580 printk("ILLEGAL_DEV_TABLE_ENTRY device=%02x:%02x.%x "
581 "address=0x%016llx flags=0x%04x]\n",
Shuah Khanc5081cd2013-02-27 17:07:19 -0700582 PCI_BUS_NUM(devid), PCI_SLOT(devid), PCI_FUNC(devid),
Joerg Roedel90008ee2008-09-09 16:41:05 +0200583 address, flags);
Joerg Roedele3e59872009-09-03 14:02:10 +0200584 dump_dte_entry(devid);
Joerg Roedel90008ee2008-09-09 16:41:05 +0200585 break;
586 case EVENT_TYPE_IO_FAULT:
587 printk("IO_PAGE_FAULT device=%02x:%02x.%x "
588 "domain=0x%04x address=0x%016llx flags=0x%04x]\n",
Shuah Khanc5081cd2013-02-27 17:07:19 -0700589 PCI_BUS_NUM(devid), PCI_SLOT(devid), PCI_FUNC(devid),
Joerg Roedel90008ee2008-09-09 16:41:05 +0200590 domid, address, flags);
591 break;
592 case EVENT_TYPE_DEV_TAB_ERR:
593 printk("DEV_TAB_HARDWARE_ERROR device=%02x:%02x.%x "
594 "address=0x%016llx flags=0x%04x]\n",
Shuah Khanc5081cd2013-02-27 17:07:19 -0700595 PCI_BUS_NUM(devid), PCI_SLOT(devid), PCI_FUNC(devid),
Joerg Roedel90008ee2008-09-09 16:41:05 +0200596 address, flags);
597 break;
598 case EVENT_TYPE_PAGE_TAB_ERR:
599 printk("PAGE_TAB_HARDWARE_ERROR device=%02x:%02x.%x "
600 "domain=0x%04x address=0x%016llx flags=0x%04x]\n",
Shuah Khanc5081cd2013-02-27 17:07:19 -0700601 PCI_BUS_NUM(devid), PCI_SLOT(devid), PCI_FUNC(devid),
Joerg Roedel90008ee2008-09-09 16:41:05 +0200602 domid, address, flags);
603 break;
604 case EVENT_TYPE_ILL_CMD:
605 printk("ILLEGAL_COMMAND_ERROR address=0x%016llx]\n", address);
Joerg Roedel945b4ac2009-09-03 14:25:02 +0200606 dump_command(address);
Joerg Roedel90008ee2008-09-09 16:41:05 +0200607 break;
608 case EVENT_TYPE_CMD_HARD_ERR:
609 printk("COMMAND_HARDWARE_ERROR address=0x%016llx "
610 "flags=0x%04x]\n", address, flags);
611 break;
612 case EVENT_TYPE_IOTLB_INV_TO:
613 printk("IOTLB_INV_TIMEOUT device=%02x:%02x.%x "
614 "address=0x%016llx]\n",
Shuah Khanc5081cd2013-02-27 17:07:19 -0700615 PCI_BUS_NUM(devid), PCI_SLOT(devid), PCI_FUNC(devid),
Joerg Roedel90008ee2008-09-09 16:41:05 +0200616 address);
617 break;
618 case EVENT_TYPE_INV_DEV_REQ:
619 printk("INVALID_DEVICE_REQUEST device=%02x:%02x.%x "
620 "address=0x%016llx flags=0x%04x]\n",
Shuah Khanc5081cd2013-02-27 17:07:19 -0700621 PCI_BUS_NUM(devid), PCI_SLOT(devid), PCI_FUNC(devid),
Joerg Roedel90008ee2008-09-09 16:41:05 +0200622 address, flags);
623 break;
624 default:
625 printk(KERN_ERR "UNKNOWN type=0x%02x]\n", type);
626 }
Joerg Roedel3d06fca2012-04-12 14:12:00 +0200627
628 memset(__evt, 0, 4 * sizeof(u32));
Joerg Roedel90008ee2008-09-09 16:41:05 +0200629}
630
631static void iommu_poll_events(struct amd_iommu *iommu)
632{
633 u32 head, tail;
Joerg Roedel90008ee2008-09-09 16:41:05 +0200634
635 head = readl(iommu->mmio_base + MMIO_EVT_HEAD_OFFSET);
636 tail = readl(iommu->mmio_base + MMIO_EVT_TAIL_OFFSET);
637
638 while (head != tail) {
Joerg Roedela345b232009-09-03 15:01:43 +0200639 iommu_print_event(iommu, iommu->evt_buf + head);
Joerg Roedel90008ee2008-09-09 16:41:05 +0200640 head = (head + EVENT_ENTRY_SIZE) % iommu->evt_buf_size;
641 }
642
643 writel(head, iommu->mmio_base + MMIO_EVT_HEAD_OFFSET);
Joerg Roedel90008ee2008-09-09 16:41:05 +0200644}
645
Joerg Roedeleee53532012-06-01 15:20:23 +0200646static void iommu_handle_ppr_entry(struct amd_iommu *iommu, u64 *raw)
Joerg Roedel72e1dcc2011-11-10 19:13:51 +0100647{
648 struct amd_iommu_fault fault;
Joerg Roedel72e1dcc2011-11-10 19:13:51 +0100649
Joerg Roedel399be2f2011-12-01 16:53:47 +0100650 INC_STATS_COUNTER(pri_requests);
651
Joerg Roedel72e1dcc2011-11-10 19:13:51 +0100652 if (PPR_REQ_TYPE(raw[0]) != PPR_REQ_FAULT) {
653 pr_err_ratelimited("AMD-Vi: Unknown PPR request received\n");
654 return;
655 }
656
657 fault.address = raw[1];
658 fault.pasid = PPR_PASID(raw[0]);
659 fault.device_id = PPR_DEVID(raw[0]);
660 fault.tag = PPR_TAG(raw[0]);
661 fault.flags = PPR_FLAGS(raw[0]);
662
Joerg Roedel72e1dcc2011-11-10 19:13:51 +0100663 atomic_notifier_call_chain(&ppr_notifier, 0, &fault);
664}
665
666static void iommu_poll_ppr_log(struct amd_iommu *iommu)
667{
Joerg Roedel72e1dcc2011-11-10 19:13:51 +0100668 u32 head, tail;
669
670 if (iommu->ppr_log == NULL)
671 return;
672
Joerg Roedel72e1dcc2011-11-10 19:13:51 +0100673 head = readl(iommu->mmio_base + MMIO_PPR_HEAD_OFFSET);
674 tail = readl(iommu->mmio_base + MMIO_PPR_TAIL_OFFSET);
675
676 while (head != tail) {
Joerg Roedeleee53532012-06-01 15:20:23 +0200677 volatile u64 *raw;
678 u64 entry[2];
679 int i;
Joerg Roedel72e1dcc2011-11-10 19:13:51 +0100680
Joerg Roedeleee53532012-06-01 15:20:23 +0200681 raw = (u64 *)(iommu->ppr_log + head);
Joerg Roedel72e1dcc2011-11-10 19:13:51 +0100682
Joerg Roedeleee53532012-06-01 15:20:23 +0200683 /*
684 * Hardware bug: Interrupt may arrive before the entry is
685 * written to memory. If this happens we need to wait for the
686 * entry to arrive.
687 */
688 for (i = 0; i < LOOP_TIMEOUT; ++i) {
689 if (PPR_REQ_TYPE(raw[0]) != 0)
690 break;
691 udelay(1);
692 }
693
694 /* Avoid memcpy function-call overhead */
695 entry[0] = raw[0];
696 entry[1] = raw[1];
697
698 /*
699 * To detect the hardware bug we need to clear the entry
700 * back to zero.
701 */
702 raw[0] = raw[1] = 0UL;
703
704 /* Update head pointer of hardware ring-buffer */
Joerg Roedel72e1dcc2011-11-10 19:13:51 +0100705 head = (head + PPR_ENTRY_SIZE) % PPR_LOG_SIZE;
706 writel(head, iommu->mmio_base + MMIO_PPR_HEAD_OFFSET);
Joerg Roedeleee53532012-06-01 15:20:23 +0200707
Joerg Roedeleee53532012-06-01 15:20:23 +0200708 /* Handle PPR entry */
709 iommu_handle_ppr_entry(iommu, entry);
710
Joerg Roedeleee53532012-06-01 15:20:23 +0200711 /* Refresh ring-buffer information */
712 head = readl(iommu->mmio_base + MMIO_PPR_HEAD_OFFSET);
Joerg Roedel72e1dcc2011-11-10 19:13:51 +0100713 tail = readl(iommu->mmio_base + MMIO_PPR_TAIL_OFFSET);
714 }
Joerg Roedel72e1dcc2011-11-10 19:13:51 +0100715}
716
Joerg Roedel72fe00f2011-05-10 10:50:42 +0200717irqreturn_t amd_iommu_int_thread(int irq, void *data)
Joerg Roedela80dc3e2008-09-11 16:51:41 +0200718{
Suravee Suthikulpanit3f398bc2013-04-22 16:32:34 -0500719 struct amd_iommu *iommu = (struct amd_iommu *) data;
720 u32 status = readl(iommu->mmio_base + MMIO_STATUS_OFFSET);
Joerg Roedel90008ee2008-09-09 16:41:05 +0200721
Suravee Suthikulpanit3f398bc2013-04-22 16:32:34 -0500722 while (status & (MMIO_STATUS_EVT_INT_MASK | MMIO_STATUS_PPR_INT_MASK)) {
723 /* Enable EVT and PPR interrupts again */
724 writel((MMIO_STATUS_EVT_INT_MASK | MMIO_STATUS_PPR_INT_MASK),
725 iommu->mmio_base + MMIO_STATUS_OFFSET);
726
727 if (status & MMIO_STATUS_EVT_INT_MASK) {
728 pr_devel("AMD-Vi: Processing IOMMU Event Log\n");
729 iommu_poll_events(iommu);
730 }
731
732 if (status & MMIO_STATUS_PPR_INT_MASK) {
733 pr_devel("AMD-Vi: Processing IOMMU PPR Log\n");
734 iommu_poll_ppr_log(iommu);
735 }
736
737 /*
738 * Hardware bug: ERBT1312
739 * When re-enabling interrupt (by writing 1
740 * to clear the bit), the hardware might also try to set
741 * the interrupt bit in the event status register.
742 * In this scenario, the bit will be set, and disable
743 * subsequent interrupts.
744 *
745 * Workaround: The IOMMU driver should read back the
746 * status register and check if the interrupt bits are cleared.
747 * If not, driver will need to go through the interrupt handler
748 * again and re-clear the bits
749 */
750 status = readl(iommu->mmio_base + MMIO_STATUS_OFFSET);
Joerg Roedel72e1dcc2011-11-10 19:13:51 +0100751 }
Joerg Roedel90008ee2008-09-09 16:41:05 +0200752 return IRQ_HANDLED;
Joerg Roedela80dc3e2008-09-11 16:51:41 +0200753}
754
Joerg Roedel72fe00f2011-05-10 10:50:42 +0200755irqreturn_t amd_iommu_int_handler(int irq, void *data)
756{
757 return IRQ_WAKE_THREAD;
758}
759
Joerg Roedela80dc3e2008-09-11 16:51:41 +0200760/****************************************************************************
761 *
Joerg Roedel431b2a22008-07-11 17:14:22 +0200762 * IOMMU command queuing functions
763 *
764 ****************************************************************************/
765
Joerg Roedelac0ea6e2011-04-06 18:38:20 +0200766static int wait_on_sem(volatile u64 *sem)
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200767{
Joerg Roedelac0ea6e2011-04-06 18:38:20 +0200768 int i = 0;
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200769
Joerg Roedelac0ea6e2011-04-06 18:38:20 +0200770 while (*sem == 0 && i < LOOP_TIMEOUT) {
771 udelay(1);
772 i += 1;
773 }
774
775 if (i == LOOP_TIMEOUT) {
776 pr_alert("AMD-Vi: Completion-Wait loop timed out\n");
777 return -EIO;
778 }
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200779
780 return 0;
781}
782
Joerg Roedelac0ea6e2011-04-06 18:38:20 +0200783static void copy_cmd_to_buffer(struct amd_iommu *iommu,
784 struct iommu_cmd *cmd,
785 u32 tail)
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200786{
Joerg Roedelac0ea6e2011-04-06 18:38:20 +0200787 u8 *target;
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200788
Joerg Roedelac0ea6e2011-04-06 18:38:20 +0200789 target = iommu->cmd_buf + tail;
790 tail = (tail + sizeof(*cmd)) % iommu->cmd_buf_size;
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200791
Joerg Roedelac0ea6e2011-04-06 18:38:20 +0200792 /* Copy command to buffer */
793 memcpy(target, cmd, sizeof(*cmd));
794
795 /* Tell the IOMMU about it */
796 writel(tail, iommu->mmio_base + MMIO_CMD_TAIL_OFFSET);
797}
798
Joerg Roedel815b33f2011-04-06 17:26:49 +0200799static void build_completion_wait(struct iommu_cmd *cmd, u64 address)
Joerg Roedelded46732011-04-06 10:53:48 +0200800{
Joerg Roedel815b33f2011-04-06 17:26:49 +0200801 WARN_ON(address & 0x7ULL);
802
Joerg Roedelded46732011-04-06 10:53:48 +0200803 memset(cmd, 0, sizeof(*cmd));
Joerg Roedel815b33f2011-04-06 17:26:49 +0200804 cmd->data[0] = lower_32_bits(__pa(address)) | CMD_COMPL_WAIT_STORE_MASK;
805 cmd->data[1] = upper_32_bits(__pa(address));
806 cmd->data[2] = 1;
Joerg Roedelded46732011-04-06 10:53:48 +0200807 CMD_SET_TYPE(cmd, CMD_COMPL_WAIT);
808}
809
Joerg Roedel94fe79e2011-04-06 11:07:21 +0200810static void build_inv_dte(struct iommu_cmd *cmd, u16 devid)
811{
812 memset(cmd, 0, sizeof(*cmd));
813 cmd->data[0] = devid;
814 CMD_SET_TYPE(cmd, CMD_INV_DEV_ENTRY);
815}
816
Joerg Roedel11b64022011-04-06 11:49:28 +0200817static void build_inv_iommu_pages(struct iommu_cmd *cmd, u64 address,
818 size_t size, u16 domid, int pde)
819{
820 u64 pages;
821 int s;
822
823 pages = iommu_num_pages(address, size, PAGE_SIZE);
824 s = 0;
825
826 if (pages > 1) {
827 /*
828 * If we have to flush more than one page, flush all
829 * TLB entries for this domain
830 */
831 address = CMD_INV_IOMMU_ALL_PAGES_ADDRESS;
832 s = 1;
833 }
834
835 address &= PAGE_MASK;
836
837 memset(cmd, 0, sizeof(*cmd));
838 cmd->data[1] |= domid;
839 cmd->data[2] = lower_32_bits(address);
840 cmd->data[3] = upper_32_bits(address);
841 CMD_SET_TYPE(cmd, CMD_INV_IOMMU_PAGES);
842 if (s) /* size bit - we flush more than one 4kb page */
843 cmd->data[2] |= CMD_INV_IOMMU_PAGES_SIZE_MASK;
Frank Arnolddf805ab2012-08-27 19:21:04 +0200844 if (pde) /* PDE bit - we want to flush everything, not only the PTEs */
Joerg Roedel11b64022011-04-06 11:49:28 +0200845 cmd->data[2] |= CMD_INV_IOMMU_PAGES_PDE_MASK;
846}
847
Joerg Roedelcb41ed82011-04-05 11:00:53 +0200848static void build_inv_iotlb_pages(struct iommu_cmd *cmd, u16 devid, int qdep,
849 u64 address, size_t size)
850{
851 u64 pages;
852 int s;
853
854 pages = iommu_num_pages(address, size, PAGE_SIZE);
855 s = 0;
856
857 if (pages > 1) {
858 /*
859 * If we have to flush more than one page, flush all
860 * TLB entries for this domain
861 */
862 address = CMD_INV_IOMMU_ALL_PAGES_ADDRESS;
863 s = 1;
864 }
865
866 address &= PAGE_MASK;
867
868 memset(cmd, 0, sizeof(*cmd));
869 cmd->data[0] = devid;
870 cmd->data[0] |= (qdep & 0xff) << 24;
871 cmd->data[1] = devid;
872 cmd->data[2] = lower_32_bits(address);
873 cmd->data[3] = upper_32_bits(address);
874 CMD_SET_TYPE(cmd, CMD_INV_IOTLB_PAGES);
875 if (s)
876 cmd->data[2] |= CMD_INV_IOMMU_PAGES_SIZE_MASK;
877}
878
Joerg Roedel22e266c2011-11-21 15:59:08 +0100879static void build_inv_iommu_pasid(struct iommu_cmd *cmd, u16 domid, int pasid,
880 u64 address, bool size)
881{
882 memset(cmd, 0, sizeof(*cmd));
883
884 address &= ~(0xfffULL);
885
Suravee Suthikulpanita919a012014-03-05 18:54:18 -0600886 cmd->data[0] = pasid;
Joerg Roedel22e266c2011-11-21 15:59:08 +0100887 cmd->data[1] = domid;
888 cmd->data[2] = lower_32_bits(address);
889 cmd->data[3] = upper_32_bits(address);
890 cmd->data[2] |= CMD_INV_IOMMU_PAGES_PDE_MASK;
891 cmd->data[2] |= CMD_INV_IOMMU_PAGES_GN_MASK;
892 if (size)
893 cmd->data[2] |= CMD_INV_IOMMU_PAGES_SIZE_MASK;
894 CMD_SET_TYPE(cmd, CMD_INV_IOMMU_PAGES);
895}
896
897static void build_inv_iotlb_pasid(struct iommu_cmd *cmd, u16 devid, int pasid,
898 int qdep, u64 address, bool size)
899{
900 memset(cmd, 0, sizeof(*cmd));
901
902 address &= ~(0xfffULL);
903
904 cmd->data[0] = devid;
Jay Cornwalle8d2d822014-02-26 15:49:31 -0600905 cmd->data[0] |= ((pasid >> 8) & 0xff) << 16;
Joerg Roedel22e266c2011-11-21 15:59:08 +0100906 cmd->data[0] |= (qdep & 0xff) << 24;
907 cmd->data[1] = devid;
Jay Cornwalle8d2d822014-02-26 15:49:31 -0600908 cmd->data[1] |= (pasid & 0xff) << 16;
Joerg Roedel22e266c2011-11-21 15:59:08 +0100909 cmd->data[2] = lower_32_bits(address);
910 cmd->data[2] |= CMD_INV_IOMMU_PAGES_GN_MASK;
911 cmd->data[3] = upper_32_bits(address);
912 if (size)
913 cmd->data[2] |= CMD_INV_IOMMU_PAGES_SIZE_MASK;
914 CMD_SET_TYPE(cmd, CMD_INV_IOTLB_PAGES);
915}
916
Joerg Roedelc99afa22011-11-21 18:19:25 +0100917static void build_complete_ppr(struct iommu_cmd *cmd, u16 devid, int pasid,
918 int status, int tag, bool gn)
919{
920 memset(cmd, 0, sizeof(*cmd));
921
922 cmd->data[0] = devid;
923 if (gn) {
Suravee Suthikulpanita919a012014-03-05 18:54:18 -0600924 cmd->data[1] = pasid;
Joerg Roedelc99afa22011-11-21 18:19:25 +0100925 cmd->data[2] = CMD_INV_IOMMU_PAGES_GN_MASK;
926 }
927 cmd->data[3] = tag & 0x1ff;
928 cmd->data[3] |= (status & PPR_STATUS_MASK) << PPR_STATUS_SHIFT;
929
930 CMD_SET_TYPE(cmd, CMD_COMPLETE_PPR);
931}
932
Joerg Roedel58fc7f12011-04-11 11:13:24 +0200933static void build_inv_all(struct iommu_cmd *cmd)
934{
935 memset(cmd, 0, sizeof(*cmd));
936 CMD_SET_TYPE(cmd, CMD_INV_ALL);
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200937}
938
Joerg Roedel7ef27982012-06-21 16:46:04 +0200939static void build_inv_irt(struct iommu_cmd *cmd, u16 devid)
940{
941 memset(cmd, 0, sizeof(*cmd));
942 cmd->data[0] = devid;
943 CMD_SET_TYPE(cmd, CMD_INV_IRT);
944}
945
Joerg Roedel431b2a22008-07-11 17:14:22 +0200946/*
Joerg Roedelb6c02712008-06-26 21:27:53 +0200947 * Writes the command to the IOMMUs command buffer and informs the
Joerg Roedelac0ea6e2011-04-06 18:38:20 +0200948 * hardware about the new command.
Joerg Roedel431b2a22008-07-11 17:14:22 +0200949 */
Joerg Roedelf1ca1512011-09-02 14:10:32 +0200950static int iommu_queue_command_sync(struct amd_iommu *iommu,
951 struct iommu_cmd *cmd,
952 bool sync)
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200953{
Joerg Roedelac0ea6e2011-04-06 18:38:20 +0200954 u32 left, tail, head, next_tail;
Joerg Roedel815b33f2011-04-06 17:26:49 +0200955 unsigned long flags;
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200956
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200957 WARN_ON(iommu->cmd_buf_size & CMD_BUFFER_UNINITIALIZED);
Joerg Roedelda49f6d2008-12-12 14:59:58 +0100958
Joerg Roedelac0ea6e2011-04-06 18:38:20 +0200959again:
Joerg Roedel815b33f2011-04-06 17:26:49 +0200960 spin_lock_irqsave(&iommu->lock, flags);
Joerg Roedelac0ea6e2011-04-06 18:38:20 +0200961
962 head = readl(iommu->mmio_base + MMIO_CMD_HEAD_OFFSET);
963 tail = readl(iommu->mmio_base + MMIO_CMD_TAIL_OFFSET);
964 next_tail = (tail + sizeof(*cmd)) % iommu->cmd_buf_size;
965 left = (head - next_tail) % iommu->cmd_buf_size;
966
967 if (left <= 2) {
968 struct iommu_cmd sync_cmd;
969 volatile u64 sem = 0;
970 int ret;
971
972 build_completion_wait(&sync_cmd, (u64)&sem);
973 copy_cmd_to_buffer(iommu, &sync_cmd, tail);
974
975 spin_unlock_irqrestore(&iommu->lock, flags);
976
977 if ((ret = wait_on_sem(&sem)) != 0)
978 return ret;
979
980 goto again;
Joerg Roedel136f78a2008-07-11 17:14:27 +0200981 }
982
Joerg Roedelac0ea6e2011-04-06 18:38:20 +0200983 copy_cmd_to_buffer(iommu, cmd, tail);
Joerg Roedel519c31b2008-08-14 19:55:15 +0200984
Joerg Roedelac0ea6e2011-04-06 18:38:20 +0200985 /* We need to sync now to make sure all commands are processed */
Joerg Roedelf1ca1512011-09-02 14:10:32 +0200986 iommu->need_sync = sync;
Joerg Roedelac0ea6e2011-04-06 18:38:20 +0200987
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200988 spin_unlock_irqrestore(&iommu->lock, flags);
989
Joerg Roedel815b33f2011-04-06 17:26:49 +0200990 return 0;
Joerg Roedel8d201962008-12-02 20:34:41 +0100991}
992
Joerg Roedelf1ca1512011-09-02 14:10:32 +0200993static int iommu_queue_command(struct amd_iommu *iommu, struct iommu_cmd *cmd)
994{
995 return iommu_queue_command_sync(iommu, cmd, true);
996}
997
Joerg Roedel8d201962008-12-02 20:34:41 +0100998/*
999 * This function queues a completion wait command into the command
1000 * buffer of an IOMMU
1001 */
Joerg Roedel8d201962008-12-02 20:34:41 +01001002static int iommu_completion_wait(struct amd_iommu *iommu)
1003{
Joerg Roedel815b33f2011-04-06 17:26:49 +02001004 struct iommu_cmd cmd;
1005 volatile u64 sem = 0;
Joerg Roedelac0ea6e2011-04-06 18:38:20 +02001006 int ret;
Joerg Roedel8d201962008-12-02 20:34:41 +01001007
1008 if (!iommu->need_sync)
Joerg Roedel815b33f2011-04-06 17:26:49 +02001009 return 0;
Joerg Roedel8d201962008-12-02 20:34:41 +01001010
Joerg Roedel815b33f2011-04-06 17:26:49 +02001011 build_completion_wait(&cmd, (u64)&sem);
Joerg Roedel8d201962008-12-02 20:34:41 +01001012
Joerg Roedelf1ca1512011-09-02 14:10:32 +02001013 ret = iommu_queue_command_sync(iommu, &cmd, false);
Joerg Roedel8d201962008-12-02 20:34:41 +01001014 if (ret)
Joerg Roedel815b33f2011-04-06 17:26:49 +02001015 return ret;
Joerg Roedel8d201962008-12-02 20:34:41 +01001016
Joerg Roedelac0ea6e2011-04-06 18:38:20 +02001017 return wait_on_sem(&sem);
Joerg Roedela19ae1e2008-06-26 21:27:55 +02001018}
1019
Joerg Roedeld8c13082011-04-06 18:51:26 +02001020static int iommu_flush_dte(struct amd_iommu *iommu, u16 devid)
Joerg Roedela19ae1e2008-06-26 21:27:55 +02001021{
1022 struct iommu_cmd cmd;
1023
Joerg Roedeld8c13082011-04-06 18:51:26 +02001024 build_inv_dte(&cmd, devid);
Joerg Roedela19ae1e2008-06-26 21:27:55 +02001025
Joerg Roedeld8c13082011-04-06 18:51:26 +02001026 return iommu_queue_command(iommu, &cmd);
1027}
1028
Joerg Roedel7d0c5cc2011-04-07 08:16:10 +02001029static void iommu_flush_dte_all(struct amd_iommu *iommu)
1030{
1031 u32 devid;
1032
1033 for (devid = 0; devid <= 0xffff; ++devid)
1034 iommu_flush_dte(iommu, devid);
1035
1036 iommu_completion_wait(iommu);
Joerg Roedela19ae1e2008-06-26 21:27:55 +02001037}
1038
1039/*
Joerg Roedel7d0c5cc2011-04-07 08:16:10 +02001040 * This function uses heavy locking and may disable irqs for some time. But
1041 * this is no issue because it is only called during resume.
Joerg Roedela19ae1e2008-06-26 21:27:55 +02001042 */
Joerg Roedel7d0c5cc2011-04-07 08:16:10 +02001043static void iommu_flush_tlb_all(struct amd_iommu *iommu)
Joerg Roedela19ae1e2008-06-26 21:27:55 +02001044{
Joerg Roedel7d0c5cc2011-04-07 08:16:10 +02001045 u32 dom_id;
Joerg Roedela19ae1e2008-06-26 21:27:55 +02001046
Joerg Roedel7d0c5cc2011-04-07 08:16:10 +02001047 for (dom_id = 0; dom_id <= 0xffff; ++dom_id) {
1048 struct iommu_cmd cmd;
1049 build_inv_iommu_pages(&cmd, 0, CMD_INV_IOMMU_ALL_PAGES_ADDRESS,
1050 dom_id, 1);
1051 iommu_queue_command(iommu, &cmd);
1052 }
Joerg Roedel431b2a22008-07-11 17:14:22 +02001053
Joerg Roedel7d0c5cc2011-04-07 08:16:10 +02001054 iommu_completion_wait(iommu);
Joerg Roedela19ae1e2008-06-26 21:27:55 +02001055}
1056
Joerg Roedel58fc7f12011-04-11 11:13:24 +02001057static void iommu_flush_all(struct amd_iommu *iommu)
1058{
1059 struct iommu_cmd cmd;
1060
1061 build_inv_all(&cmd);
1062
1063 iommu_queue_command(iommu, &cmd);
1064 iommu_completion_wait(iommu);
1065}
1066
Joerg Roedel7ef27982012-06-21 16:46:04 +02001067static void iommu_flush_irt(struct amd_iommu *iommu, u16 devid)
1068{
1069 struct iommu_cmd cmd;
1070
1071 build_inv_irt(&cmd, devid);
1072
1073 iommu_queue_command(iommu, &cmd);
1074}
1075
1076static void iommu_flush_irt_all(struct amd_iommu *iommu)
1077{
1078 u32 devid;
1079
1080 for (devid = 0; devid <= MAX_DEV_TABLE_ENTRIES; devid++)
1081 iommu_flush_irt(iommu, devid);
1082
1083 iommu_completion_wait(iommu);
1084}
1085
Joerg Roedel7d0c5cc2011-04-07 08:16:10 +02001086void iommu_flush_all_caches(struct amd_iommu *iommu)
1087{
Joerg Roedel58fc7f12011-04-11 11:13:24 +02001088 if (iommu_feature(iommu, FEATURE_IA)) {
1089 iommu_flush_all(iommu);
1090 } else {
1091 iommu_flush_dte_all(iommu);
Joerg Roedel7ef27982012-06-21 16:46:04 +02001092 iommu_flush_irt_all(iommu);
Joerg Roedel58fc7f12011-04-11 11:13:24 +02001093 iommu_flush_tlb_all(iommu);
1094 }
Joerg Roedel7d0c5cc2011-04-07 08:16:10 +02001095}
1096
Joerg Roedel431b2a22008-07-11 17:14:22 +02001097/*
Joerg Roedelcb41ed82011-04-05 11:00:53 +02001098 * Command send function for flushing on-device TLB
1099 */
Joerg Roedel6c542042011-06-09 17:07:31 +02001100static int device_flush_iotlb(struct iommu_dev_data *dev_data,
1101 u64 address, size_t size)
Joerg Roedelcb41ed82011-04-05 11:00:53 +02001102{
Joerg Roedelcb41ed82011-04-05 11:00:53 +02001103 struct amd_iommu *iommu;
1104 struct iommu_cmd cmd;
Joerg Roedelcb41ed82011-04-05 11:00:53 +02001105 int qdep;
1106
Joerg Roedelea61cdd2011-06-09 12:56:30 +02001107 qdep = dev_data->ats.qdep;
1108 iommu = amd_iommu_rlookup_table[dev_data->devid];
Joerg Roedelcb41ed82011-04-05 11:00:53 +02001109
Joerg Roedelea61cdd2011-06-09 12:56:30 +02001110 build_inv_iotlb_pages(&cmd, dev_data->devid, qdep, address, size);
Joerg Roedelcb41ed82011-04-05 11:00:53 +02001111
1112 return iommu_queue_command(iommu, &cmd);
1113}
1114
1115/*
Joerg Roedel431b2a22008-07-11 17:14:22 +02001116 * Command send function for invalidating a device table entry
1117 */
Joerg Roedel6c542042011-06-09 17:07:31 +02001118static int device_flush_dte(struct iommu_dev_data *dev_data)
Joerg Roedel3fa43652009-11-26 15:04:38 +01001119{
1120 struct amd_iommu *iommu;
Joerg Roedelcb41ed82011-04-05 11:00:53 +02001121 int ret;
Joerg Roedel3fa43652009-11-26 15:04:38 +01001122
Joerg Roedel6c542042011-06-09 17:07:31 +02001123 iommu = amd_iommu_rlookup_table[dev_data->devid];
Joerg Roedel3fa43652009-11-26 15:04:38 +01001124
Joerg Roedelf62dda62011-06-09 12:55:35 +02001125 ret = iommu_flush_dte(iommu, dev_data->devid);
Joerg Roedelcb41ed82011-04-05 11:00:53 +02001126 if (ret)
1127 return ret;
1128
Joerg Roedelea61cdd2011-06-09 12:56:30 +02001129 if (dev_data->ats.enabled)
Joerg Roedel6c542042011-06-09 17:07:31 +02001130 ret = device_flush_iotlb(dev_data, 0, ~0UL);
Joerg Roedelcb41ed82011-04-05 11:00:53 +02001131
1132 return ret;
Joerg Roedel3fa43652009-11-26 15:04:38 +01001133}
1134
Joerg Roedel431b2a22008-07-11 17:14:22 +02001135/*
1136 * TLB invalidation function which is called from the mapping functions.
1137 * It invalidates a single PTE if the range to flush is within a single
1138 * page. Otherwise it flushes the whole TLB of the IOMMU.
1139 */
Joerg Roedel17b124b2011-04-06 18:01:35 +02001140static void __domain_flush_pages(struct protection_domain *domain,
1141 u64 address, size_t size, int pde)
Joerg Roedela19ae1e2008-06-26 21:27:55 +02001142{
Joerg Roedelcb41ed82011-04-05 11:00:53 +02001143 struct iommu_dev_data *dev_data;
Joerg Roedel11b64022011-04-06 11:49:28 +02001144 struct iommu_cmd cmd;
1145 int ret = 0, i;
Joerg Roedela19ae1e2008-06-26 21:27:55 +02001146
Joerg Roedel11b64022011-04-06 11:49:28 +02001147 build_inv_iommu_pages(&cmd, address, size, domain->id, pde);
Joerg Roedel999ba412008-07-03 19:35:08 +02001148
Joerg Roedel6de8ad92009-11-23 18:30:32 +01001149 for (i = 0; i < amd_iommus_present; ++i) {
1150 if (!domain->dev_iommu[i])
1151 continue;
1152
1153 /*
1154 * Devices of this domain are behind this IOMMU
1155 * We need a TLB flush
1156 */
Joerg Roedel11b64022011-04-06 11:49:28 +02001157 ret |= iommu_queue_command(amd_iommus[i], &cmd);
Joerg Roedel6de8ad92009-11-23 18:30:32 +01001158 }
1159
Joerg Roedelcb41ed82011-04-05 11:00:53 +02001160 list_for_each_entry(dev_data, &domain->dev_list, list) {
Joerg Roedelcb41ed82011-04-05 11:00:53 +02001161
Joerg Roedelea61cdd2011-06-09 12:56:30 +02001162 if (!dev_data->ats.enabled)
Joerg Roedelcb41ed82011-04-05 11:00:53 +02001163 continue;
1164
Joerg Roedel6c542042011-06-09 17:07:31 +02001165 ret |= device_flush_iotlb(dev_data, address, size);
Joerg Roedelcb41ed82011-04-05 11:00:53 +02001166 }
1167
Joerg Roedel11b64022011-04-06 11:49:28 +02001168 WARN_ON(ret);
Joerg Roedel6de8ad92009-11-23 18:30:32 +01001169}
1170
Joerg Roedel17b124b2011-04-06 18:01:35 +02001171static void domain_flush_pages(struct protection_domain *domain,
1172 u64 address, size_t size)
Joerg Roedel6de8ad92009-11-23 18:30:32 +01001173{
Joerg Roedel17b124b2011-04-06 18:01:35 +02001174 __domain_flush_pages(domain, address, size, 0);
Joerg Roedela19ae1e2008-06-26 21:27:55 +02001175}
Joerg Roedelb6c02712008-06-26 21:27:53 +02001176
Joerg Roedel1c655772008-09-04 18:40:05 +02001177/* Flush the whole IO/TLB for a given protection domain */
Joerg Roedel17b124b2011-04-06 18:01:35 +02001178static void domain_flush_tlb(struct protection_domain *domain)
Joerg Roedel1c655772008-09-04 18:40:05 +02001179{
Joerg Roedel17b124b2011-04-06 18:01:35 +02001180 __domain_flush_pages(domain, 0, CMD_INV_IOMMU_ALL_PAGES_ADDRESS, 0);
Joerg Roedel1c655772008-09-04 18:40:05 +02001181}
1182
Chris Wright42a49f92009-06-15 15:42:00 +02001183/* Flush the whole IO/TLB for a given protection domain - including PDE */
Joerg Roedel17b124b2011-04-06 18:01:35 +02001184static void domain_flush_tlb_pde(struct protection_domain *domain)
Chris Wright42a49f92009-06-15 15:42:00 +02001185{
Joerg Roedel17b124b2011-04-06 18:01:35 +02001186 __domain_flush_pages(domain, 0, CMD_INV_IOMMU_ALL_PAGES_ADDRESS, 1);
1187}
1188
1189static void domain_flush_complete(struct protection_domain *domain)
Joerg Roedelb6c02712008-06-26 21:27:53 +02001190{
1191 int i;
1192
1193 for (i = 0; i < amd_iommus_present; ++i) {
1194 if (!domain->dev_iommu[i])
1195 continue;
1196
1197 /*
1198 * Devices of this domain are behind this IOMMU
1199 * We need to wait for completion of all commands.
1200 */
1201 iommu_completion_wait(amd_iommus[i]);
1202 }
1203}
1204
Joerg Roedelb00d3bc2009-11-26 15:35:33 +01001205
Joerg Roedel43f49602008-12-02 21:01:12 +01001206/*
Joerg Roedelb00d3bc2009-11-26 15:35:33 +01001207 * This function flushes the DTEs for all devices in domain
Joerg Roedel43f49602008-12-02 21:01:12 +01001208 */
Joerg Roedel17b124b2011-04-06 18:01:35 +02001209static void domain_flush_devices(struct protection_domain *domain)
Joerg Roedelbfd1be12009-05-05 15:33:57 +02001210{
Joerg Roedelb00d3bc2009-11-26 15:35:33 +01001211 struct iommu_dev_data *dev_data;
Joerg Roedelb00d3bc2009-11-26 15:35:33 +01001212
1213 list_for_each_entry(dev_data, &domain->dev_list, list)
Joerg Roedel6c542042011-06-09 17:07:31 +02001214 device_flush_dte(dev_data);
Joerg Roedelb00d3bc2009-11-26 15:35:33 +01001215}
1216
Joerg Roedel431b2a22008-07-11 17:14:22 +02001217/****************************************************************************
1218 *
1219 * The functions below are used the create the page table mappings for
1220 * unity mapped regions.
1221 *
1222 ****************************************************************************/
1223
1224/*
Joerg Roedel308973d2009-11-24 17:43:32 +01001225 * This function is used to add another level to an IO page table. Adding
1226 * another level increases the size of the address space by 9 bits to a size up
1227 * to 64 bits.
1228 */
1229static bool increase_address_space(struct protection_domain *domain,
1230 gfp_t gfp)
1231{
1232 u64 *pte;
1233
1234 if (domain->mode == PAGE_MODE_6_LEVEL)
1235 /* address space already 64 bit large */
1236 return false;
1237
1238 pte = (void *)get_zeroed_page(gfp);
1239 if (!pte)
1240 return false;
1241
1242 *pte = PM_LEVEL_PDE(domain->mode,
1243 virt_to_phys(domain->pt_root));
1244 domain->pt_root = pte;
1245 domain->mode += 1;
1246 domain->updated = true;
1247
1248 return true;
1249}
1250
1251static u64 *alloc_pte(struct protection_domain *domain,
1252 unsigned long address,
Joerg Roedelcbb9d722010-01-15 14:41:15 +01001253 unsigned long page_size,
Joerg Roedel308973d2009-11-24 17:43:32 +01001254 u64 **pte_page,
1255 gfp_t gfp)
1256{
Joerg Roedelcbb9d722010-01-15 14:41:15 +01001257 int level, end_lvl;
Joerg Roedel308973d2009-11-24 17:43:32 +01001258 u64 *pte, *page;
Joerg Roedelcbb9d722010-01-15 14:41:15 +01001259
1260 BUG_ON(!is_power_of_2(page_size));
Joerg Roedel308973d2009-11-24 17:43:32 +01001261
1262 while (address > PM_LEVEL_SIZE(domain->mode))
1263 increase_address_space(domain, gfp);
1264
Joerg Roedelcbb9d722010-01-15 14:41:15 +01001265 level = domain->mode - 1;
1266 pte = &domain->pt_root[PM_LEVEL_INDEX(level, address)];
1267 address = PAGE_SIZE_ALIGN(address, page_size);
1268 end_lvl = PAGE_SIZE_LEVEL(page_size);
Joerg Roedel308973d2009-11-24 17:43:32 +01001269
1270 while (level > end_lvl) {
1271 if (!IOMMU_PTE_PRESENT(*pte)) {
1272 page = (u64 *)get_zeroed_page(gfp);
1273 if (!page)
1274 return NULL;
1275 *pte = PM_LEVEL_PDE(level, virt_to_phys(page));
1276 }
1277
Joerg Roedelcbb9d722010-01-15 14:41:15 +01001278 /* No level skipping support yet */
1279 if (PM_PTE_LEVEL(*pte) != level)
1280 return NULL;
1281
Joerg Roedel308973d2009-11-24 17:43:32 +01001282 level -= 1;
1283
1284 pte = IOMMU_PTE_PAGE(*pte);
1285
1286 if (pte_page && level == end_lvl)
1287 *pte_page = pte;
1288
1289 pte = &pte[PM_LEVEL_INDEX(level, address)];
1290 }
1291
1292 return pte;
1293}
1294
1295/*
1296 * This function checks if there is a PTE for a given dma address. If
1297 * there is one, it returns the pointer to it.
1298 */
Joerg Roedel24cd7722010-01-19 17:27:39 +01001299static u64 *fetch_pte(struct protection_domain *domain, unsigned long address)
Joerg Roedel308973d2009-11-24 17:43:32 +01001300{
1301 int level;
1302 u64 *pte;
1303
Joerg Roedel24cd7722010-01-19 17:27:39 +01001304 if (address > PM_LEVEL_SIZE(domain->mode))
1305 return NULL;
Joerg Roedel308973d2009-11-24 17:43:32 +01001306
Joerg Roedel24cd7722010-01-19 17:27:39 +01001307 level = domain->mode - 1;
1308 pte = &domain->pt_root[PM_LEVEL_INDEX(level, address)];
1309
1310 while (level > 0) {
1311
1312 /* Not Present */
Joerg Roedel308973d2009-11-24 17:43:32 +01001313 if (!IOMMU_PTE_PRESENT(*pte))
1314 return NULL;
1315
Joerg Roedel24cd7722010-01-19 17:27:39 +01001316 /* Large PTE */
1317 if (PM_PTE_LEVEL(*pte) == 0x07) {
1318 unsigned long pte_mask, __pte;
1319
1320 /*
1321 * If we have a series of large PTEs, make
1322 * sure to return a pointer to the first one.
1323 */
1324 pte_mask = PTE_PAGE_SIZE(*pte);
1325 pte_mask = ~((PAGE_SIZE_PTE_COUNT(pte_mask) << 3) - 1);
1326 __pte = ((unsigned long)pte) & pte_mask;
1327
1328 return (u64 *)__pte;
1329 }
1330
1331 /* No level skipping support yet */
1332 if (PM_PTE_LEVEL(*pte) != level)
1333 return NULL;
1334
Joerg Roedel308973d2009-11-24 17:43:32 +01001335 level -= 1;
1336
Joerg Roedel24cd7722010-01-19 17:27:39 +01001337 /* Walk to the next level */
Joerg Roedel308973d2009-11-24 17:43:32 +01001338 pte = IOMMU_PTE_PAGE(*pte);
1339 pte = &pte[PM_LEVEL_INDEX(level, address)];
Joerg Roedel308973d2009-11-24 17:43:32 +01001340 }
1341
1342 return pte;
1343}
1344
1345/*
Joerg Roedel431b2a22008-07-11 17:14:22 +02001346 * Generic mapping functions. It maps a physical address into a DMA
1347 * address space. It allocates the page table pages if necessary.
1348 * In the future it can be extended to a generic mapping function
1349 * supporting all features of AMD IOMMU page tables like level skipping
1350 * and full 64 bit address spaces.
1351 */
Joerg Roedel38e817f2008-12-02 17:27:52 +01001352static int iommu_map_page(struct protection_domain *dom,
1353 unsigned long bus_addr,
1354 unsigned long phys_addr,
Joerg Roedelabdc5eb2009-09-03 11:33:51 +02001355 int prot,
Joerg Roedelcbb9d722010-01-15 14:41:15 +01001356 unsigned long page_size)
Joerg Roedelbd0e5212008-06-26 21:27:56 +02001357{
Joerg Roedel8bda3092009-05-12 12:02:46 +02001358 u64 __pte, *pte;
Joerg Roedelcbb9d722010-01-15 14:41:15 +01001359 int i, count;
Joerg Roedelabdc5eb2009-09-03 11:33:51 +02001360
Joerg Roedelbad1cac2009-09-02 16:52:23 +02001361 if (!(prot & IOMMU_PROT_MASK))
Joerg Roedelbd0e5212008-06-26 21:27:56 +02001362 return -EINVAL;
1363
Joerg Roedelcbb9d722010-01-15 14:41:15 +01001364 bus_addr = PAGE_ALIGN(bus_addr);
1365 phys_addr = PAGE_ALIGN(phys_addr);
1366 count = PAGE_SIZE_PTE_COUNT(page_size);
1367 pte = alloc_pte(dom, bus_addr, page_size, NULL, GFP_KERNEL);
Joerg Roedelbd0e5212008-06-26 21:27:56 +02001368
Joerg Roedelcbb9d722010-01-15 14:41:15 +01001369 for (i = 0; i < count; ++i)
1370 if (IOMMU_PTE_PRESENT(pte[i]))
1371 return -EBUSY;
Joerg Roedelbd0e5212008-06-26 21:27:56 +02001372
Joerg Roedelcbb9d722010-01-15 14:41:15 +01001373 if (page_size > PAGE_SIZE) {
1374 __pte = PAGE_SIZE_PTE(phys_addr, page_size);
1375 __pte |= PM_LEVEL_ENC(7) | IOMMU_PTE_P | IOMMU_PTE_FC;
1376 } else
1377 __pte = phys_addr | IOMMU_PTE_P | IOMMU_PTE_FC;
1378
Joerg Roedelbd0e5212008-06-26 21:27:56 +02001379 if (prot & IOMMU_PROT_IR)
1380 __pte |= IOMMU_PTE_IR;
1381 if (prot & IOMMU_PROT_IW)
1382 __pte |= IOMMU_PTE_IW;
1383
Joerg Roedelcbb9d722010-01-15 14:41:15 +01001384 for (i = 0; i < count; ++i)
1385 pte[i] = __pte;
Joerg Roedelbd0e5212008-06-26 21:27:56 +02001386
Joerg Roedel04bfdd82009-09-02 16:00:23 +02001387 update_domain(dom);
1388
Joerg Roedelbd0e5212008-06-26 21:27:56 +02001389 return 0;
1390}
1391
Joerg Roedel24cd7722010-01-19 17:27:39 +01001392static unsigned long iommu_unmap_page(struct protection_domain *dom,
1393 unsigned long bus_addr,
1394 unsigned long page_size)
Joerg Roedeleb74ff62008-12-02 19:59:10 +01001395{
Joerg Roedel24cd7722010-01-19 17:27:39 +01001396 unsigned long long unmap_size, unmapped;
1397 u64 *pte;
Joerg Roedeleb74ff62008-12-02 19:59:10 +01001398
Joerg Roedel24cd7722010-01-19 17:27:39 +01001399 BUG_ON(!is_power_of_2(page_size));
1400
1401 unmapped = 0;
1402
1403 while (unmapped < page_size) {
1404
1405 pte = fetch_pte(dom, bus_addr);
1406
1407 if (!pte) {
1408 /*
1409 * No PTE for this address
1410 * move forward in 4kb steps
1411 */
1412 unmap_size = PAGE_SIZE;
1413 } else if (PM_PTE_LEVEL(*pte) == 0) {
1414 /* 4kb PTE found for this address */
1415 unmap_size = PAGE_SIZE;
1416 *pte = 0ULL;
1417 } else {
1418 int count, i;
1419
1420 /* Large PTE found which maps this address */
1421 unmap_size = PTE_PAGE_SIZE(*pte);
Alex Williamson60d0ca32013-06-21 14:33:19 -06001422
1423 /* Only unmap from the first pte in the page */
1424 if ((unmap_size - 1) & bus_addr)
1425 break;
Joerg Roedel24cd7722010-01-19 17:27:39 +01001426 count = PAGE_SIZE_PTE_COUNT(unmap_size);
1427 for (i = 0; i < count; i++)
1428 pte[i] = 0ULL;
1429 }
1430
1431 bus_addr = (bus_addr & ~(unmap_size - 1)) + unmap_size;
1432 unmapped += unmap_size;
1433 }
1434
Alex Williamson60d0ca32013-06-21 14:33:19 -06001435 BUG_ON(unmapped && !is_power_of_2(unmapped));
Joerg Roedel24cd7722010-01-19 17:27:39 +01001436
1437 return unmapped;
Joerg Roedeleb74ff62008-12-02 19:59:10 +01001438}
Joerg Roedeleb74ff62008-12-02 19:59:10 +01001439
Joerg Roedel431b2a22008-07-11 17:14:22 +02001440/*
1441 * This function checks if a specific unity mapping entry is needed for
1442 * this specific IOMMU.
1443 */
Joerg Roedelbd0e5212008-06-26 21:27:56 +02001444static int iommu_for_unity_map(struct amd_iommu *iommu,
1445 struct unity_map_entry *entry)
1446{
1447 u16 bdf, i;
1448
1449 for (i = entry->devid_start; i <= entry->devid_end; ++i) {
1450 bdf = amd_iommu_alias_table[i];
1451 if (amd_iommu_rlookup_table[bdf] == iommu)
1452 return 1;
1453 }
1454
1455 return 0;
1456}
1457
Joerg Roedel431b2a22008-07-11 17:14:22 +02001458/*
Joerg Roedel431b2a22008-07-11 17:14:22 +02001459 * This function actually applies the mapping to the page table of the
1460 * dma_ops domain.
1461 */
Joerg Roedelbd0e5212008-06-26 21:27:56 +02001462static int dma_ops_unity_map(struct dma_ops_domain *dma_dom,
1463 struct unity_map_entry *e)
1464{
1465 u64 addr;
1466 int ret;
1467
1468 for (addr = e->address_start; addr < e->address_end;
1469 addr += PAGE_SIZE) {
Joerg Roedelabdc5eb2009-09-03 11:33:51 +02001470 ret = iommu_map_page(&dma_dom->domain, addr, addr, e->prot,
Joerg Roedelcbb9d722010-01-15 14:41:15 +01001471 PAGE_SIZE);
Joerg Roedelbd0e5212008-06-26 21:27:56 +02001472 if (ret)
1473 return ret;
1474 /*
1475 * if unity mapping is in aperture range mark the page
1476 * as allocated in the aperture
1477 */
1478 if (addr < dma_dom->aperture_size)
Joerg Roedelc3239562009-05-12 10:56:44 +02001479 __set_bit(addr >> PAGE_SHIFT,
Joerg Roedel384de722009-05-15 12:30:05 +02001480 dma_dom->aperture[0]->bitmap);
Joerg Roedelbd0e5212008-06-26 21:27:56 +02001481 }
1482
1483 return 0;
1484}
1485
Joerg Roedel431b2a22008-07-11 17:14:22 +02001486/*
Joerg Roedel171e7b32009-11-24 17:47:56 +01001487 * Init the unity mappings for a specific IOMMU in the system
1488 *
1489 * Basically iterates over all unity mapping entries and applies them to
1490 * the default domain DMA of that IOMMU if necessary.
1491 */
1492static int iommu_init_unity_mappings(struct amd_iommu *iommu)
1493{
1494 struct unity_map_entry *entry;
1495 int ret;
1496
1497 list_for_each_entry(entry, &amd_iommu_unity_map, list) {
1498 if (!iommu_for_unity_map(iommu, entry))
1499 continue;
1500 ret = dma_ops_unity_map(iommu->default_dom, entry);
1501 if (ret)
1502 return ret;
1503 }
1504
1505 return 0;
1506}
1507
1508/*
Joerg Roedel431b2a22008-07-11 17:14:22 +02001509 * Inits the unity mappings required for a specific device
1510 */
Joerg Roedelbd0e5212008-06-26 21:27:56 +02001511static int init_unity_mappings_for_device(struct dma_ops_domain *dma_dom,
1512 u16 devid)
1513{
1514 struct unity_map_entry *e;
1515 int ret;
1516
1517 list_for_each_entry(e, &amd_iommu_unity_map, list) {
1518 if (!(devid >= e->devid_start && devid <= e->devid_end))
1519 continue;
1520 ret = dma_ops_unity_map(dma_dom, e);
1521 if (ret)
1522 return ret;
1523 }
1524
1525 return 0;
1526}
1527
Joerg Roedel431b2a22008-07-11 17:14:22 +02001528/****************************************************************************
1529 *
1530 * The next functions belong to the address allocator for the dma_ops
1531 * interface functions. They work like the allocators in the other IOMMU
1532 * drivers. Its basically a bitmap which marks the allocated pages in
1533 * the aperture. Maybe it could be enhanced in the future to a more
1534 * efficient allocator.
1535 *
1536 ****************************************************************************/
Joerg Roedeld3086442008-06-26 21:27:57 +02001537
Joerg Roedel431b2a22008-07-11 17:14:22 +02001538/*
Joerg Roedel384de722009-05-15 12:30:05 +02001539 * The address allocator core functions.
Joerg Roedel431b2a22008-07-11 17:14:22 +02001540 *
1541 * called with domain->lock held
1542 */
Joerg Roedel384de722009-05-15 12:30:05 +02001543
Joerg Roedel9cabe892009-05-18 16:38:55 +02001544/*
Joerg Roedel171e7b32009-11-24 17:47:56 +01001545 * Used to reserve address ranges in the aperture (e.g. for exclusion
1546 * ranges.
1547 */
1548static void dma_ops_reserve_addresses(struct dma_ops_domain *dom,
1549 unsigned long start_page,
1550 unsigned int pages)
1551{
1552 unsigned int i, last_page = dom->aperture_size >> PAGE_SHIFT;
1553
1554 if (start_page + pages > last_page)
1555 pages = last_page - start_page;
1556
1557 for (i = start_page; i < start_page + pages; ++i) {
1558 int index = i / APERTURE_RANGE_PAGES;
1559 int page = i % APERTURE_RANGE_PAGES;
1560 __set_bit(page, dom->aperture[index]->bitmap);
1561 }
1562}
1563
1564/*
Joerg Roedel9cabe892009-05-18 16:38:55 +02001565 * This function is used to add a new aperture range to an existing
1566 * aperture in case of dma_ops domain allocation or address allocation
1567 * failure.
1568 */
Joerg Roedel576175c2009-11-23 19:08:46 +01001569static int alloc_new_range(struct dma_ops_domain *dma_dom,
Joerg Roedel9cabe892009-05-18 16:38:55 +02001570 bool populate, gfp_t gfp)
1571{
1572 int index = dma_dom->aperture_size >> APERTURE_RANGE_SHIFT;
Joerg Roedel576175c2009-11-23 19:08:46 +01001573 struct amd_iommu *iommu;
Joerg Roedel17f5b562011-07-06 17:14:44 +02001574 unsigned long i, old_size;
Joerg Roedel9cabe892009-05-18 16:38:55 +02001575
Joerg Roedelf5e97052009-05-22 12:31:53 +02001576#ifdef CONFIG_IOMMU_STRESS
1577 populate = false;
1578#endif
1579
Joerg Roedel9cabe892009-05-18 16:38:55 +02001580 if (index >= APERTURE_MAX_RANGES)
1581 return -ENOMEM;
1582
1583 dma_dom->aperture[index] = kzalloc(sizeof(struct aperture_range), gfp);
1584 if (!dma_dom->aperture[index])
1585 return -ENOMEM;
1586
1587 dma_dom->aperture[index]->bitmap = (void *)get_zeroed_page(gfp);
1588 if (!dma_dom->aperture[index]->bitmap)
1589 goto out_free;
1590
1591 dma_dom->aperture[index]->offset = dma_dom->aperture_size;
1592
1593 if (populate) {
1594 unsigned long address = dma_dom->aperture_size;
1595 int i, num_ptes = APERTURE_RANGE_PAGES / 512;
1596 u64 *pte, *pte_page;
1597
1598 for (i = 0; i < num_ptes; ++i) {
Joerg Roedelcbb9d722010-01-15 14:41:15 +01001599 pte = alloc_pte(&dma_dom->domain, address, PAGE_SIZE,
Joerg Roedel9cabe892009-05-18 16:38:55 +02001600 &pte_page, gfp);
1601 if (!pte)
1602 goto out_free;
1603
1604 dma_dom->aperture[index]->pte_pages[i] = pte_page;
1605
1606 address += APERTURE_RANGE_SIZE / 64;
1607 }
1608 }
1609
Joerg Roedel17f5b562011-07-06 17:14:44 +02001610 old_size = dma_dom->aperture_size;
Joerg Roedel9cabe892009-05-18 16:38:55 +02001611 dma_dom->aperture_size += APERTURE_RANGE_SIZE;
1612
Joerg Roedel17f5b562011-07-06 17:14:44 +02001613 /* Reserve address range used for MSI messages */
1614 if (old_size < MSI_ADDR_BASE_LO &&
1615 dma_dom->aperture_size > MSI_ADDR_BASE_LO) {
1616 unsigned long spage;
1617 int pages;
1618
1619 pages = iommu_num_pages(MSI_ADDR_BASE_LO, 0x10000, PAGE_SIZE);
1620 spage = MSI_ADDR_BASE_LO >> PAGE_SHIFT;
1621
1622 dma_ops_reserve_addresses(dma_dom, spage, pages);
1623 }
1624
Uwe Kleine-Königb5950762010-11-01 15:38:34 -04001625 /* Initialize the exclusion range if necessary */
Joerg Roedel576175c2009-11-23 19:08:46 +01001626 for_each_iommu(iommu) {
1627 if (iommu->exclusion_start &&
1628 iommu->exclusion_start >= dma_dom->aperture[index]->offset
1629 && iommu->exclusion_start < dma_dom->aperture_size) {
1630 unsigned long startpage;
1631 int pages = iommu_num_pages(iommu->exclusion_start,
1632 iommu->exclusion_length,
1633 PAGE_SIZE);
1634 startpage = iommu->exclusion_start >> PAGE_SHIFT;
1635 dma_ops_reserve_addresses(dma_dom, startpage, pages);
1636 }
Joerg Roedel00cd1222009-05-19 09:52:40 +02001637 }
1638
1639 /*
1640 * Check for areas already mapped as present in the new aperture
1641 * range and mark those pages as reserved in the allocator. Such
1642 * mappings may already exist as a result of requested unity
1643 * mappings for devices.
1644 */
1645 for (i = dma_dom->aperture[index]->offset;
1646 i < dma_dom->aperture_size;
1647 i += PAGE_SIZE) {
Joerg Roedel24cd7722010-01-19 17:27:39 +01001648 u64 *pte = fetch_pte(&dma_dom->domain, i);
Joerg Roedel00cd1222009-05-19 09:52:40 +02001649 if (!pte || !IOMMU_PTE_PRESENT(*pte))
1650 continue;
1651
Joerg Roedelfcd08612011-10-11 17:41:32 +02001652 dma_ops_reserve_addresses(dma_dom, i >> PAGE_SHIFT, 1);
Joerg Roedel00cd1222009-05-19 09:52:40 +02001653 }
1654
Joerg Roedel04bfdd82009-09-02 16:00:23 +02001655 update_domain(&dma_dom->domain);
1656
Joerg Roedel9cabe892009-05-18 16:38:55 +02001657 return 0;
1658
1659out_free:
Joerg Roedel04bfdd82009-09-02 16:00:23 +02001660 update_domain(&dma_dom->domain);
1661
Joerg Roedel9cabe892009-05-18 16:38:55 +02001662 free_page((unsigned long)dma_dom->aperture[index]->bitmap);
1663
1664 kfree(dma_dom->aperture[index]);
1665 dma_dom->aperture[index] = NULL;
1666
1667 return -ENOMEM;
1668}
1669
Joerg Roedel384de722009-05-15 12:30:05 +02001670static unsigned long dma_ops_area_alloc(struct device *dev,
1671 struct dma_ops_domain *dom,
1672 unsigned int pages,
1673 unsigned long align_mask,
1674 u64 dma_mask,
1675 unsigned long start)
1676{
Joerg Roedel803b8cb2009-05-18 15:32:48 +02001677 unsigned long next_bit = dom->next_address % APERTURE_RANGE_SIZE;
Joerg Roedel384de722009-05-15 12:30:05 +02001678 int max_index = dom->aperture_size >> APERTURE_RANGE_SHIFT;
1679 int i = start >> APERTURE_RANGE_SHIFT;
1680 unsigned long boundary_size;
1681 unsigned long address = -1;
1682 unsigned long limit;
1683
Joerg Roedel803b8cb2009-05-18 15:32:48 +02001684 next_bit >>= PAGE_SHIFT;
1685
Joerg Roedel384de722009-05-15 12:30:05 +02001686 boundary_size = ALIGN(dma_get_seg_boundary(dev) + 1,
1687 PAGE_SIZE) >> PAGE_SHIFT;
1688
1689 for (;i < max_index; ++i) {
1690 unsigned long offset = dom->aperture[i]->offset >> PAGE_SHIFT;
1691
1692 if (dom->aperture[i]->offset >= dma_mask)
1693 break;
1694
1695 limit = iommu_device_max_index(APERTURE_RANGE_PAGES, offset,
1696 dma_mask >> PAGE_SHIFT);
1697
1698 address = iommu_area_alloc(dom->aperture[i]->bitmap,
1699 limit, next_bit, pages, 0,
1700 boundary_size, align_mask);
1701 if (address != -1) {
1702 address = dom->aperture[i]->offset +
1703 (address << PAGE_SHIFT);
Joerg Roedel803b8cb2009-05-18 15:32:48 +02001704 dom->next_address = address + (pages << PAGE_SHIFT);
Joerg Roedel384de722009-05-15 12:30:05 +02001705 break;
1706 }
1707
1708 next_bit = 0;
1709 }
1710
1711 return address;
1712}
1713
Joerg Roedeld3086442008-06-26 21:27:57 +02001714static unsigned long dma_ops_alloc_addresses(struct device *dev,
1715 struct dma_ops_domain *dom,
Joerg Roedel6d4f3432008-09-04 19:18:02 +02001716 unsigned int pages,
Joerg Roedel832a90c2008-09-18 15:54:23 +02001717 unsigned long align_mask,
1718 u64 dma_mask)
Joerg Roedeld3086442008-06-26 21:27:57 +02001719{
Joerg Roedeld3086442008-06-26 21:27:57 +02001720 unsigned long address;
Joerg Roedeld3086442008-06-26 21:27:57 +02001721
Joerg Roedelfe16f082009-05-22 12:27:53 +02001722#ifdef CONFIG_IOMMU_STRESS
1723 dom->next_address = 0;
1724 dom->need_flush = true;
1725#endif
Joerg Roedeld3086442008-06-26 21:27:57 +02001726
Joerg Roedel384de722009-05-15 12:30:05 +02001727 address = dma_ops_area_alloc(dev, dom, pages, align_mask,
Joerg Roedel803b8cb2009-05-18 15:32:48 +02001728 dma_mask, dom->next_address);
Joerg Roedeld3086442008-06-26 21:27:57 +02001729
Joerg Roedel1c655772008-09-04 18:40:05 +02001730 if (address == -1) {
Joerg Roedel803b8cb2009-05-18 15:32:48 +02001731 dom->next_address = 0;
Joerg Roedel384de722009-05-15 12:30:05 +02001732 address = dma_ops_area_alloc(dev, dom, pages, align_mask,
1733 dma_mask, 0);
Joerg Roedel1c655772008-09-04 18:40:05 +02001734 dom->need_flush = true;
1735 }
Joerg Roedeld3086442008-06-26 21:27:57 +02001736
Joerg Roedel384de722009-05-15 12:30:05 +02001737 if (unlikely(address == -1))
FUJITA Tomonori8fd524b2009-11-15 21:19:53 +09001738 address = DMA_ERROR_CODE;
Joerg Roedeld3086442008-06-26 21:27:57 +02001739
1740 WARN_ON((address + (PAGE_SIZE*pages)) > dom->aperture_size);
1741
1742 return address;
1743}
1744
Joerg Roedel431b2a22008-07-11 17:14:22 +02001745/*
1746 * The address free function.
1747 *
1748 * called with domain->lock held
1749 */
Joerg Roedeld3086442008-06-26 21:27:57 +02001750static void dma_ops_free_addresses(struct dma_ops_domain *dom,
1751 unsigned long address,
1752 unsigned int pages)
1753{
Joerg Roedel384de722009-05-15 12:30:05 +02001754 unsigned i = address >> APERTURE_RANGE_SHIFT;
1755 struct aperture_range *range = dom->aperture[i];
Joerg Roedel80be3082008-11-06 14:59:05 +01001756
Joerg Roedel384de722009-05-15 12:30:05 +02001757 BUG_ON(i >= APERTURE_MAX_RANGES || range == NULL);
1758
Joerg Roedel47bccd62009-05-22 12:40:54 +02001759#ifdef CONFIG_IOMMU_STRESS
1760 if (i < 4)
1761 return;
1762#endif
1763
Joerg Roedel803b8cb2009-05-18 15:32:48 +02001764 if (address >= dom->next_address)
Joerg Roedel80be3082008-11-06 14:59:05 +01001765 dom->need_flush = true;
Joerg Roedel384de722009-05-15 12:30:05 +02001766
1767 address = (address % APERTURE_RANGE_SIZE) >> PAGE_SHIFT;
Joerg Roedel803b8cb2009-05-18 15:32:48 +02001768
Akinobu Mitaa66022c2009-12-15 16:48:28 -08001769 bitmap_clear(range->bitmap, address, pages);
Joerg Roedel384de722009-05-15 12:30:05 +02001770
Joerg Roedeld3086442008-06-26 21:27:57 +02001771}
1772
Joerg Roedel431b2a22008-07-11 17:14:22 +02001773/****************************************************************************
1774 *
1775 * The next functions belong to the domain allocation. A domain is
1776 * allocated for every IOMMU as the default domain. If device isolation
1777 * is enabled, every device get its own domain. The most important thing
1778 * about domains is the page table mapping the DMA address space they
1779 * contain.
1780 *
1781 ****************************************************************************/
1782
Joerg Roedelaeb26f52009-11-20 16:44:01 +01001783/*
1784 * This function adds a protection domain to the global protection domain list
1785 */
1786static void add_domain_to_list(struct protection_domain *domain)
1787{
1788 unsigned long flags;
1789
1790 spin_lock_irqsave(&amd_iommu_pd_lock, flags);
1791 list_add(&domain->list, &amd_iommu_pd_list);
1792 spin_unlock_irqrestore(&amd_iommu_pd_lock, flags);
1793}
1794
1795/*
1796 * This function removes a protection domain to the global
1797 * protection domain list
1798 */
1799static void del_domain_from_list(struct protection_domain *domain)
1800{
1801 unsigned long flags;
1802
1803 spin_lock_irqsave(&amd_iommu_pd_lock, flags);
1804 list_del(&domain->list);
1805 spin_unlock_irqrestore(&amd_iommu_pd_lock, flags);
1806}
1807
Joerg Roedelec487d12008-06-26 21:27:58 +02001808static u16 domain_id_alloc(void)
1809{
1810 unsigned long flags;
1811 int id;
1812
1813 write_lock_irqsave(&amd_iommu_devtable_lock, flags);
1814 id = find_first_zero_bit(amd_iommu_pd_alloc_bitmap, MAX_DOMAIN_ID);
1815 BUG_ON(id == 0);
1816 if (id > 0 && id < MAX_DOMAIN_ID)
1817 __set_bit(id, amd_iommu_pd_alloc_bitmap);
1818 else
1819 id = 0;
1820 write_unlock_irqrestore(&amd_iommu_devtable_lock, flags);
1821
1822 return id;
1823}
1824
Joerg Roedela2acfb72008-12-02 18:28:53 +01001825static void domain_id_free(int id)
1826{
1827 unsigned long flags;
1828
1829 write_lock_irqsave(&amd_iommu_devtable_lock, flags);
1830 if (id > 0 && id < MAX_DOMAIN_ID)
1831 __clear_bit(id, amd_iommu_pd_alloc_bitmap);
1832 write_unlock_irqrestore(&amd_iommu_devtable_lock, flags);
1833}
Joerg Roedela2acfb72008-12-02 18:28:53 +01001834
Joerg Roedel5c34c402013-06-20 20:22:58 +02001835#define DEFINE_FREE_PT_FN(LVL, FN) \
1836static void free_pt_##LVL (unsigned long __pt) \
1837{ \
1838 unsigned long p; \
1839 u64 *pt; \
1840 int i; \
1841 \
1842 pt = (u64 *)__pt; \
1843 \
1844 for (i = 0; i < 512; ++i) { \
1845 if (!IOMMU_PTE_PRESENT(pt[i])) \
1846 continue; \
1847 \
1848 p = (unsigned long)IOMMU_PTE_PAGE(pt[i]); \
1849 FN(p); \
1850 } \
1851 free_page((unsigned long)pt); \
1852}
1853
1854DEFINE_FREE_PT_FN(l2, free_page)
1855DEFINE_FREE_PT_FN(l3, free_pt_l2)
1856DEFINE_FREE_PT_FN(l4, free_pt_l3)
1857DEFINE_FREE_PT_FN(l5, free_pt_l4)
1858DEFINE_FREE_PT_FN(l6, free_pt_l5)
1859
Joerg Roedel86db2e52008-12-02 18:20:21 +01001860static void free_pagetable(struct protection_domain *domain)
Joerg Roedelec487d12008-06-26 21:27:58 +02001861{
Joerg Roedel5c34c402013-06-20 20:22:58 +02001862 unsigned long root = (unsigned long)domain->pt_root;
Joerg Roedelec487d12008-06-26 21:27:58 +02001863
Joerg Roedel5c34c402013-06-20 20:22:58 +02001864 switch (domain->mode) {
1865 case PAGE_MODE_NONE:
1866 break;
1867 case PAGE_MODE_1_LEVEL:
1868 free_page(root);
1869 break;
1870 case PAGE_MODE_2_LEVEL:
1871 free_pt_l2(root);
1872 break;
1873 case PAGE_MODE_3_LEVEL:
1874 free_pt_l3(root);
1875 break;
1876 case PAGE_MODE_4_LEVEL:
1877 free_pt_l4(root);
1878 break;
1879 case PAGE_MODE_5_LEVEL:
1880 free_pt_l5(root);
1881 break;
1882 case PAGE_MODE_6_LEVEL:
1883 free_pt_l6(root);
1884 break;
1885 default:
1886 BUG();
Joerg Roedelec487d12008-06-26 21:27:58 +02001887 }
Joerg Roedelec487d12008-06-26 21:27:58 +02001888}
1889
Joerg Roedelb16137b2011-11-21 16:50:23 +01001890static void free_gcr3_tbl_level1(u64 *tbl)
1891{
1892 u64 *ptr;
1893 int i;
1894
1895 for (i = 0; i < 512; ++i) {
1896 if (!(tbl[i] & GCR3_VALID))
1897 continue;
1898
1899 ptr = __va(tbl[i] & PAGE_MASK);
1900
1901 free_page((unsigned long)ptr);
1902 }
1903}
1904
1905static void free_gcr3_tbl_level2(u64 *tbl)
1906{
1907 u64 *ptr;
1908 int i;
1909
1910 for (i = 0; i < 512; ++i) {
1911 if (!(tbl[i] & GCR3_VALID))
1912 continue;
1913
1914 ptr = __va(tbl[i] & PAGE_MASK);
1915
1916 free_gcr3_tbl_level1(ptr);
1917 }
1918}
1919
Joerg Roedel52815b72011-11-17 17:24:28 +01001920static void free_gcr3_table(struct protection_domain *domain)
1921{
Joerg Roedelb16137b2011-11-21 16:50:23 +01001922 if (domain->glx == 2)
1923 free_gcr3_tbl_level2(domain->gcr3_tbl);
1924 else if (domain->glx == 1)
1925 free_gcr3_tbl_level1(domain->gcr3_tbl);
1926 else if (domain->glx != 0)
1927 BUG();
1928
Joerg Roedel52815b72011-11-17 17:24:28 +01001929 free_page((unsigned long)domain->gcr3_tbl);
1930}
1931
Joerg Roedel431b2a22008-07-11 17:14:22 +02001932/*
1933 * Free a domain, only used if something went wrong in the
1934 * allocation path and we need to free an already allocated page table
1935 */
Joerg Roedelec487d12008-06-26 21:27:58 +02001936static void dma_ops_domain_free(struct dma_ops_domain *dom)
1937{
Joerg Roedel384de722009-05-15 12:30:05 +02001938 int i;
1939
Joerg Roedelec487d12008-06-26 21:27:58 +02001940 if (!dom)
1941 return;
1942
Joerg Roedelaeb26f52009-11-20 16:44:01 +01001943 del_domain_from_list(&dom->domain);
1944
Joerg Roedel86db2e52008-12-02 18:20:21 +01001945 free_pagetable(&dom->domain);
Joerg Roedelec487d12008-06-26 21:27:58 +02001946
Joerg Roedel384de722009-05-15 12:30:05 +02001947 for (i = 0; i < APERTURE_MAX_RANGES; ++i) {
1948 if (!dom->aperture[i])
1949 continue;
1950 free_page((unsigned long)dom->aperture[i]->bitmap);
1951 kfree(dom->aperture[i]);
1952 }
Joerg Roedelec487d12008-06-26 21:27:58 +02001953
1954 kfree(dom);
1955}
1956
Joerg Roedel431b2a22008-07-11 17:14:22 +02001957/*
1958 * Allocates a new protection domain usable for the dma_ops functions.
Uwe Kleine-Königb5950762010-11-01 15:38:34 -04001959 * It also initializes the page table and the address allocator data
Joerg Roedel431b2a22008-07-11 17:14:22 +02001960 * structures required for the dma_ops interface
1961 */
Joerg Roedel87a64d52009-11-24 17:26:43 +01001962static struct dma_ops_domain *dma_ops_domain_alloc(void)
Joerg Roedelec487d12008-06-26 21:27:58 +02001963{
1964 struct dma_ops_domain *dma_dom;
Joerg Roedelec487d12008-06-26 21:27:58 +02001965
1966 dma_dom = kzalloc(sizeof(struct dma_ops_domain), GFP_KERNEL);
1967 if (!dma_dom)
1968 return NULL;
1969
1970 spin_lock_init(&dma_dom->domain.lock);
1971
1972 dma_dom->domain.id = domain_id_alloc();
1973 if (dma_dom->domain.id == 0)
1974 goto free_dma_dom;
Joerg Roedel7c392cb2009-11-26 11:13:32 +01001975 INIT_LIST_HEAD(&dma_dom->domain.dev_list);
Joerg Roedel8f7a0172009-09-02 16:55:24 +02001976 dma_dom->domain.mode = PAGE_MODE_2_LEVEL;
Joerg Roedelec487d12008-06-26 21:27:58 +02001977 dma_dom->domain.pt_root = (void *)get_zeroed_page(GFP_KERNEL);
Joerg Roedel9fdb19d2008-12-02 17:46:25 +01001978 dma_dom->domain.flags = PD_DMA_OPS_MASK;
Joerg Roedelec487d12008-06-26 21:27:58 +02001979 dma_dom->domain.priv = dma_dom;
1980 if (!dma_dom->domain.pt_root)
1981 goto free_dma_dom;
Joerg Roedelec487d12008-06-26 21:27:58 +02001982
Joerg Roedel1c655772008-09-04 18:40:05 +02001983 dma_dom->need_flush = false;
Joerg Roedelbd60b732008-09-11 10:24:48 +02001984 dma_dom->target_dev = 0xffff;
Joerg Roedel1c655772008-09-04 18:40:05 +02001985
Joerg Roedelaeb26f52009-11-20 16:44:01 +01001986 add_domain_to_list(&dma_dom->domain);
1987
Joerg Roedel576175c2009-11-23 19:08:46 +01001988 if (alloc_new_range(dma_dom, true, GFP_KERNEL))
Joerg Roedelec487d12008-06-26 21:27:58 +02001989 goto free_dma_dom;
Joerg Roedelec487d12008-06-26 21:27:58 +02001990
Joerg Roedel431b2a22008-07-11 17:14:22 +02001991 /*
Joerg Roedelec487d12008-06-26 21:27:58 +02001992 * mark the first page as allocated so we never return 0 as
1993 * a valid dma-address. So we can use 0 as error value
Joerg Roedel431b2a22008-07-11 17:14:22 +02001994 */
Joerg Roedel384de722009-05-15 12:30:05 +02001995 dma_dom->aperture[0]->bitmap[0] = 1;
Joerg Roedel803b8cb2009-05-18 15:32:48 +02001996 dma_dom->next_address = 0;
Joerg Roedelec487d12008-06-26 21:27:58 +02001997
Joerg Roedelec487d12008-06-26 21:27:58 +02001998
1999 return dma_dom;
2000
2001free_dma_dom:
2002 dma_ops_domain_free(dma_dom);
2003
2004 return NULL;
2005}
2006
Joerg Roedel431b2a22008-07-11 17:14:22 +02002007/*
Joerg Roedel5b28df62008-12-02 17:49:42 +01002008 * little helper function to check whether a given protection domain is a
2009 * dma_ops domain
2010 */
2011static bool dma_ops_domain(struct protection_domain *domain)
2012{
2013 return domain->flags & PD_DMA_OPS_MASK;
2014}
2015
Joerg Roedelfd7b5532011-04-05 15:31:08 +02002016static void set_dte_entry(u16 devid, struct protection_domain *domain, bool ats)
Joerg Roedelb20ac0d2008-06-26 21:27:59 +02002017{
Joerg Roedel132bd682011-11-17 14:18:46 +01002018 u64 pte_root = 0;
Joerg Roedelee6c2862011-11-09 12:06:03 +01002019 u64 flags = 0;
Joerg Roedel863c74e2008-12-02 17:56:36 +01002020
Joerg Roedel132bd682011-11-17 14:18:46 +01002021 if (domain->mode != PAGE_MODE_NONE)
2022 pte_root = virt_to_phys(domain->pt_root);
2023
Joerg Roedel38ddf412008-09-11 10:38:32 +02002024 pte_root |= (domain->mode & DEV_ENTRY_MODE_MASK)
2025 << DEV_ENTRY_MODE_SHIFT;
2026 pte_root |= IOMMU_PTE_IR | IOMMU_PTE_IW | IOMMU_PTE_P | IOMMU_PTE_TV;
Joerg Roedelb20ac0d2008-06-26 21:27:59 +02002027
Joerg Roedelee6c2862011-11-09 12:06:03 +01002028 flags = amd_iommu_dev_table[devid].data[1];
2029
Joerg Roedelfd7b5532011-04-05 15:31:08 +02002030 if (ats)
2031 flags |= DTE_FLAG_IOTLB;
2032
Joerg Roedel52815b72011-11-17 17:24:28 +01002033 if (domain->flags & PD_IOMMUV2_MASK) {
2034 u64 gcr3 = __pa(domain->gcr3_tbl);
2035 u64 glx = domain->glx;
2036 u64 tmp;
2037
2038 pte_root |= DTE_FLAG_GV;
2039 pte_root |= (glx & DTE_GLX_MASK) << DTE_GLX_SHIFT;
2040
2041 /* First mask out possible old values for GCR3 table */
2042 tmp = DTE_GCR3_VAL_B(~0ULL) << DTE_GCR3_SHIFT_B;
2043 flags &= ~tmp;
2044
2045 tmp = DTE_GCR3_VAL_C(~0ULL) << DTE_GCR3_SHIFT_C;
2046 flags &= ~tmp;
2047
2048 /* Encode GCR3 table into DTE */
2049 tmp = DTE_GCR3_VAL_A(gcr3) << DTE_GCR3_SHIFT_A;
2050 pte_root |= tmp;
2051
2052 tmp = DTE_GCR3_VAL_B(gcr3) << DTE_GCR3_SHIFT_B;
2053 flags |= tmp;
2054
2055 tmp = DTE_GCR3_VAL_C(gcr3) << DTE_GCR3_SHIFT_C;
2056 flags |= tmp;
2057 }
2058
Joerg Roedelee6c2862011-11-09 12:06:03 +01002059 flags &= ~(0xffffUL);
2060 flags |= domain->id;
2061
2062 amd_iommu_dev_table[devid].data[1] = flags;
2063 amd_iommu_dev_table[devid].data[0] = pte_root;
Joerg Roedelb20ac0d2008-06-26 21:27:59 +02002064}
2065
Joerg Roedel15898bb2009-11-24 15:39:42 +01002066static void clear_dte_entry(u16 devid)
Joerg Roedel355bf552008-12-08 12:02:41 +01002067{
Joerg Roedel355bf552008-12-08 12:02:41 +01002068 /* remove entry from the device table seen by the hardware */
2069 amd_iommu_dev_table[devid].data[0] = IOMMU_PTE_P | IOMMU_PTE_TV;
2070 amd_iommu_dev_table[devid].data[1] = 0;
Joerg Roedel355bf552008-12-08 12:02:41 +01002071
Joerg Roedelc5cca142009-10-09 18:31:20 +02002072 amd_iommu_apply_erratum_63(devid);
Joerg Roedel7f760dd2009-11-26 14:49:59 +01002073}
2074
Joerg Roedelec9e79e2011-06-09 17:25:50 +02002075static void do_attach(struct iommu_dev_data *dev_data,
2076 struct protection_domain *domain)
Joerg Roedel7f760dd2009-11-26 14:49:59 +01002077{
Joerg Roedel7f760dd2009-11-26 14:49:59 +01002078 struct amd_iommu *iommu;
Joerg Roedelec9e79e2011-06-09 17:25:50 +02002079 bool ats;
Joerg Roedel7f760dd2009-11-26 14:49:59 +01002080
Joerg Roedelec9e79e2011-06-09 17:25:50 +02002081 iommu = amd_iommu_rlookup_table[dev_data->devid];
2082 ats = dev_data->ats.enabled;
Joerg Roedel7f760dd2009-11-26 14:49:59 +01002083
2084 /* Update data structures */
2085 dev_data->domain = domain;
2086 list_add(&dev_data->list, &domain->dev_list);
Joerg Roedelf62dda62011-06-09 12:55:35 +02002087 set_dte_entry(dev_data->devid, domain, ats);
Joerg Roedel7f760dd2009-11-26 14:49:59 +01002088
2089 /* Do reference counting */
2090 domain->dev_iommu[iommu->index] += 1;
2091 domain->dev_cnt += 1;
2092
2093 /* Flush the DTE entry */
Joerg Roedel6c542042011-06-09 17:07:31 +02002094 device_flush_dte(dev_data);
Joerg Roedel7f760dd2009-11-26 14:49:59 +01002095}
2096
Joerg Roedelec9e79e2011-06-09 17:25:50 +02002097static void do_detach(struct iommu_dev_data *dev_data)
Joerg Roedel7f760dd2009-11-26 14:49:59 +01002098{
Joerg Roedel7f760dd2009-11-26 14:49:59 +01002099 struct amd_iommu *iommu;
Joerg Roedel7f760dd2009-11-26 14:49:59 +01002100
Joerg Roedelec9e79e2011-06-09 17:25:50 +02002101 iommu = amd_iommu_rlookup_table[dev_data->devid];
Joerg Roedelc5cca142009-10-09 18:31:20 +02002102
Joerg Roedelc4596112009-11-20 14:57:32 +01002103 /* decrease reference counters */
Joerg Roedel7f760dd2009-11-26 14:49:59 +01002104 dev_data->domain->dev_iommu[iommu->index] -= 1;
2105 dev_data->domain->dev_cnt -= 1;
Joerg Roedel355bf552008-12-08 12:02:41 +01002106
Joerg Roedel7f760dd2009-11-26 14:49:59 +01002107 /* Update data structures */
2108 dev_data->domain = NULL;
2109 list_del(&dev_data->list);
Joerg Roedelf62dda62011-06-09 12:55:35 +02002110 clear_dte_entry(dev_data->devid);
Joerg Roedel7f760dd2009-11-26 14:49:59 +01002111
2112 /* Flush the DTE entry */
Joerg Roedel6c542042011-06-09 17:07:31 +02002113 device_flush_dte(dev_data);
Joerg Roedel15898bb2009-11-24 15:39:42 +01002114}
2115
2116/*
2117 * If a device is not yet associated with a domain, this function does
2118 * assigns it visible for the hardware
2119 */
Joerg Roedelec9e79e2011-06-09 17:25:50 +02002120static int __attach_device(struct iommu_dev_data *dev_data,
Joerg Roedel15898bb2009-11-24 15:39:42 +01002121 struct protection_domain *domain)
2122{
Julia Lawall84fe6c12010-05-27 12:31:51 +02002123 int ret;
Joerg Roedel657cbb62009-11-23 15:26:46 +01002124
Joerg Roedel15898bb2009-11-24 15:39:42 +01002125 /* lock domain */
2126 spin_lock(&domain->lock);
2127
Joerg Roedel71f77582011-06-09 19:03:15 +02002128 if (dev_data->alias_data != NULL) {
2129 struct iommu_dev_data *alias_data = dev_data->alias_data;
Joerg Roedel15898bb2009-11-24 15:39:42 +01002130
Joerg Roedel2b02b092011-06-09 17:48:39 +02002131 /* Some sanity checks */
2132 ret = -EBUSY;
2133 if (alias_data->domain != NULL &&
2134 alias_data->domain != domain)
2135 goto out_unlock;
Joerg Roedel15898bb2009-11-24 15:39:42 +01002136
Joerg Roedel2b02b092011-06-09 17:48:39 +02002137 if (dev_data->domain != NULL &&
2138 dev_data->domain != domain)
2139 goto out_unlock;
2140
2141 /* Do real assignment */
Joerg Roedel7f760dd2009-11-26 14:49:59 +01002142 if (alias_data->domain == NULL)
Joerg Roedelec9e79e2011-06-09 17:25:50 +02002143 do_attach(alias_data, domain);
Joerg Roedel24100052009-11-25 15:59:57 +01002144
2145 atomic_inc(&alias_data->bind);
Joerg Roedel657cbb62009-11-23 15:26:46 +01002146 }
Joerg Roedel15898bb2009-11-24 15:39:42 +01002147
Joerg Roedel7f760dd2009-11-26 14:49:59 +01002148 if (dev_data->domain == NULL)
Joerg Roedelec9e79e2011-06-09 17:25:50 +02002149 do_attach(dev_data, domain);
Joerg Roedel15898bb2009-11-24 15:39:42 +01002150
Joerg Roedel24100052009-11-25 15:59:57 +01002151 atomic_inc(&dev_data->bind);
2152
Julia Lawall84fe6c12010-05-27 12:31:51 +02002153 ret = 0;
2154
2155out_unlock:
2156
Joerg Roedel355bf552008-12-08 12:02:41 +01002157 /* ready */
2158 spin_unlock(&domain->lock);
Joerg Roedel21129f72009-09-01 11:59:42 +02002159
Julia Lawall84fe6c12010-05-27 12:31:51 +02002160 return ret;
Joerg Roedel15898bb2009-11-24 15:39:42 +01002161}
2162
Joerg Roedel52815b72011-11-17 17:24:28 +01002163
2164static void pdev_iommuv2_disable(struct pci_dev *pdev)
2165{
2166 pci_disable_ats(pdev);
2167 pci_disable_pri(pdev);
2168 pci_disable_pasid(pdev);
2169}
2170
Joerg Roedel6a113dd2011-12-01 12:04:58 +01002171/* FIXME: Change generic reset-function to do the same */
2172static int pri_reset_while_enabled(struct pci_dev *pdev)
2173{
2174 u16 control;
2175 int pos;
2176
Joerg Roedel46277b72011-12-07 14:34:02 +01002177 pos = pci_find_ext_capability(pdev, PCI_EXT_CAP_ID_PRI);
Joerg Roedel6a113dd2011-12-01 12:04:58 +01002178 if (!pos)
2179 return -EINVAL;
2180
Joerg Roedel46277b72011-12-07 14:34:02 +01002181 pci_read_config_word(pdev, pos + PCI_PRI_CTRL, &control);
2182 control |= PCI_PRI_CTRL_RESET;
2183 pci_write_config_word(pdev, pos + PCI_PRI_CTRL, control);
Joerg Roedel6a113dd2011-12-01 12:04:58 +01002184
2185 return 0;
2186}
2187
Joerg Roedel52815b72011-11-17 17:24:28 +01002188static int pdev_iommuv2_enable(struct pci_dev *pdev)
2189{
Joerg Roedel6a113dd2011-12-01 12:04:58 +01002190 bool reset_enable;
2191 int reqs, ret;
2192
2193 /* FIXME: Hardcode number of outstanding requests for now */
2194 reqs = 32;
2195 if (pdev_pri_erratum(pdev, AMD_PRI_DEV_ERRATUM_LIMIT_REQ_ONE))
2196 reqs = 1;
2197 reset_enable = pdev_pri_erratum(pdev, AMD_PRI_DEV_ERRATUM_ENABLE_RESET);
Joerg Roedel52815b72011-11-17 17:24:28 +01002198
2199 /* Only allow access to user-accessible pages */
2200 ret = pci_enable_pasid(pdev, 0);
2201 if (ret)
2202 goto out_err;
2203
2204 /* First reset the PRI state of the device */
2205 ret = pci_reset_pri(pdev);
2206 if (ret)
2207 goto out_err;
2208
Joerg Roedel6a113dd2011-12-01 12:04:58 +01002209 /* Enable PRI */
2210 ret = pci_enable_pri(pdev, reqs);
Joerg Roedel52815b72011-11-17 17:24:28 +01002211 if (ret)
2212 goto out_err;
2213
Joerg Roedel6a113dd2011-12-01 12:04:58 +01002214 if (reset_enable) {
2215 ret = pri_reset_while_enabled(pdev);
2216 if (ret)
2217 goto out_err;
2218 }
2219
Joerg Roedel52815b72011-11-17 17:24:28 +01002220 ret = pci_enable_ats(pdev, PAGE_SHIFT);
2221 if (ret)
2222 goto out_err;
2223
2224 return 0;
2225
2226out_err:
2227 pci_disable_pri(pdev);
2228 pci_disable_pasid(pdev);
2229
2230 return ret;
2231}
2232
Joerg Roedelc99afa22011-11-21 18:19:25 +01002233/* FIXME: Move this to PCI code */
Joerg Roedela3b93122012-04-12 12:49:26 +02002234#define PCI_PRI_TLP_OFF (1 << 15)
Joerg Roedelc99afa22011-11-21 18:19:25 +01002235
Joerg Roedel98f1ad22012-07-06 13:28:37 +02002236static bool pci_pri_tlp_required(struct pci_dev *pdev)
Joerg Roedelc99afa22011-11-21 18:19:25 +01002237{
Joerg Roedela3b93122012-04-12 12:49:26 +02002238 u16 status;
Joerg Roedelc99afa22011-11-21 18:19:25 +01002239 int pos;
2240
Joerg Roedel46277b72011-12-07 14:34:02 +01002241 pos = pci_find_ext_capability(pdev, PCI_EXT_CAP_ID_PRI);
Joerg Roedelc99afa22011-11-21 18:19:25 +01002242 if (!pos)
2243 return false;
2244
Joerg Roedela3b93122012-04-12 12:49:26 +02002245 pci_read_config_word(pdev, pos + PCI_PRI_STATUS, &status);
Joerg Roedelc99afa22011-11-21 18:19:25 +01002246
Joerg Roedela3b93122012-04-12 12:49:26 +02002247 return (status & PCI_PRI_TLP_OFF) ? true : false;
Joerg Roedelc99afa22011-11-21 18:19:25 +01002248}
2249
Joerg Roedel15898bb2009-11-24 15:39:42 +01002250/*
Frank Arnolddf805ab2012-08-27 19:21:04 +02002251 * If a device is not yet associated with a domain, this function
Joerg Roedel15898bb2009-11-24 15:39:42 +01002252 * assigns it visible for the hardware
2253 */
2254static int attach_device(struct device *dev,
2255 struct protection_domain *domain)
2256{
Joerg Roedelfd7b5532011-04-05 15:31:08 +02002257 struct pci_dev *pdev = to_pci_dev(dev);
Joerg Roedelea61cdd2011-06-09 12:56:30 +02002258 struct iommu_dev_data *dev_data;
Joerg Roedel15898bb2009-11-24 15:39:42 +01002259 unsigned long flags;
2260 int ret;
2261
Joerg Roedelea61cdd2011-06-09 12:56:30 +02002262 dev_data = get_dev_data(dev);
2263
Joerg Roedel52815b72011-11-17 17:24:28 +01002264 if (domain->flags & PD_IOMMUV2_MASK) {
2265 if (!dev_data->iommu_v2 || !dev_data->passthrough)
2266 return -EINVAL;
2267
2268 if (pdev_iommuv2_enable(pdev) != 0)
2269 return -EINVAL;
2270
2271 dev_data->ats.enabled = true;
2272 dev_data->ats.qdep = pci_ats_queue_depth(pdev);
Joerg Roedelc99afa22011-11-21 18:19:25 +01002273 dev_data->pri_tlp = pci_pri_tlp_required(pdev);
Joerg Roedel52815b72011-11-17 17:24:28 +01002274 } else if (amd_iommu_iotlb_sup &&
2275 pci_enable_ats(pdev, PAGE_SHIFT) == 0) {
Joerg Roedelea61cdd2011-06-09 12:56:30 +02002276 dev_data->ats.enabled = true;
2277 dev_data->ats.qdep = pci_ats_queue_depth(pdev);
2278 }
Joerg Roedelfd7b5532011-04-05 15:31:08 +02002279
Joerg Roedel15898bb2009-11-24 15:39:42 +01002280 write_lock_irqsave(&amd_iommu_devtable_lock, flags);
Joerg Roedelec9e79e2011-06-09 17:25:50 +02002281 ret = __attach_device(dev_data, domain);
Joerg Roedel15898bb2009-11-24 15:39:42 +01002282 write_unlock_irqrestore(&amd_iommu_devtable_lock, flags);
2283
2284 /*
2285 * We might boot into a crash-kernel here. The crashed kernel
2286 * left the caches in the IOMMU dirty. So we have to flush
2287 * here to evict all dirty stuff.
2288 */
Joerg Roedel17b124b2011-04-06 18:01:35 +02002289 domain_flush_tlb_pde(domain);
Joerg Roedel15898bb2009-11-24 15:39:42 +01002290
2291 return ret;
2292}
2293
2294/*
2295 * Removes a device from a protection domain (unlocked)
2296 */
Joerg Roedelec9e79e2011-06-09 17:25:50 +02002297static void __detach_device(struct iommu_dev_data *dev_data)
Joerg Roedel15898bb2009-11-24 15:39:42 +01002298{
Joerg Roedel2ca76272010-01-22 16:45:31 +01002299 struct protection_domain *domain;
Joerg Roedel7c392cb2009-11-26 11:13:32 +01002300 unsigned long flags;
Joerg Roedel15898bb2009-11-24 15:39:42 +01002301
Joerg Roedel7f760dd2009-11-26 14:49:59 +01002302 BUG_ON(!dev_data->domain);
Joerg Roedel15898bb2009-11-24 15:39:42 +01002303
Joerg Roedel2ca76272010-01-22 16:45:31 +01002304 domain = dev_data->domain;
2305
2306 spin_lock_irqsave(&domain->lock, flags);
Joerg Roedel24100052009-11-25 15:59:57 +01002307
Joerg Roedel71f77582011-06-09 19:03:15 +02002308 if (dev_data->alias_data != NULL) {
2309 struct iommu_dev_data *alias_data = dev_data->alias_data;
2310
Joerg Roedel7f760dd2009-11-26 14:49:59 +01002311 if (atomic_dec_and_test(&alias_data->bind))
Joerg Roedelec9e79e2011-06-09 17:25:50 +02002312 do_detach(alias_data);
Joerg Roedel24100052009-11-25 15:59:57 +01002313 }
2314
Joerg Roedel7f760dd2009-11-26 14:49:59 +01002315 if (atomic_dec_and_test(&dev_data->bind))
Joerg Roedelec9e79e2011-06-09 17:25:50 +02002316 do_detach(dev_data);
Joerg Roedel7f760dd2009-11-26 14:49:59 +01002317
Joerg Roedel2ca76272010-01-22 16:45:31 +01002318 spin_unlock_irqrestore(&domain->lock, flags);
Joerg Roedel15898bb2009-11-24 15:39:42 +01002319
Joerg Roedel21129f72009-09-01 11:59:42 +02002320 /*
2321 * If we run in passthrough mode the device must be assigned to the
Joerg Roedeld3ad9372010-01-22 17:55:27 +01002322 * passthrough domain if it is detached from any other domain.
2323 * Make sure we can deassign from the pt_domain itself.
Joerg Roedel21129f72009-09-01 11:59:42 +02002324 */
Joerg Roedel5abcdba2011-12-01 15:49:45 +01002325 if (dev_data->passthrough &&
Joerg Roedeld3ad9372010-01-22 17:55:27 +01002326 (dev_data->domain == NULL && domain != pt_domain))
Joerg Roedelec9e79e2011-06-09 17:25:50 +02002327 __attach_device(dev_data, pt_domain);
Joerg Roedel355bf552008-12-08 12:02:41 +01002328}
2329
2330/*
2331 * Removes a device from a protection domain (with devtable_lock held)
2332 */
Joerg Roedel15898bb2009-11-24 15:39:42 +01002333static void detach_device(struct device *dev)
Joerg Roedel355bf552008-12-08 12:02:41 +01002334{
Joerg Roedel52815b72011-11-17 17:24:28 +01002335 struct protection_domain *domain;
Joerg Roedelea61cdd2011-06-09 12:56:30 +02002336 struct iommu_dev_data *dev_data;
Joerg Roedel355bf552008-12-08 12:02:41 +01002337 unsigned long flags;
2338
Joerg Roedelec9e79e2011-06-09 17:25:50 +02002339 dev_data = get_dev_data(dev);
Joerg Roedel52815b72011-11-17 17:24:28 +01002340 domain = dev_data->domain;
Joerg Roedelec9e79e2011-06-09 17:25:50 +02002341
Joerg Roedel355bf552008-12-08 12:02:41 +01002342 /* lock device table */
2343 write_lock_irqsave(&amd_iommu_devtable_lock, flags);
Joerg Roedelec9e79e2011-06-09 17:25:50 +02002344 __detach_device(dev_data);
Joerg Roedel355bf552008-12-08 12:02:41 +01002345 write_unlock_irqrestore(&amd_iommu_devtable_lock, flags);
Joerg Roedelfd7b5532011-04-05 15:31:08 +02002346
Joerg Roedel52815b72011-11-17 17:24:28 +01002347 if (domain->flags & PD_IOMMUV2_MASK)
2348 pdev_iommuv2_disable(to_pci_dev(dev));
2349 else if (dev_data->ats.enabled)
Joerg Roedelea61cdd2011-06-09 12:56:30 +02002350 pci_disable_ats(to_pci_dev(dev));
Joerg Roedel52815b72011-11-17 17:24:28 +01002351
2352 dev_data->ats.enabled = false;
Joerg Roedel355bf552008-12-08 12:02:41 +01002353}
Joerg Roedele275a2a2008-12-10 18:27:25 +01002354
Joerg Roedel15898bb2009-11-24 15:39:42 +01002355/*
2356 * Find out the protection domain structure for a given PCI device. This
2357 * will give us the pointer to the page table root for example.
2358 */
2359static struct protection_domain *domain_for_device(struct device *dev)
2360{
Joerg Roedel71f77582011-06-09 19:03:15 +02002361 struct iommu_dev_data *dev_data;
Joerg Roedel2b02b092011-06-09 17:48:39 +02002362 struct protection_domain *dom = NULL;
Joerg Roedel15898bb2009-11-24 15:39:42 +01002363 unsigned long flags;
Joerg Roedel15898bb2009-11-24 15:39:42 +01002364
Joerg Roedel657cbb62009-11-23 15:26:46 +01002365 dev_data = get_dev_data(dev);
Joerg Roedel15898bb2009-11-24 15:39:42 +01002366
Joerg Roedel2b02b092011-06-09 17:48:39 +02002367 if (dev_data->domain)
2368 return dev_data->domain;
2369
Joerg Roedel71f77582011-06-09 19:03:15 +02002370 if (dev_data->alias_data != NULL) {
2371 struct iommu_dev_data *alias_data = dev_data->alias_data;
Joerg Roedel2b02b092011-06-09 17:48:39 +02002372
2373 read_lock_irqsave(&amd_iommu_devtable_lock, flags);
2374 if (alias_data->domain != NULL) {
2375 __attach_device(dev_data, alias_data->domain);
2376 dom = alias_data->domain;
2377 }
2378 read_unlock_irqrestore(&amd_iommu_devtable_lock, flags);
Joerg Roedel15898bb2009-11-24 15:39:42 +01002379 }
2380
Joerg Roedel15898bb2009-11-24 15:39:42 +01002381 return dom;
2382}
2383
Joerg Roedele275a2a2008-12-10 18:27:25 +01002384static int device_change_notifier(struct notifier_block *nb,
2385 unsigned long action, void *data)
2386{
Joerg Roedele275a2a2008-12-10 18:27:25 +01002387 struct dma_ops_domain *dma_domain;
Joerg Roedel5abcdba2011-12-01 15:49:45 +01002388 struct protection_domain *domain;
2389 struct iommu_dev_data *dev_data;
2390 struct device *dev = data;
Joerg Roedele275a2a2008-12-10 18:27:25 +01002391 struct amd_iommu *iommu;
Joerg Roedel1ac4cbb2008-12-10 19:33:26 +01002392 unsigned long flags;
Joerg Roedel5abcdba2011-12-01 15:49:45 +01002393 u16 devid;
Joerg Roedele275a2a2008-12-10 18:27:25 +01002394
Joerg Roedel98fc5a62009-11-24 17:19:23 +01002395 if (!check_device(dev))
2396 return 0;
Joerg Roedele275a2a2008-12-10 18:27:25 +01002397
Joerg Roedel5abcdba2011-12-01 15:49:45 +01002398 devid = get_device_id(dev);
2399 iommu = amd_iommu_rlookup_table[devid];
2400 dev_data = get_dev_data(dev);
Joerg Roedele275a2a2008-12-10 18:27:25 +01002401
2402 switch (action) {
Chris Wrightc1eee672009-05-21 00:56:58 -07002403 case BUS_NOTIFY_UNBOUND_DRIVER:
Joerg Roedel657cbb62009-11-23 15:26:46 +01002404
2405 domain = domain_for_device(dev);
2406
Joerg Roedele275a2a2008-12-10 18:27:25 +01002407 if (!domain)
2408 goto out;
Joerg Roedel5abcdba2011-12-01 15:49:45 +01002409 if (dev_data->passthrough)
Joerg Roedela1ca3312009-09-01 12:22:22 +02002410 break;
Joerg Roedel15898bb2009-11-24 15:39:42 +01002411 detach_device(dev);
Joerg Roedele275a2a2008-12-10 18:27:25 +01002412 break;
Joerg Roedel1ac4cbb2008-12-10 19:33:26 +01002413 case BUS_NOTIFY_ADD_DEVICE:
Joerg Roedel657cbb62009-11-23 15:26:46 +01002414
2415 iommu_init_device(dev);
Alex Williamson25b11ce2014-09-19 10:03:13 -06002416 init_iommu_group(dev);
Joerg Roedel657cbb62009-11-23 15:26:46 +01002417
Joerg Roedel2c9195e2012-07-19 13:42:54 +02002418 /*
2419 * dev_data is still NULL and
2420 * got initialized in iommu_init_device
2421 */
2422 dev_data = get_dev_data(dev);
2423
2424 if (iommu_pass_through || dev_data->iommu_v2) {
2425 dev_data->passthrough = true;
2426 attach_device(dev, pt_domain);
2427 break;
2428 }
2429
Joerg Roedel657cbb62009-11-23 15:26:46 +01002430 domain = domain_for_device(dev);
2431
Joerg Roedel1ac4cbb2008-12-10 19:33:26 +01002432 /* allocate a protection domain if a device is added */
2433 dma_domain = find_protection_domain(devid);
Joerg Roedelc2a28762013-03-26 22:48:23 +01002434 if (!dma_domain) {
2435 dma_domain = dma_ops_domain_alloc();
2436 if (!dma_domain)
2437 goto out;
2438 dma_domain->target_dev = devid;
Joerg Roedel1ac4cbb2008-12-10 19:33:26 +01002439
Joerg Roedelc2a28762013-03-26 22:48:23 +01002440 spin_lock_irqsave(&iommu_pd_list_lock, flags);
2441 list_add_tail(&dma_domain->list, &iommu_pd_list);
2442 spin_unlock_irqrestore(&iommu_pd_list_lock, flags);
2443 }
Joerg Roedelac1534a2012-06-21 14:52:40 +02002444
Joerg Roedel2c9195e2012-07-19 13:42:54 +02002445 dev->archdata.dma_ops = &amd_iommu_dma_ops;
Joerg Roedelac1534a2012-06-21 14:52:40 +02002446
Joerg Roedel1ac4cbb2008-12-10 19:33:26 +01002447 break;
Joerg Roedel657cbb62009-11-23 15:26:46 +01002448 case BUS_NOTIFY_DEL_DEVICE:
2449
2450 iommu_uninit_device(dev);
2451
Joerg Roedele275a2a2008-12-10 18:27:25 +01002452 default:
2453 goto out;
2454 }
2455
Joerg Roedele275a2a2008-12-10 18:27:25 +01002456 iommu_completion_wait(iommu);
2457
2458out:
2459 return 0;
2460}
2461
Jaswinder Singh Rajputb25ae672009-07-01 19:53:14 +05302462static struct notifier_block device_nb = {
Joerg Roedele275a2a2008-12-10 18:27:25 +01002463 .notifier_call = device_change_notifier,
2464};
Joerg Roedel355bf552008-12-08 12:02:41 +01002465
Joerg Roedel8638c492009-12-10 11:12:25 +01002466void amd_iommu_init_notifier(void)
2467{
2468 bus_register_notifier(&pci_bus_type, &device_nb);
2469}
2470
Joerg Roedel431b2a22008-07-11 17:14:22 +02002471/*****************************************************************************
2472 *
2473 * The next functions belong to the dma_ops mapping/unmapping code.
2474 *
2475 *****************************************************************************/
2476
2477/*
2478 * In the dma_ops path we only have the struct device. This function
2479 * finds the corresponding IOMMU, the protection domain and the
2480 * requestor id for a given device.
2481 * If the device is not yet associated with a domain this is also done
2482 * in this function.
2483 */
Joerg Roedel94f6d192009-11-24 16:40:02 +01002484static struct protection_domain *get_domain(struct device *dev)
Joerg Roedelb20ac0d2008-06-26 21:27:59 +02002485{
Joerg Roedel94f6d192009-11-24 16:40:02 +01002486 struct protection_domain *domain;
Joerg Roedelb20ac0d2008-06-26 21:27:59 +02002487 struct dma_ops_domain *dma_dom;
Joerg Roedel94f6d192009-11-24 16:40:02 +01002488 u16 devid = get_device_id(dev);
Joerg Roedelb20ac0d2008-06-26 21:27:59 +02002489
Joerg Roedelf99c0f12009-11-23 16:52:56 +01002490 if (!check_device(dev))
Joerg Roedel94f6d192009-11-24 16:40:02 +01002491 return ERR_PTR(-EINVAL);
Joerg Roedeldbcc1122008-09-04 15:04:26 +02002492
Joerg Roedel94f6d192009-11-24 16:40:02 +01002493 domain = domain_for_device(dev);
2494 if (domain != NULL && !dma_ops_domain(domain))
2495 return ERR_PTR(-EBUSY);
Joerg Roedelf99c0f12009-11-23 16:52:56 +01002496
Joerg Roedel94f6d192009-11-24 16:40:02 +01002497 if (domain != NULL)
2498 return domain;
Joerg Roedelb20ac0d2008-06-26 21:27:59 +02002499
Frank Arnolddf805ab2012-08-27 19:21:04 +02002500 /* Device not bound yet - bind it */
Joerg Roedel94f6d192009-11-24 16:40:02 +01002501 dma_dom = find_protection_domain(devid);
Joerg Roedel15898bb2009-11-24 15:39:42 +01002502 if (!dma_dom)
Joerg Roedel94f6d192009-11-24 16:40:02 +01002503 dma_dom = amd_iommu_rlookup_table[devid]->default_dom;
2504 attach_device(dev, &dma_dom->domain);
Joerg Roedel15898bb2009-11-24 15:39:42 +01002505 DUMP_printk("Using protection domain %d for device %s\n",
Joerg Roedel94f6d192009-11-24 16:40:02 +01002506 dma_dom->domain.id, dev_name(dev));
Joerg Roedelf91ba192008-11-25 12:56:12 +01002507
Joerg Roedel94f6d192009-11-24 16:40:02 +01002508 return &dma_dom->domain;
Joerg Roedelb20ac0d2008-06-26 21:27:59 +02002509}
2510
Joerg Roedel04bfdd82009-09-02 16:00:23 +02002511static void update_device_table(struct protection_domain *domain)
2512{
Joerg Roedel492667d2009-11-27 13:25:47 +01002513 struct iommu_dev_data *dev_data;
Joerg Roedel04bfdd82009-09-02 16:00:23 +02002514
Joerg Roedelea61cdd2011-06-09 12:56:30 +02002515 list_for_each_entry(dev_data, &domain->dev_list, list)
2516 set_dte_entry(dev_data->devid, domain, dev_data->ats.enabled);
Joerg Roedel04bfdd82009-09-02 16:00:23 +02002517}
2518
2519static void update_domain(struct protection_domain *domain)
2520{
2521 if (!domain->updated)
2522 return;
2523
2524 update_device_table(domain);
Joerg Roedel17b124b2011-04-06 18:01:35 +02002525
2526 domain_flush_devices(domain);
2527 domain_flush_tlb_pde(domain);
Joerg Roedel04bfdd82009-09-02 16:00:23 +02002528
2529 domain->updated = false;
2530}
2531
Joerg Roedel431b2a22008-07-11 17:14:22 +02002532/*
Joerg Roedel8bda3092009-05-12 12:02:46 +02002533 * This function fetches the PTE for a given address in the aperture
2534 */
2535static u64* dma_ops_get_pte(struct dma_ops_domain *dom,
2536 unsigned long address)
2537{
Joerg Roedel384de722009-05-15 12:30:05 +02002538 struct aperture_range *aperture;
Joerg Roedel8bda3092009-05-12 12:02:46 +02002539 u64 *pte, *pte_page;
2540
Joerg Roedel384de722009-05-15 12:30:05 +02002541 aperture = dom->aperture[APERTURE_RANGE_INDEX(address)];
2542 if (!aperture)
2543 return NULL;
2544
2545 pte = aperture->pte_pages[APERTURE_PAGE_INDEX(address)];
Joerg Roedel8bda3092009-05-12 12:02:46 +02002546 if (!pte) {
Joerg Roedelcbb9d722010-01-15 14:41:15 +01002547 pte = alloc_pte(&dom->domain, address, PAGE_SIZE, &pte_page,
Joerg Roedelabdc5eb2009-09-03 11:33:51 +02002548 GFP_ATOMIC);
Joerg Roedel384de722009-05-15 12:30:05 +02002549 aperture->pte_pages[APERTURE_PAGE_INDEX(address)] = pte_page;
2550 } else
Joerg Roedel8c8c1432009-09-02 17:30:00 +02002551 pte += PM_LEVEL_INDEX(0, address);
Joerg Roedel8bda3092009-05-12 12:02:46 +02002552
Joerg Roedel04bfdd82009-09-02 16:00:23 +02002553 update_domain(&dom->domain);
Joerg Roedel8bda3092009-05-12 12:02:46 +02002554
2555 return pte;
2556}
2557
2558/*
Joerg Roedel431b2a22008-07-11 17:14:22 +02002559 * This is the generic map function. It maps one 4kb page at paddr to
2560 * the given address in the DMA address space for the domain.
2561 */
Joerg Roedel680525e2009-11-23 18:44:42 +01002562static dma_addr_t dma_ops_domain_map(struct dma_ops_domain *dom,
Joerg Roedelcb76c322008-06-26 21:28:00 +02002563 unsigned long address,
2564 phys_addr_t paddr,
2565 int direction)
2566{
2567 u64 *pte, __pte;
2568
2569 WARN_ON(address > dom->aperture_size);
2570
2571 paddr &= PAGE_MASK;
2572
Joerg Roedel8bda3092009-05-12 12:02:46 +02002573 pte = dma_ops_get_pte(dom, address);
Joerg Roedel53812c12009-05-12 12:17:38 +02002574 if (!pte)
FUJITA Tomonori8fd524b2009-11-15 21:19:53 +09002575 return DMA_ERROR_CODE;
Joerg Roedelcb76c322008-06-26 21:28:00 +02002576
2577 __pte = paddr | IOMMU_PTE_P | IOMMU_PTE_FC;
2578
2579 if (direction == DMA_TO_DEVICE)
2580 __pte |= IOMMU_PTE_IR;
2581 else if (direction == DMA_FROM_DEVICE)
2582 __pte |= IOMMU_PTE_IW;
2583 else if (direction == DMA_BIDIRECTIONAL)
2584 __pte |= IOMMU_PTE_IR | IOMMU_PTE_IW;
2585
2586 WARN_ON(*pte);
2587
2588 *pte = __pte;
2589
2590 return (dma_addr_t)address;
2591}
2592
Joerg Roedel431b2a22008-07-11 17:14:22 +02002593/*
2594 * The generic unmapping function for on page in the DMA address space.
2595 */
Joerg Roedel680525e2009-11-23 18:44:42 +01002596static void dma_ops_domain_unmap(struct dma_ops_domain *dom,
Joerg Roedelcb76c322008-06-26 21:28:00 +02002597 unsigned long address)
2598{
Joerg Roedel384de722009-05-15 12:30:05 +02002599 struct aperture_range *aperture;
Joerg Roedelcb76c322008-06-26 21:28:00 +02002600 u64 *pte;
2601
2602 if (address >= dom->aperture_size)
2603 return;
2604
Joerg Roedel384de722009-05-15 12:30:05 +02002605 aperture = dom->aperture[APERTURE_RANGE_INDEX(address)];
2606 if (!aperture)
2607 return;
Joerg Roedelcb76c322008-06-26 21:28:00 +02002608
Joerg Roedel384de722009-05-15 12:30:05 +02002609 pte = aperture->pte_pages[APERTURE_PAGE_INDEX(address)];
2610 if (!pte)
2611 return;
2612
Joerg Roedel8c8c1432009-09-02 17:30:00 +02002613 pte += PM_LEVEL_INDEX(0, address);
Joerg Roedelcb76c322008-06-26 21:28:00 +02002614
2615 WARN_ON(!*pte);
2616
2617 *pte = 0ULL;
2618}
2619
Joerg Roedel431b2a22008-07-11 17:14:22 +02002620/*
2621 * This function contains common code for mapping of a physically
Joerg Roedel24f81162008-12-08 14:25:39 +01002622 * contiguous memory region into DMA address space. It is used by all
2623 * mapping functions provided with this IOMMU driver.
Joerg Roedel431b2a22008-07-11 17:14:22 +02002624 * Must be called with the domain lock held.
2625 */
Joerg Roedelcb76c322008-06-26 21:28:00 +02002626static dma_addr_t __map_single(struct device *dev,
Joerg Roedelcb76c322008-06-26 21:28:00 +02002627 struct dma_ops_domain *dma_dom,
2628 phys_addr_t paddr,
2629 size_t size,
Joerg Roedel6d4f3432008-09-04 19:18:02 +02002630 int dir,
Joerg Roedel832a90c2008-09-18 15:54:23 +02002631 bool align,
2632 u64 dma_mask)
Joerg Roedelcb76c322008-06-26 21:28:00 +02002633{
2634 dma_addr_t offset = paddr & ~PAGE_MASK;
Joerg Roedel53812c12009-05-12 12:17:38 +02002635 dma_addr_t address, start, ret;
Joerg Roedelcb76c322008-06-26 21:28:00 +02002636 unsigned int pages;
Joerg Roedel6d4f3432008-09-04 19:18:02 +02002637 unsigned long align_mask = 0;
Joerg Roedelcb76c322008-06-26 21:28:00 +02002638 int i;
2639
Joerg Roedele3c449f2008-10-15 22:02:11 -07002640 pages = iommu_num_pages(paddr, size, PAGE_SIZE);
Joerg Roedelcb76c322008-06-26 21:28:00 +02002641 paddr &= PAGE_MASK;
2642
Joerg Roedel8ecaf8f2008-12-12 16:13:04 +01002643 INC_STATS_COUNTER(total_map_requests);
2644
Joerg Roedelc1858972008-12-12 15:42:39 +01002645 if (pages > 1)
2646 INC_STATS_COUNTER(cross_page);
2647
Joerg Roedel6d4f3432008-09-04 19:18:02 +02002648 if (align)
2649 align_mask = (1UL << get_order(size)) - 1;
2650
Joerg Roedel11b83882009-05-19 10:23:15 +02002651retry:
Joerg Roedel832a90c2008-09-18 15:54:23 +02002652 address = dma_ops_alloc_addresses(dev, dma_dom, pages, align_mask,
2653 dma_mask);
FUJITA Tomonori8fd524b2009-11-15 21:19:53 +09002654 if (unlikely(address == DMA_ERROR_CODE)) {
Joerg Roedel11b83882009-05-19 10:23:15 +02002655 /*
2656 * setting next_address here will let the address
2657 * allocator only scan the new allocated range in the
2658 * first run. This is a small optimization.
2659 */
2660 dma_dom->next_address = dma_dom->aperture_size;
2661
Joerg Roedel576175c2009-11-23 19:08:46 +01002662 if (alloc_new_range(dma_dom, false, GFP_ATOMIC))
Joerg Roedel11b83882009-05-19 10:23:15 +02002663 goto out;
2664
2665 /*
André Goddard Rosaaf901ca2009-11-14 13:09:05 -02002666 * aperture was successfully enlarged by 128 MB, try
Joerg Roedel11b83882009-05-19 10:23:15 +02002667 * allocation again
2668 */
2669 goto retry;
2670 }
Joerg Roedelcb76c322008-06-26 21:28:00 +02002671
2672 start = address;
2673 for (i = 0; i < pages; ++i) {
Joerg Roedel680525e2009-11-23 18:44:42 +01002674 ret = dma_ops_domain_map(dma_dom, start, paddr, dir);
FUJITA Tomonori8fd524b2009-11-15 21:19:53 +09002675 if (ret == DMA_ERROR_CODE)
Joerg Roedel53812c12009-05-12 12:17:38 +02002676 goto out_unmap;
2677
Joerg Roedelcb76c322008-06-26 21:28:00 +02002678 paddr += PAGE_SIZE;
2679 start += PAGE_SIZE;
2680 }
2681 address += offset;
2682
Joerg Roedel5774f7c2008-12-12 15:57:30 +01002683 ADD_STATS_COUNTER(alloced_io_mem, size);
2684
FUJITA Tomonoriafa9fdc2008-09-20 01:23:30 +09002685 if (unlikely(dma_dom->need_flush && !amd_iommu_unmap_flush)) {
Joerg Roedel17b124b2011-04-06 18:01:35 +02002686 domain_flush_tlb(&dma_dom->domain);
Joerg Roedel1c655772008-09-04 18:40:05 +02002687 dma_dom->need_flush = false;
Joerg Roedel318afd42009-11-23 18:32:38 +01002688 } else if (unlikely(amd_iommu_np_cache))
Joerg Roedel17b124b2011-04-06 18:01:35 +02002689 domain_flush_pages(&dma_dom->domain, address, size);
Joerg Roedel270cab242008-09-04 15:49:46 +02002690
Joerg Roedelcb76c322008-06-26 21:28:00 +02002691out:
2692 return address;
Joerg Roedel53812c12009-05-12 12:17:38 +02002693
2694out_unmap:
2695
2696 for (--i; i >= 0; --i) {
2697 start -= PAGE_SIZE;
Joerg Roedel680525e2009-11-23 18:44:42 +01002698 dma_ops_domain_unmap(dma_dom, start);
Joerg Roedel53812c12009-05-12 12:17:38 +02002699 }
2700
2701 dma_ops_free_addresses(dma_dom, address, pages);
2702
FUJITA Tomonori8fd524b2009-11-15 21:19:53 +09002703 return DMA_ERROR_CODE;
Joerg Roedelcb76c322008-06-26 21:28:00 +02002704}
2705
Joerg Roedel431b2a22008-07-11 17:14:22 +02002706/*
2707 * Does the reverse of the __map_single function. Must be called with
2708 * the domain lock held too
2709 */
Joerg Roedelcd8c82e2009-11-23 19:33:56 +01002710static void __unmap_single(struct dma_ops_domain *dma_dom,
Joerg Roedelcb76c322008-06-26 21:28:00 +02002711 dma_addr_t dma_addr,
2712 size_t size,
2713 int dir)
2714{
Joerg Roedel04e04632010-09-23 16:12:48 +02002715 dma_addr_t flush_addr;
Joerg Roedelcb76c322008-06-26 21:28:00 +02002716 dma_addr_t i, start;
2717 unsigned int pages;
2718
FUJITA Tomonori8fd524b2009-11-15 21:19:53 +09002719 if ((dma_addr == DMA_ERROR_CODE) ||
Joerg Roedelb8d99052008-12-08 14:40:26 +01002720 (dma_addr + size > dma_dom->aperture_size))
Joerg Roedelcb76c322008-06-26 21:28:00 +02002721 return;
2722
Joerg Roedel04e04632010-09-23 16:12:48 +02002723 flush_addr = dma_addr;
Joerg Roedele3c449f2008-10-15 22:02:11 -07002724 pages = iommu_num_pages(dma_addr, size, PAGE_SIZE);
Joerg Roedelcb76c322008-06-26 21:28:00 +02002725 dma_addr &= PAGE_MASK;
2726 start = dma_addr;
2727
2728 for (i = 0; i < pages; ++i) {
Joerg Roedel680525e2009-11-23 18:44:42 +01002729 dma_ops_domain_unmap(dma_dom, start);
Joerg Roedelcb76c322008-06-26 21:28:00 +02002730 start += PAGE_SIZE;
2731 }
2732
Joerg Roedel5774f7c2008-12-12 15:57:30 +01002733 SUB_STATS_COUNTER(alloced_io_mem, size);
2734
Joerg Roedelcb76c322008-06-26 21:28:00 +02002735 dma_ops_free_addresses(dma_dom, dma_addr, pages);
Joerg Roedel270cab242008-09-04 15:49:46 +02002736
Joerg Roedel80be3082008-11-06 14:59:05 +01002737 if (amd_iommu_unmap_flush || dma_dom->need_flush) {
Joerg Roedel17b124b2011-04-06 18:01:35 +02002738 domain_flush_pages(&dma_dom->domain, flush_addr, size);
Joerg Roedel80be3082008-11-06 14:59:05 +01002739 dma_dom->need_flush = false;
2740 }
Joerg Roedelcb76c322008-06-26 21:28:00 +02002741}
2742
Joerg Roedel431b2a22008-07-11 17:14:22 +02002743/*
2744 * The exported map_single function for dma_ops.
2745 */
FUJITA Tomonori51491362009-01-05 23:47:25 +09002746static dma_addr_t map_page(struct device *dev, struct page *page,
2747 unsigned long offset, size_t size,
2748 enum dma_data_direction dir,
2749 struct dma_attrs *attrs)
Joerg Roedel4da70b92008-06-26 21:28:01 +02002750{
2751 unsigned long flags;
Joerg Roedel4da70b92008-06-26 21:28:01 +02002752 struct protection_domain *domain;
Joerg Roedel4da70b92008-06-26 21:28:01 +02002753 dma_addr_t addr;
Joerg Roedel832a90c2008-09-18 15:54:23 +02002754 u64 dma_mask;
FUJITA Tomonori51491362009-01-05 23:47:25 +09002755 phys_addr_t paddr = page_to_phys(page) + offset;
Joerg Roedel4da70b92008-06-26 21:28:01 +02002756
Joerg Roedel0f2a86f2008-12-12 15:05:16 +01002757 INC_STATS_COUNTER(cnt_map_single);
2758
Joerg Roedel94f6d192009-11-24 16:40:02 +01002759 domain = get_domain(dev);
2760 if (PTR_ERR(domain) == -EINVAL)
Joerg Roedel4da70b92008-06-26 21:28:01 +02002761 return (dma_addr_t)paddr;
Joerg Roedel94f6d192009-11-24 16:40:02 +01002762 else if (IS_ERR(domain))
2763 return DMA_ERROR_CODE;
Joerg Roedel4da70b92008-06-26 21:28:01 +02002764
Joerg Roedelf99c0f12009-11-23 16:52:56 +01002765 dma_mask = *dev->dma_mask;
2766
Joerg Roedel4da70b92008-06-26 21:28:01 +02002767 spin_lock_irqsave(&domain->lock, flags);
Joerg Roedel94f6d192009-11-24 16:40:02 +01002768
Joerg Roedelcd8c82e2009-11-23 19:33:56 +01002769 addr = __map_single(dev, domain->priv, paddr, size, dir, false,
Joerg Roedel832a90c2008-09-18 15:54:23 +02002770 dma_mask);
FUJITA Tomonori8fd524b2009-11-15 21:19:53 +09002771 if (addr == DMA_ERROR_CODE)
Joerg Roedel4da70b92008-06-26 21:28:01 +02002772 goto out;
2773
Joerg Roedel17b124b2011-04-06 18:01:35 +02002774 domain_flush_complete(domain);
Joerg Roedel4da70b92008-06-26 21:28:01 +02002775
2776out:
2777 spin_unlock_irqrestore(&domain->lock, flags);
2778
2779 return addr;
2780}
2781
Joerg Roedel431b2a22008-07-11 17:14:22 +02002782/*
2783 * The exported unmap_single function for dma_ops.
2784 */
FUJITA Tomonori51491362009-01-05 23:47:25 +09002785static void unmap_page(struct device *dev, dma_addr_t dma_addr, size_t size,
2786 enum dma_data_direction dir, struct dma_attrs *attrs)
Joerg Roedel4da70b92008-06-26 21:28:01 +02002787{
2788 unsigned long flags;
Joerg Roedel4da70b92008-06-26 21:28:01 +02002789 struct protection_domain *domain;
Joerg Roedel4da70b92008-06-26 21:28:01 +02002790
Joerg Roedel146a6912008-12-12 15:07:12 +01002791 INC_STATS_COUNTER(cnt_unmap_single);
2792
Joerg Roedel94f6d192009-11-24 16:40:02 +01002793 domain = get_domain(dev);
2794 if (IS_ERR(domain))
Joerg Roedel5b28df62008-12-02 17:49:42 +01002795 return;
2796
Joerg Roedel4da70b92008-06-26 21:28:01 +02002797 spin_lock_irqsave(&domain->lock, flags);
2798
Joerg Roedelcd8c82e2009-11-23 19:33:56 +01002799 __unmap_single(domain->priv, dma_addr, size, dir);
Joerg Roedel4da70b92008-06-26 21:28:01 +02002800
Joerg Roedel17b124b2011-04-06 18:01:35 +02002801 domain_flush_complete(domain);
Joerg Roedel4da70b92008-06-26 21:28:01 +02002802
2803 spin_unlock_irqrestore(&domain->lock, flags);
2804}
2805
Joerg Roedel431b2a22008-07-11 17:14:22 +02002806/*
Joerg Roedel431b2a22008-07-11 17:14:22 +02002807 * The exported map_sg function for dma_ops (handles scatter-gather
2808 * lists).
2809 */
Joerg Roedel65b050a2008-06-26 21:28:02 +02002810static int map_sg(struct device *dev, struct scatterlist *sglist,
FUJITA Tomonori160c1d82009-01-05 23:59:02 +09002811 int nelems, enum dma_data_direction dir,
2812 struct dma_attrs *attrs)
Joerg Roedel65b050a2008-06-26 21:28:02 +02002813{
2814 unsigned long flags;
Joerg Roedel65b050a2008-06-26 21:28:02 +02002815 struct protection_domain *domain;
Joerg Roedel65b050a2008-06-26 21:28:02 +02002816 int i;
2817 struct scatterlist *s;
2818 phys_addr_t paddr;
2819 int mapped_elems = 0;
Joerg Roedel832a90c2008-09-18 15:54:23 +02002820 u64 dma_mask;
Joerg Roedel65b050a2008-06-26 21:28:02 +02002821
Joerg Roedeld03f067a2008-12-12 15:09:48 +01002822 INC_STATS_COUNTER(cnt_map_sg);
2823
Joerg Roedel94f6d192009-11-24 16:40:02 +01002824 domain = get_domain(dev);
Joerg Roedela0e191b2013-04-09 15:04:36 +02002825 if (IS_ERR(domain))
Joerg Roedel94f6d192009-11-24 16:40:02 +01002826 return 0;
Joerg Roedeldbcc1122008-09-04 15:04:26 +02002827
Joerg Roedel832a90c2008-09-18 15:54:23 +02002828 dma_mask = *dev->dma_mask;
Joerg Roedel65b050a2008-06-26 21:28:02 +02002829
Joerg Roedel65b050a2008-06-26 21:28:02 +02002830 spin_lock_irqsave(&domain->lock, flags);
2831
2832 for_each_sg(sglist, s, nelems, i) {
2833 paddr = sg_phys(s);
2834
Joerg Roedelcd8c82e2009-11-23 19:33:56 +01002835 s->dma_address = __map_single(dev, domain->priv,
Joerg Roedel832a90c2008-09-18 15:54:23 +02002836 paddr, s->length, dir, false,
2837 dma_mask);
Joerg Roedel65b050a2008-06-26 21:28:02 +02002838
2839 if (s->dma_address) {
2840 s->dma_length = s->length;
2841 mapped_elems++;
2842 } else
2843 goto unmap;
Joerg Roedel65b050a2008-06-26 21:28:02 +02002844 }
2845
Joerg Roedel17b124b2011-04-06 18:01:35 +02002846 domain_flush_complete(domain);
Joerg Roedel65b050a2008-06-26 21:28:02 +02002847
2848out:
2849 spin_unlock_irqrestore(&domain->lock, flags);
2850
2851 return mapped_elems;
2852unmap:
2853 for_each_sg(sglist, s, mapped_elems, i) {
2854 if (s->dma_address)
Joerg Roedelcd8c82e2009-11-23 19:33:56 +01002855 __unmap_single(domain->priv, s->dma_address,
Joerg Roedel65b050a2008-06-26 21:28:02 +02002856 s->dma_length, dir);
2857 s->dma_address = s->dma_length = 0;
2858 }
2859
2860 mapped_elems = 0;
2861
2862 goto out;
2863}
2864
Joerg Roedel431b2a22008-07-11 17:14:22 +02002865/*
2866 * The exported map_sg function for dma_ops (handles scatter-gather
2867 * lists).
2868 */
Joerg Roedel65b050a2008-06-26 21:28:02 +02002869static void unmap_sg(struct device *dev, struct scatterlist *sglist,
FUJITA Tomonori160c1d82009-01-05 23:59:02 +09002870 int nelems, enum dma_data_direction dir,
2871 struct dma_attrs *attrs)
Joerg Roedel65b050a2008-06-26 21:28:02 +02002872{
2873 unsigned long flags;
Joerg Roedel65b050a2008-06-26 21:28:02 +02002874 struct protection_domain *domain;
2875 struct scatterlist *s;
Joerg Roedel65b050a2008-06-26 21:28:02 +02002876 int i;
2877
Joerg Roedel55877a62008-12-12 15:12:14 +01002878 INC_STATS_COUNTER(cnt_unmap_sg);
2879
Joerg Roedel94f6d192009-11-24 16:40:02 +01002880 domain = get_domain(dev);
2881 if (IS_ERR(domain))
Joerg Roedel5b28df62008-12-02 17:49:42 +01002882 return;
2883
Joerg Roedel65b050a2008-06-26 21:28:02 +02002884 spin_lock_irqsave(&domain->lock, flags);
2885
2886 for_each_sg(sglist, s, nelems, i) {
Joerg Roedelcd8c82e2009-11-23 19:33:56 +01002887 __unmap_single(domain->priv, s->dma_address,
Joerg Roedel65b050a2008-06-26 21:28:02 +02002888 s->dma_length, dir);
Joerg Roedel65b050a2008-06-26 21:28:02 +02002889 s->dma_address = s->dma_length = 0;
2890 }
2891
Joerg Roedel17b124b2011-04-06 18:01:35 +02002892 domain_flush_complete(domain);
Joerg Roedel65b050a2008-06-26 21:28:02 +02002893
2894 spin_unlock_irqrestore(&domain->lock, flags);
2895}
2896
Joerg Roedel431b2a22008-07-11 17:14:22 +02002897/*
2898 * The exported alloc_coherent function for dma_ops.
2899 */
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002900static void *alloc_coherent(struct device *dev, size_t size,
Andrzej Pietrasiewiczbaa676f2012-03-27 14:28:18 +02002901 dma_addr_t *dma_addr, gfp_t flag,
2902 struct dma_attrs *attrs)
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002903{
2904 unsigned long flags;
2905 void *virt_addr;
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002906 struct protection_domain *domain;
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002907 phys_addr_t paddr;
Joerg Roedel832a90c2008-09-18 15:54:23 +02002908 u64 dma_mask = dev->coherent_dma_mask;
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002909
Joerg Roedelc8f0fb32008-12-12 15:14:21 +01002910 INC_STATS_COUNTER(cnt_alloc_coherent);
2911
Joerg Roedel94f6d192009-11-24 16:40:02 +01002912 domain = get_domain(dev);
2913 if (PTR_ERR(domain) == -EINVAL) {
Joerg Roedelf99c0f12009-11-23 16:52:56 +01002914 virt_addr = (void *)__get_free_pages(flag, get_order(size));
2915 *dma_addr = __pa(virt_addr);
2916 return virt_addr;
Joerg Roedel94f6d192009-11-24 16:40:02 +01002917 } else if (IS_ERR(domain))
2918 return NULL;
Joerg Roedeldbcc1122008-09-04 15:04:26 +02002919
Joerg Roedelf99c0f12009-11-23 16:52:56 +01002920 dma_mask = dev->coherent_dma_mask;
2921 flag &= ~(__GFP_DMA | __GFP_HIGHMEM | __GFP_DMA32);
2922 flag |= __GFP_ZERO;
FUJITA Tomonori13d9fea2008-09-10 20:19:40 +09002923
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002924 virt_addr = (void *)__get_free_pages(flag, get_order(size));
2925 if (!virt_addr)
Jaswinder Singh Rajputb25ae672009-07-01 19:53:14 +05302926 return NULL;
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002927
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002928 paddr = virt_to_phys(virt_addr);
2929
Joerg Roedel832a90c2008-09-18 15:54:23 +02002930 if (!dma_mask)
2931 dma_mask = *dev->dma_mask;
2932
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002933 spin_lock_irqsave(&domain->lock, flags);
2934
Joerg Roedelcd8c82e2009-11-23 19:33:56 +01002935 *dma_addr = __map_single(dev, domain->priv, paddr,
Joerg Roedel832a90c2008-09-18 15:54:23 +02002936 size, DMA_BIDIRECTIONAL, true, dma_mask);
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002937
FUJITA Tomonori8fd524b2009-11-15 21:19:53 +09002938 if (*dma_addr == DMA_ERROR_CODE) {
Jiri Slaby367d04c2009-05-28 09:54:48 +02002939 spin_unlock_irqrestore(&domain->lock, flags);
Joerg Roedel5b28df62008-12-02 17:49:42 +01002940 goto out_free;
Jiri Slaby367d04c2009-05-28 09:54:48 +02002941 }
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002942
Joerg Roedel17b124b2011-04-06 18:01:35 +02002943 domain_flush_complete(domain);
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002944
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002945 spin_unlock_irqrestore(&domain->lock, flags);
2946
2947 return virt_addr;
Joerg Roedel5b28df62008-12-02 17:49:42 +01002948
2949out_free:
2950
2951 free_pages((unsigned long)virt_addr, get_order(size));
2952
2953 return NULL;
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002954}
2955
Joerg Roedel431b2a22008-07-11 17:14:22 +02002956/*
2957 * The exported free_coherent function for dma_ops.
Joerg Roedel431b2a22008-07-11 17:14:22 +02002958 */
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002959static void free_coherent(struct device *dev, size_t size,
Andrzej Pietrasiewiczbaa676f2012-03-27 14:28:18 +02002960 void *virt_addr, dma_addr_t dma_addr,
2961 struct dma_attrs *attrs)
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002962{
2963 unsigned long flags;
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002964 struct protection_domain *domain;
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002965
Joerg Roedel5d31ee72008-12-12 15:16:38 +01002966 INC_STATS_COUNTER(cnt_free_coherent);
2967
Joerg Roedel94f6d192009-11-24 16:40:02 +01002968 domain = get_domain(dev);
2969 if (IS_ERR(domain))
Joerg Roedel5b28df62008-12-02 17:49:42 +01002970 goto free_mem;
2971
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002972 spin_lock_irqsave(&domain->lock, flags);
2973
Joerg Roedelcd8c82e2009-11-23 19:33:56 +01002974 __unmap_single(domain->priv, dma_addr, size, DMA_BIDIRECTIONAL);
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002975
Joerg Roedel17b124b2011-04-06 18:01:35 +02002976 domain_flush_complete(domain);
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002977
2978 spin_unlock_irqrestore(&domain->lock, flags);
2979
2980free_mem:
2981 free_pages((unsigned long)virt_addr, get_order(size));
2982}
2983
Joerg Roedelc432f3d2008-06-26 21:28:04 +02002984/*
Joerg Roedelb39ba6a2008-09-09 18:40:46 +02002985 * This function is called by the DMA layer to find out if we can handle a
2986 * particular device. It is part of the dma_ops.
2987 */
2988static int amd_iommu_dma_supported(struct device *dev, u64 mask)
2989{
Joerg Roedel420aef82009-11-23 16:14:57 +01002990 return check_device(dev);
Joerg Roedelb39ba6a2008-09-09 18:40:46 +02002991}
2992
2993/*
Joerg Roedel431b2a22008-07-11 17:14:22 +02002994 * The function for pre-allocating protection domains.
2995 *
Joerg Roedelc432f3d2008-06-26 21:28:04 +02002996 * If the driver core informs the DMA layer if a driver grabs a device
2997 * we don't need to preallocate the protection domains anymore.
2998 * For now we have to.
2999 */
Steffen Persvold943bc7e2012-03-15 12:16:28 +01003000static void __init prealloc_protection_domains(void)
Joerg Roedelc432f3d2008-06-26 21:28:04 +02003001{
Joerg Roedel5abcdba2011-12-01 15:49:45 +01003002 struct iommu_dev_data *dev_data;
Joerg Roedelc432f3d2008-06-26 21:28:04 +02003003 struct dma_ops_domain *dma_dom;
Joerg Roedel5abcdba2011-12-01 15:49:45 +01003004 struct pci_dev *dev = NULL;
Joerg Roedel98fc5a62009-11-24 17:19:23 +01003005 u16 devid;
Joerg Roedelc432f3d2008-06-26 21:28:04 +02003006
Chris Wrightd18c69d2010-04-02 18:27:55 -07003007 for_each_pci_dev(dev) {
Joerg Roedel98fc5a62009-11-24 17:19:23 +01003008
3009 /* Do we handle this device? */
3010 if (!check_device(&dev->dev))
Joerg Roedelc432f3d2008-06-26 21:28:04 +02003011 continue;
Joerg Roedel98fc5a62009-11-24 17:19:23 +01003012
Joerg Roedel5abcdba2011-12-01 15:49:45 +01003013 dev_data = get_dev_data(&dev->dev);
3014 if (!amd_iommu_force_isolation && dev_data->iommu_v2) {
3015 /* Make sure passthrough domain is allocated */
3016 alloc_passthrough_domain();
3017 dev_data->passthrough = true;
3018 attach_device(&dev->dev, pt_domain);
Frank Arnolddf805ab2012-08-27 19:21:04 +02003019 pr_info("AMD-Vi: Using passthrough domain for device %s\n",
Joerg Roedel5abcdba2011-12-01 15:49:45 +01003020 dev_name(&dev->dev));
3021 }
3022
Joerg Roedel98fc5a62009-11-24 17:19:23 +01003023 /* Is there already any domain for it? */
Joerg Roedel15898bb2009-11-24 15:39:42 +01003024 if (domain_for_device(&dev->dev))
Joerg Roedelc432f3d2008-06-26 21:28:04 +02003025 continue;
Joerg Roedel98fc5a62009-11-24 17:19:23 +01003026
3027 devid = get_device_id(&dev->dev);
3028
Joerg Roedel87a64d52009-11-24 17:26:43 +01003029 dma_dom = dma_ops_domain_alloc();
Joerg Roedelc432f3d2008-06-26 21:28:04 +02003030 if (!dma_dom)
3031 continue;
3032 init_unity_mappings_for_device(dma_dom, devid);
Joerg Roedelbd60b732008-09-11 10:24:48 +02003033 dma_dom->target_dev = devid;
3034
Joerg Roedel15898bb2009-11-24 15:39:42 +01003035 attach_device(&dev->dev, &dma_dom->domain);
Joerg Roedelbe831292009-11-23 12:50:00 +01003036
Joerg Roedelbd60b732008-09-11 10:24:48 +02003037 list_add_tail(&dma_dom->list, &iommu_pd_list);
Joerg Roedelc432f3d2008-06-26 21:28:04 +02003038 }
3039}
3040
FUJITA Tomonori160c1d82009-01-05 23:59:02 +09003041static struct dma_map_ops amd_iommu_dma_ops = {
Andrzej Pietrasiewiczbaa676f2012-03-27 14:28:18 +02003042 .alloc = alloc_coherent,
3043 .free = free_coherent,
FUJITA Tomonori51491362009-01-05 23:47:25 +09003044 .map_page = map_page,
3045 .unmap_page = unmap_page,
Joerg Roedel6631ee92008-06-26 21:28:05 +02003046 .map_sg = map_sg,
3047 .unmap_sg = unmap_sg,
Joerg Roedelb39ba6a2008-09-09 18:40:46 +02003048 .dma_supported = amd_iommu_dma_supported,
Joerg Roedel6631ee92008-06-26 21:28:05 +02003049};
3050
Joerg Roedel27c21272011-05-30 15:56:24 +02003051static unsigned device_dma_ops_init(void)
3052{
Joerg Roedel5abcdba2011-12-01 15:49:45 +01003053 struct iommu_dev_data *dev_data;
Joerg Roedel27c21272011-05-30 15:56:24 +02003054 struct pci_dev *pdev = NULL;
3055 unsigned unhandled = 0;
3056
3057 for_each_pci_dev(pdev) {
3058 if (!check_device(&pdev->dev)) {
Joerg Roedelaf1be042012-01-18 14:03:11 +01003059
3060 iommu_ignore_device(&pdev->dev);
3061
Joerg Roedel27c21272011-05-30 15:56:24 +02003062 unhandled += 1;
3063 continue;
3064 }
3065
Joerg Roedel5abcdba2011-12-01 15:49:45 +01003066 dev_data = get_dev_data(&pdev->dev);
3067
3068 if (!dev_data->passthrough)
3069 pdev->dev.archdata.dma_ops = &amd_iommu_dma_ops;
3070 else
3071 pdev->dev.archdata.dma_ops = &nommu_dma_ops;
Joerg Roedel27c21272011-05-30 15:56:24 +02003072 }
3073
3074 return unhandled;
3075}
3076
Joerg Roedel431b2a22008-07-11 17:14:22 +02003077/*
3078 * The function which clues the AMD IOMMU driver into dma_ops.
3079 */
Joerg Roedelf5325092010-01-22 17:44:35 +01003080
3081void __init amd_iommu_init_api(void)
3082{
Joerg Roedel2cc21c42011-09-06 17:56:07 +02003083 bus_set_iommu(&pci_bus_type, &amd_iommu_ops);
Joerg Roedelf5325092010-01-22 17:44:35 +01003084}
3085
Joerg Roedel6631ee92008-06-26 21:28:05 +02003086int __init amd_iommu_init_dma_ops(void)
3087{
3088 struct amd_iommu *iommu;
Joerg Roedel27c21272011-05-30 15:56:24 +02003089 int ret, unhandled;
Joerg Roedel6631ee92008-06-26 21:28:05 +02003090
Joerg Roedel431b2a22008-07-11 17:14:22 +02003091 /*
3092 * first allocate a default protection domain for every IOMMU we
3093 * found in the system. Devices not assigned to any other
3094 * protection domain will be assigned to the default one.
3095 */
Joerg Roedel3bd22172009-05-04 15:06:20 +02003096 for_each_iommu(iommu) {
Joerg Roedel87a64d52009-11-24 17:26:43 +01003097 iommu->default_dom = dma_ops_domain_alloc();
Joerg Roedel6631ee92008-06-26 21:28:05 +02003098 if (iommu->default_dom == NULL)
3099 return -ENOMEM;
Joerg Roedele2dc14a2008-12-10 18:48:59 +01003100 iommu->default_dom->domain.flags |= PD_DEFAULT_MASK;
Joerg Roedel6631ee92008-06-26 21:28:05 +02003101 ret = iommu_init_unity_mappings(iommu);
3102 if (ret)
3103 goto free_domains;
3104 }
3105
Joerg Roedel431b2a22008-07-11 17:14:22 +02003106 /*
Joerg Roedel8793abe2009-11-27 11:40:33 +01003107 * Pre-allocate the protection domains for each device.
Joerg Roedel431b2a22008-07-11 17:14:22 +02003108 */
Joerg Roedel8793abe2009-11-27 11:40:33 +01003109 prealloc_protection_domains();
Joerg Roedel6631ee92008-06-26 21:28:05 +02003110
3111 iommu_detected = 1;
FUJITA Tomonori75f1cdf2009-11-10 19:46:20 +09003112 swiotlb = 0;
Joerg Roedel6631ee92008-06-26 21:28:05 +02003113
Joerg Roedel431b2a22008-07-11 17:14:22 +02003114 /* Make the driver finally visible to the drivers */
Joerg Roedel27c21272011-05-30 15:56:24 +02003115 unhandled = device_dma_ops_init();
3116 if (unhandled && max_pfn > MAX_DMA32_PFN) {
3117 /* There are unhandled devices - initialize swiotlb for them */
3118 swiotlb = 1;
3119 }
Joerg Roedel6631ee92008-06-26 21:28:05 +02003120
Joerg Roedel7f265082008-12-12 13:50:21 +01003121 amd_iommu_stats_init();
3122
Joerg Roedel62410ee2012-06-12 16:42:43 +02003123 if (amd_iommu_unmap_flush)
3124 pr_info("AMD-Vi: IO/TLB flush on unmap enabled\n");
3125 else
3126 pr_info("AMD-Vi: Lazy IO/TLB flushing enabled\n");
3127
Joerg Roedel6631ee92008-06-26 21:28:05 +02003128 return 0;
3129
3130free_domains:
3131
Joerg Roedel3bd22172009-05-04 15:06:20 +02003132 for_each_iommu(iommu) {
Cyril Roelandt91457df2013-02-12 05:01:50 +01003133 dma_ops_domain_free(iommu->default_dom);
Joerg Roedel6631ee92008-06-26 21:28:05 +02003134 }
3135
3136 return ret;
3137}
Joerg Roedel6d98cd82008-12-08 12:05:55 +01003138
3139/*****************************************************************************
3140 *
3141 * The following functions belong to the exported interface of AMD IOMMU
3142 *
3143 * This interface allows access to lower level functions of the IOMMU
3144 * like protection domain handling and assignement of devices to domains
3145 * which is not possible with the dma_ops interface.
3146 *
3147 *****************************************************************************/
3148
Joerg Roedel6d98cd82008-12-08 12:05:55 +01003149static void cleanup_domain(struct protection_domain *domain)
3150{
Joerg Roedel9b29d3c2014-08-05 17:50:15 +02003151 struct iommu_dev_data *entry;
Joerg Roedel6d98cd82008-12-08 12:05:55 +01003152 unsigned long flags;
Joerg Roedel6d98cd82008-12-08 12:05:55 +01003153
3154 write_lock_irqsave(&amd_iommu_devtable_lock, flags);
3155
Joerg Roedel9b29d3c2014-08-05 17:50:15 +02003156 while (!list_empty(&domain->dev_list)) {
3157 entry = list_first_entry(&domain->dev_list,
3158 struct iommu_dev_data, list);
3159 __detach_device(entry);
3160 atomic_set(&entry->bind, 0);
Joerg Roedel492667d2009-11-27 13:25:47 +01003161 }
Joerg Roedel6d98cd82008-12-08 12:05:55 +01003162
3163 write_unlock_irqrestore(&amd_iommu_devtable_lock, flags);
3164}
3165
Joerg Roedel26508152009-08-26 16:52:40 +02003166static void protection_domain_free(struct protection_domain *domain)
3167{
3168 if (!domain)
3169 return;
3170
Joerg Roedelaeb26f52009-11-20 16:44:01 +01003171 del_domain_from_list(domain);
3172
Joerg Roedel26508152009-08-26 16:52:40 +02003173 if (domain->id)
3174 domain_id_free(domain->id);
3175
3176 kfree(domain);
3177}
3178
3179static struct protection_domain *protection_domain_alloc(void)
Joerg Roedelc156e342008-12-02 18:13:27 +01003180{
3181 struct protection_domain *domain;
3182
3183 domain = kzalloc(sizeof(*domain), GFP_KERNEL);
3184 if (!domain)
Joerg Roedel26508152009-08-26 16:52:40 +02003185 return NULL;
Joerg Roedelc156e342008-12-02 18:13:27 +01003186
3187 spin_lock_init(&domain->lock);
Joerg Roedel5d214fe2010-02-08 14:44:49 +01003188 mutex_init(&domain->api_lock);
Joerg Roedelc156e342008-12-02 18:13:27 +01003189 domain->id = domain_id_alloc();
3190 if (!domain->id)
Joerg Roedel26508152009-08-26 16:52:40 +02003191 goto out_err;
Joerg Roedel7c392cb2009-11-26 11:13:32 +01003192 INIT_LIST_HEAD(&domain->dev_list);
Joerg Roedel26508152009-08-26 16:52:40 +02003193
Joerg Roedelaeb26f52009-11-20 16:44:01 +01003194 add_domain_to_list(domain);
3195
Joerg Roedel26508152009-08-26 16:52:40 +02003196 return domain;
3197
3198out_err:
3199 kfree(domain);
3200
3201 return NULL;
3202}
3203
Joerg Roedel5abcdba2011-12-01 15:49:45 +01003204static int __init alloc_passthrough_domain(void)
3205{
3206 if (pt_domain != NULL)
3207 return 0;
3208
3209 /* allocate passthrough domain */
3210 pt_domain = protection_domain_alloc();
3211 if (!pt_domain)
3212 return -ENOMEM;
3213
3214 pt_domain->mode = PAGE_MODE_NONE;
3215
3216 return 0;
3217}
Joerg Roedel26508152009-08-26 16:52:40 +02003218static int amd_iommu_domain_init(struct iommu_domain *dom)
3219{
3220 struct protection_domain *domain;
3221
3222 domain = protection_domain_alloc();
3223 if (!domain)
Joerg Roedelc156e342008-12-02 18:13:27 +01003224 goto out_free;
Joerg Roedel26508152009-08-26 16:52:40 +02003225
3226 domain->mode = PAGE_MODE_3_LEVEL;
Joerg Roedelc156e342008-12-02 18:13:27 +01003227 domain->pt_root = (void *)get_zeroed_page(GFP_KERNEL);
3228 if (!domain->pt_root)
3229 goto out_free;
3230
Joerg Roedelf3572db2011-11-23 12:36:25 +01003231 domain->iommu_domain = dom;
3232
Joerg Roedelc156e342008-12-02 18:13:27 +01003233 dom->priv = domain;
3234
Joerg Roedel0ff64f82012-01-26 19:40:53 +01003235 dom->geometry.aperture_start = 0;
3236 dom->geometry.aperture_end = ~0ULL;
3237 dom->geometry.force_aperture = true;
3238
Joerg Roedelc156e342008-12-02 18:13:27 +01003239 return 0;
3240
3241out_free:
Joerg Roedel26508152009-08-26 16:52:40 +02003242 protection_domain_free(domain);
Joerg Roedelc156e342008-12-02 18:13:27 +01003243
3244 return -ENOMEM;
3245}
3246
Joerg Roedel98383fc2008-12-02 18:34:12 +01003247static void amd_iommu_domain_destroy(struct iommu_domain *dom)
3248{
3249 struct protection_domain *domain = dom->priv;
3250
3251 if (!domain)
3252 return;
3253
3254 if (domain->dev_cnt > 0)
3255 cleanup_domain(domain);
3256
3257 BUG_ON(domain->dev_cnt != 0);
3258
Joerg Roedel132bd682011-11-17 14:18:46 +01003259 if (domain->mode != PAGE_MODE_NONE)
3260 free_pagetable(domain);
Joerg Roedel98383fc2008-12-02 18:34:12 +01003261
Joerg Roedel52815b72011-11-17 17:24:28 +01003262 if (domain->flags & PD_IOMMUV2_MASK)
3263 free_gcr3_table(domain);
3264
Joerg Roedel8b408fe2010-03-08 14:20:07 +01003265 protection_domain_free(domain);
Joerg Roedel98383fc2008-12-02 18:34:12 +01003266
3267 dom->priv = NULL;
3268}
3269
Joerg Roedel684f2882008-12-08 12:07:44 +01003270static void amd_iommu_detach_device(struct iommu_domain *dom,
3271 struct device *dev)
3272{
Joerg Roedel657cbb62009-11-23 15:26:46 +01003273 struct iommu_dev_data *dev_data = dev->archdata.iommu;
Joerg Roedel684f2882008-12-08 12:07:44 +01003274 struct amd_iommu *iommu;
Joerg Roedel684f2882008-12-08 12:07:44 +01003275 u16 devid;
3276
Joerg Roedel98fc5a62009-11-24 17:19:23 +01003277 if (!check_device(dev))
Joerg Roedel684f2882008-12-08 12:07:44 +01003278 return;
3279
Joerg Roedel98fc5a62009-11-24 17:19:23 +01003280 devid = get_device_id(dev);
Joerg Roedel684f2882008-12-08 12:07:44 +01003281
Joerg Roedel657cbb62009-11-23 15:26:46 +01003282 if (dev_data->domain != NULL)
Joerg Roedel15898bb2009-11-24 15:39:42 +01003283 detach_device(dev);
Joerg Roedel684f2882008-12-08 12:07:44 +01003284
3285 iommu = amd_iommu_rlookup_table[devid];
3286 if (!iommu)
3287 return;
3288
Joerg Roedel684f2882008-12-08 12:07:44 +01003289 iommu_completion_wait(iommu);
3290}
3291
Joerg Roedel01106062008-12-02 19:34:11 +01003292static int amd_iommu_attach_device(struct iommu_domain *dom,
3293 struct device *dev)
3294{
3295 struct protection_domain *domain = dom->priv;
Joerg Roedel657cbb62009-11-23 15:26:46 +01003296 struct iommu_dev_data *dev_data;
Joerg Roedel01106062008-12-02 19:34:11 +01003297 struct amd_iommu *iommu;
Joerg Roedel15898bb2009-11-24 15:39:42 +01003298 int ret;
Joerg Roedel01106062008-12-02 19:34:11 +01003299
Joerg Roedel98fc5a62009-11-24 17:19:23 +01003300 if (!check_device(dev))
Joerg Roedel01106062008-12-02 19:34:11 +01003301 return -EINVAL;
3302
Joerg Roedel657cbb62009-11-23 15:26:46 +01003303 dev_data = dev->archdata.iommu;
3304
Joerg Roedelf62dda62011-06-09 12:55:35 +02003305 iommu = amd_iommu_rlookup_table[dev_data->devid];
Joerg Roedel01106062008-12-02 19:34:11 +01003306 if (!iommu)
3307 return -EINVAL;
3308
Joerg Roedel657cbb62009-11-23 15:26:46 +01003309 if (dev_data->domain)
Joerg Roedel15898bb2009-11-24 15:39:42 +01003310 detach_device(dev);
Joerg Roedel01106062008-12-02 19:34:11 +01003311
Joerg Roedel15898bb2009-11-24 15:39:42 +01003312 ret = attach_device(dev, domain);
Joerg Roedel01106062008-12-02 19:34:11 +01003313
3314 iommu_completion_wait(iommu);
3315
Joerg Roedel15898bb2009-11-24 15:39:42 +01003316 return ret;
Joerg Roedel01106062008-12-02 19:34:11 +01003317}
3318
Joerg Roedel468e2362010-01-21 16:37:36 +01003319static int amd_iommu_map(struct iommu_domain *dom, unsigned long iova,
Ohad Ben-Cohen50090652011-11-10 11:32:25 +02003320 phys_addr_t paddr, size_t page_size, int iommu_prot)
Joerg Roedelc6229ca2008-12-02 19:48:43 +01003321{
3322 struct protection_domain *domain = dom->priv;
Joerg Roedelc6229ca2008-12-02 19:48:43 +01003323 int prot = 0;
3324 int ret;
3325
Joerg Roedel132bd682011-11-17 14:18:46 +01003326 if (domain->mode == PAGE_MODE_NONE)
3327 return -EINVAL;
3328
Joerg Roedelc6229ca2008-12-02 19:48:43 +01003329 if (iommu_prot & IOMMU_READ)
3330 prot |= IOMMU_PROT_IR;
3331 if (iommu_prot & IOMMU_WRITE)
3332 prot |= IOMMU_PROT_IW;
3333
Joerg Roedel5d214fe2010-02-08 14:44:49 +01003334 mutex_lock(&domain->api_lock);
Joerg Roedel795e74f2010-05-11 17:40:57 +02003335 ret = iommu_map_page(domain, iova, paddr, prot, page_size);
Joerg Roedel5d214fe2010-02-08 14:44:49 +01003336 mutex_unlock(&domain->api_lock);
3337
Joerg Roedel795e74f2010-05-11 17:40:57 +02003338 return ret;
Joerg Roedelc6229ca2008-12-02 19:48:43 +01003339}
3340
Ohad Ben-Cohen50090652011-11-10 11:32:25 +02003341static size_t amd_iommu_unmap(struct iommu_domain *dom, unsigned long iova,
3342 size_t page_size)
Joerg Roedeleb74ff62008-12-02 19:59:10 +01003343{
Joerg Roedeleb74ff62008-12-02 19:59:10 +01003344 struct protection_domain *domain = dom->priv;
Ohad Ben-Cohen50090652011-11-10 11:32:25 +02003345 size_t unmap_size;
Joerg Roedeleb74ff62008-12-02 19:59:10 +01003346
Joerg Roedel132bd682011-11-17 14:18:46 +01003347 if (domain->mode == PAGE_MODE_NONE)
3348 return -EINVAL;
3349
Joerg Roedel5d214fe2010-02-08 14:44:49 +01003350 mutex_lock(&domain->api_lock);
Joerg Roedel468e2362010-01-21 16:37:36 +01003351 unmap_size = iommu_unmap_page(domain, iova, page_size);
Joerg Roedel795e74f2010-05-11 17:40:57 +02003352 mutex_unlock(&domain->api_lock);
Joerg Roedeleb74ff62008-12-02 19:59:10 +01003353
Joerg Roedel17b124b2011-04-06 18:01:35 +02003354 domain_flush_tlb_pde(domain);
Joerg Roedel5d214fe2010-02-08 14:44:49 +01003355
Ohad Ben-Cohen50090652011-11-10 11:32:25 +02003356 return unmap_size;
Joerg Roedeleb74ff62008-12-02 19:59:10 +01003357}
3358
Joerg Roedel645c4c82008-12-02 20:05:50 +01003359static phys_addr_t amd_iommu_iova_to_phys(struct iommu_domain *dom,
Varun Sethibb5547ac2013-03-29 01:23:58 +05303360 dma_addr_t iova)
Joerg Roedel645c4c82008-12-02 20:05:50 +01003361{
3362 struct protection_domain *domain = dom->priv;
Joerg Roedelf03152b2010-01-21 16:15:24 +01003363 unsigned long offset_mask;
Joerg Roedel645c4c82008-12-02 20:05:50 +01003364 phys_addr_t paddr;
Joerg Roedelf03152b2010-01-21 16:15:24 +01003365 u64 *pte, __pte;
Joerg Roedel645c4c82008-12-02 20:05:50 +01003366
Joerg Roedel132bd682011-11-17 14:18:46 +01003367 if (domain->mode == PAGE_MODE_NONE)
3368 return iova;
3369
Joerg Roedel24cd7722010-01-19 17:27:39 +01003370 pte = fetch_pte(domain, iova);
Joerg Roedel645c4c82008-12-02 20:05:50 +01003371
Joerg Roedela6d41a42009-09-02 17:08:55 +02003372 if (!pte || !IOMMU_PTE_PRESENT(*pte))
Joerg Roedel645c4c82008-12-02 20:05:50 +01003373 return 0;
3374
Joerg Roedelf03152b2010-01-21 16:15:24 +01003375 if (PM_PTE_LEVEL(*pte) == 0)
3376 offset_mask = PAGE_SIZE - 1;
3377 else
3378 offset_mask = PTE_PAGE_SIZE(*pte) - 1;
3379
3380 __pte = *pte & PM_ADDR_MASK;
3381 paddr = (__pte & ~offset_mask) | (iova & offset_mask);
Joerg Roedel645c4c82008-12-02 20:05:50 +01003382
3383 return paddr;
3384}
3385
Joerg Roedelab636482014-09-05 10:48:21 +02003386static bool amd_iommu_capable(enum iommu_cap cap)
Sheng Yangdbb9fd82009-03-18 15:33:06 +08003387{
Joerg Roedel80a506b2010-07-27 17:14:24 +02003388 switch (cap) {
3389 case IOMMU_CAP_CACHE_COHERENCY:
Joerg Roedelab636482014-09-05 10:48:21 +02003390 return true;
Joerg Roedelbdddadc2012-07-02 18:38:13 +02003391 case IOMMU_CAP_INTR_REMAP:
Joerg Roedelab636482014-09-05 10:48:21 +02003392 return (irq_remapping_enabled == 1);
Joerg Roedel80a506b2010-07-27 17:14:24 +02003393 }
3394
Joerg Roedelab636482014-09-05 10:48:21 +02003395 return false;
Sheng Yangdbb9fd82009-03-18 15:33:06 +08003396}
3397
Thierry Redingb22f6432014-06-27 09:03:12 +02003398static const struct iommu_ops amd_iommu_ops = {
Joerg Roedelab636482014-09-05 10:48:21 +02003399 .capable = amd_iommu_capable,
Joerg Roedel26961ef2008-12-03 17:00:17 +01003400 .domain_init = amd_iommu_domain_init,
3401 .domain_destroy = amd_iommu_domain_destroy,
3402 .attach_dev = amd_iommu_attach_device,
3403 .detach_dev = amd_iommu_detach_device,
Joerg Roedel468e2362010-01-21 16:37:36 +01003404 .map = amd_iommu_map,
3405 .unmap = amd_iommu_unmap,
Joerg Roedel26961ef2008-12-03 17:00:17 +01003406 .iova_to_phys = amd_iommu_iova_to_phys,
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