blob: 6edbd0edcae74108ad07fd72f79a18dfafbb0881 [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 *
60 * Traditionally the IOMMU core just handed us the mappings directly,
61 * after making sure the size is an order of a 4KiB page and that the
62 * mapping has natural alignment.
63 *
64 * To retain this behavior, we currently advertise that we support
65 * all page sizes that are an order of 4KiB.
66 *
67 * If at some point we'd like to utilize the IOMMU core's new behavior,
68 * we could change this to advertise the real page sizes we support.
69 */
70#define AMD_IOMMU_PGSIZES (~0xFFFUL)
71
Joerg Roedelb6c02712008-06-26 21:27:53 +020072static DEFINE_RWLOCK(amd_iommu_devtable_lock);
73
Joerg Roedelbd60b732008-09-11 10:24:48 +020074/* A list of preallocated protection domains */
75static LIST_HEAD(iommu_pd_list);
76static DEFINE_SPINLOCK(iommu_pd_list_lock);
77
Joerg Roedel8fa5f802011-06-09 12:24:45 +020078/* List of all available dev_data structures */
79static LIST_HEAD(dev_data_list);
80static DEFINE_SPINLOCK(dev_data_list_lock);
81
Joerg Roedel6efed632012-06-14 15:52:58 +020082LIST_HEAD(ioapic_map);
83LIST_HEAD(hpet_map);
84
Joerg Roedel0feae532009-08-26 15:26:30 +020085/*
86 * Domain for untranslated devices - only allocated
87 * if iommu=pt passed on kernel cmd line.
88 */
89static struct protection_domain *pt_domain;
90
Joerg Roedel26961ef2008-12-03 17:00:17 +010091static struct iommu_ops amd_iommu_ops;
Joerg Roedel26961ef2008-12-03 17:00:17 +010092
Joerg Roedel72e1dcc2011-11-10 19:13:51 +010093static ATOMIC_NOTIFIER_HEAD(ppr_notifier);
Joerg Roedel52815b72011-11-17 17:24:28 +010094int amd_iommu_max_glx_val = -1;
Joerg Roedel72e1dcc2011-11-10 19:13:51 +010095
Joerg Roedelac1534a2012-06-21 14:52:40 +020096static struct dma_map_ops amd_iommu_dma_ops;
97
Joerg Roedel431b2a22008-07-11 17:14:22 +020098/*
99 * general struct to manage commands send to an IOMMU
100 */
Joerg Roedeld6449532008-07-11 17:14:28 +0200101struct iommu_cmd {
Joerg Roedelb6c02712008-06-26 21:27:53 +0200102 u32 data[4];
103};
104
Joerg Roedel05152a02012-06-15 16:53:51 +0200105struct kmem_cache *amd_iommu_irq_cache;
106
Joerg Roedel04bfdd82009-09-02 16:00:23 +0200107static void update_domain(struct protection_domain *domain);
Joerg Roedel5abcdba2011-12-01 15:49:45 +0100108static int __init alloc_passthrough_domain(void);
Chris Wrightc1eee672009-05-21 00:56:58 -0700109
Joerg Roedel15898bb2009-11-24 15:39:42 +0100110/****************************************************************************
111 *
112 * Helper functions
113 *
114 ****************************************************************************/
115
Joerg Roedelf62dda62011-06-09 12:55:35 +0200116static struct iommu_dev_data *alloc_dev_data(u16 devid)
Joerg Roedel8fa5f802011-06-09 12:24:45 +0200117{
118 struct iommu_dev_data *dev_data;
119 unsigned long flags;
120
121 dev_data = kzalloc(sizeof(*dev_data), GFP_KERNEL);
122 if (!dev_data)
123 return NULL;
124
Joerg Roedelf62dda62011-06-09 12:55:35 +0200125 dev_data->devid = devid;
Joerg Roedel8fa5f802011-06-09 12:24:45 +0200126 atomic_set(&dev_data->bind, 0);
127
128 spin_lock_irqsave(&dev_data_list_lock, flags);
129 list_add_tail(&dev_data->dev_data_list, &dev_data_list);
130 spin_unlock_irqrestore(&dev_data_list_lock, flags);
131
132 return dev_data;
133}
134
135static void free_dev_data(struct iommu_dev_data *dev_data)
136{
137 unsigned long flags;
138
139 spin_lock_irqsave(&dev_data_list_lock, flags);
140 list_del(&dev_data->dev_data_list);
141 spin_unlock_irqrestore(&dev_data_list_lock, flags);
142
143 kfree(dev_data);
144}
145
Joerg Roedel3b03bb72011-06-09 18:53:25 +0200146static struct iommu_dev_data *search_dev_data(u16 devid)
147{
148 struct iommu_dev_data *dev_data;
149 unsigned long flags;
150
151 spin_lock_irqsave(&dev_data_list_lock, flags);
152 list_for_each_entry(dev_data, &dev_data_list, dev_data_list) {
153 if (dev_data->devid == devid)
154 goto out_unlock;
155 }
156
157 dev_data = NULL;
158
159out_unlock:
160 spin_unlock_irqrestore(&dev_data_list_lock, flags);
161
162 return dev_data;
163}
164
165static struct iommu_dev_data *find_dev_data(u16 devid)
166{
167 struct iommu_dev_data *dev_data;
168
169 dev_data = search_dev_data(devid);
170
171 if (dev_data == NULL)
172 dev_data = alloc_dev_data(devid);
173
174 return dev_data;
175}
176
Joerg Roedel15898bb2009-11-24 15:39:42 +0100177static inline u16 get_device_id(struct device *dev)
178{
179 struct pci_dev *pdev = to_pci_dev(dev);
180
181 return calc_devid(pdev->bus->number, pdev->devfn);
182}
183
Joerg Roedel657cbb62009-11-23 15:26:46 +0100184static struct iommu_dev_data *get_dev_data(struct device *dev)
185{
186 return dev->archdata.iommu;
187}
188
Joerg Roedel5abcdba2011-12-01 15:49:45 +0100189static bool pci_iommuv2_capable(struct pci_dev *pdev)
190{
191 static const int caps[] = {
192 PCI_EXT_CAP_ID_ATS,
Joerg Roedel46277b72011-12-07 14:34:02 +0100193 PCI_EXT_CAP_ID_PRI,
194 PCI_EXT_CAP_ID_PASID,
Joerg Roedel5abcdba2011-12-01 15:49:45 +0100195 };
196 int i, pos;
197
198 for (i = 0; i < 3; ++i) {
199 pos = pci_find_ext_capability(pdev, caps[i]);
200 if (pos == 0)
201 return false;
202 }
203
204 return true;
205}
206
Joerg Roedel6a113dd2011-12-01 12:04:58 +0100207static bool pdev_pri_erratum(struct pci_dev *pdev, u32 erratum)
208{
209 struct iommu_dev_data *dev_data;
210
211 dev_data = get_dev_data(&pdev->dev);
212
213 return dev_data->errata & (1 << erratum) ? true : false;
214}
215
Joerg Roedel71c70982009-11-24 16:43:06 +0100216/*
217 * In this function the list of preallocated protection domains is traversed to
218 * find the domain for a specific device
219 */
220static struct dma_ops_domain *find_protection_domain(u16 devid)
221{
222 struct dma_ops_domain *entry, *ret = NULL;
223 unsigned long flags;
224 u16 alias = amd_iommu_alias_table[devid];
225
226 if (list_empty(&iommu_pd_list))
227 return NULL;
228
229 spin_lock_irqsave(&iommu_pd_list_lock, flags);
230
231 list_for_each_entry(entry, &iommu_pd_list, list) {
232 if (entry->target_dev == devid ||
233 entry->target_dev == alias) {
234 ret = entry;
235 break;
236 }
237 }
238
239 spin_unlock_irqrestore(&iommu_pd_list_lock, flags);
240
241 return ret;
242}
243
Joerg Roedel98fc5a62009-11-24 17:19:23 +0100244/*
245 * This function checks if the driver got a valid device from the caller to
246 * avoid dereferencing invalid pointers.
247 */
248static bool check_device(struct device *dev)
249{
250 u16 devid;
251
252 if (!dev || !dev->dma_mask)
253 return false;
254
255 /* No device or no PCI device */
Julia Lawall339d3262010-02-06 09:42:39 +0100256 if (dev->bus != &pci_bus_type)
Joerg Roedel98fc5a62009-11-24 17:19:23 +0100257 return false;
258
259 devid = get_device_id(dev);
260
261 /* Out of our scope? */
262 if (devid > amd_iommu_last_bdf)
263 return false;
264
265 if (amd_iommu_rlookup_table[devid] == NULL)
266 return false;
267
268 return true;
269}
270
Alex Williamson664b6002012-05-30 14:19:31 -0600271static void swap_pci_ref(struct pci_dev **from, struct pci_dev *to)
272{
273 pci_dev_put(*from);
274 *from = to;
275}
276
277#define REQ_ACS_FLAGS (PCI_ACS_SV | PCI_ACS_RR | PCI_ACS_CR | PCI_ACS_UF)
278
Alex Williamson2851db22012-10-08 22:49:41 -0600279static struct pci_dev *get_isolation_root(struct pci_dev *pdev)
Joerg Roedel657cbb62009-11-23 15:26:46 +0100280{
Alex Williamson2851db22012-10-08 22:49:41 -0600281 struct pci_dev *dma_pdev = pdev;
Alex Williamson9dcd6132012-05-30 14:19:07 -0600282
Alex Williamson31fe9432012-08-04 12:09:03 -0600283 /* Account for quirked devices */
Alex Williamson664b6002012-05-30 14:19:31 -0600284 swap_pci_ref(&dma_pdev, pci_get_dma_source(dma_pdev));
285
Alex Williamson31fe9432012-08-04 12:09:03 -0600286 /*
287 * If it's a multifunction device that does not support our
288 * required ACS flags, add to the same group as function 0.
289 */
Alex Williamson664b6002012-05-30 14:19:31 -0600290 if (dma_pdev->multifunction &&
291 !pci_acs_enabled(dma_pdev, REQ_ACS_FLAGS))
292 swap_pci_ref(&dma_pdev,
293 pci_get_slot(dma_pdev->bus,
294 PCI_DEVFN(PCI_SLOT(dma_pdev->devfn),
295 0)));
296
Alex Williamson31fe9432012-08-04 12:09:03 -0600297 /*
298 * Devices on the root bus go through the iommu. If that's not us,
299 * find the next upstream device and test ACS up to the root bus.
300 * Finding the next device may require skipping virtual buses.
301 */
Alex Williamson664b6002012-05-30 14:19:31 -0600302 while (!pci_is_root_bus(dma_pdev->bus)) {
Alex Williamson31fe9432012-08-04 12:09:03 -0600303 struct pci_bus *bus = dma_pdev->bus;
304
305 while (!bus->self) {
306 if (!pci_is_root_bus(bus))
307 bus = bus->parent;
308 else
309 goto root_bus;
310 }
311
312 if (pci_acs_path_enabled(bus->self, NULL, REQ_ACS_FLAGS))
Alex Williamson664b6002012-05-30 14:19:31 -0600313 break;
314
Alex Williamson31fe9432012-08-04 12:09:03 -0600315 swap_pci_ref(&dma_pdev, pci_dev_get(bus->self));
Joerg Roedel26018872011-06-06 16:50:14 +0200316 }
Joerg Roedel657cbb62009-11-23 15:26:46 +0100317
Alex Williamson31fe9432012-08-04 12:09:03 -0600318root_bus:
Alex Williamson2851db22012-10-08 22:49:41 -0600319 return dma_pdev;
320}
321
322static int init_iommu_group(struct device *dev)
323{
324 struct iommu_dev_data *dev_data;
325 struct iommu_group *group;
326 struct pci_dev *dma_pdev = NULL;
327 int ret;
328
329 group = iommu_group_get(dev);
330 if (group) {
331 iommu_group_put(group);
332 return 0;
333 }
334
335 dev_data = find_dev_data(get_device_id(dev));
336 if (!dev_data)
337 return -ENOMEM;
338
339 if (dev_data->alias_data) {
340 u16 alias;
341
342 alias = amd_iommu_alias_table[dev_data->devid];
343 dma_pdev = pci_get_bus_and_slot(alias >> 8, alias & 0xff);
344 }
345
346 if (!dma_pdev)
347 dma_pdev = pci_dev_get(to_pci_dev(dev));
348
349 dma_pdev = get_isolation_root(dma_pdev);
Alex Williamson9dcd6132012-05-30 14:19:07 -0600350 group = iommu_group_get(&dma_pdev->dev);
351 pci_dev_put(dma_pdev);
352 if (!group) {
353 group = iommu_group_alloc();
354 if (IS_ERR(group))
355 return PTR_ERR(group);
Joerg Roedel657cbb62009-11-23 15:26:46 +0100356 }
357
Alex Williamson9dcd6132012-05-30 14:19:07 -0600358 ret = iommu_group_add_device(group, dev);
359
360 iommu_group_put(group);
361
Alex Williamsoneb9c9522012-10-08 22:49:35 -0600362 return ret;
363}
364
365static int iommu_init_device(struct device *dev)
366{
367 struct pci_dev *pdev = to_pci_dev(dev);
368 struct iommu_dev_data *dev_data;
369 u16 alias;
370 int ret;
371
372 if (dev->archdata.iommu)
373 return 0;
374
375 dev_data = find_dev_data(get_device_id(dev));
376 if (!dev_data)
377 return -ENOMEM;
378
379 alias = amd_iommu_alias_table[dev_data->devid];
380 if (alias != dev_data->devid) {
381 struct iommu_dev_data *alias_data;
382
383 alias_data = find_dev_data(alias);
384 if (alias_data == NULL) {
385 pr_err("AMD-Vi: Warning: Unhandled device %s\n",
386 dev_name(dev));
387 free_dev_data(dev_data);
388 return -ENOTSUPP;
389 }
390 dev_data->alias_data = alias_data;
391 }
392
393 ret = init_iommu_group(dev);
Alex Williamson9dcd6132012-05-30 14:19:07 -0600394 if (ret)
395 return ret;
396
Joerg Roedel5abcdba2011-12-01 15:49:45 +0100397 if (pci_iommuv2_capable(pdev)) {
398 struct amd_iommu *iommu;
399
400 iommu = amd_iommu_rlookup_table[dev_data->devid];
401 dev_data->iommu_v2 = iommu->is_iommu_v2;
402 }
403
Joerg Roedel657cbb62009-11-23 15:26:46 +0100404 dev->archdata.iommu = dev_data;
405
Joerg Roedel657cbb62009-11-23 15:26:46 +0100406 return 0;
407}
408
Joerg Roedel26018872011-06-06 16:50:14 +0200409static void iommu_ignore_device(struct device *dev)
410{
411 u16 devid, alias;
412
413 devid = get_device_id(dev);
414 alias = amd_iommu_alias_table[devid];
415
416 memset(&amd_iommu_dev_table[devid], 0, sizeof(struct dev_table_entry));
417 memset(&amd_iommu_dev_table[alias], 0, sizeof(struct dev_table_entry));
418
419 amd_iommu_rlookup_table[devid] = NULL;
420 amd_iommu_rlookup_table[alias] = NULL;
421}
422
Joerg Roedel657cbb62009-11-23 15:26:46 +0100423static void iommu_uninit_device(struct device *dev)
424{
Alex Williamson9dcd6132012-05-30 14:19:07 -0600425 iommu_group_remove_device(dev);
426
Joerg Roedel8fa5f802011-06-09 12:24:45 +0200427 /*
428 * Nothing to do here - we keep dev_data around for unplugged devices
429 * and reuse it when the device is re-plugged - not doing so would
430 * introduce a ton of races.
431 */
Joerg Roedel657cbb62009-11-23 15:26:46 +0100432}
Joerg Roedelb7cc9552009-12-10 11:03:39 +0100433
434void __init amd_iommu_uninit_devices(void)
435{
Joerg Roedel8fa5f802011-06-09 12:24:45 +0200436 struct iommu_dev_data *dev_data, *n;
Joerg Roedelb7cc9552009-12-10 11:03:39 +0100437 struct pci_dev *pdev = NULL;
438
439 for_each_pci_dev(pdev) {
440
441 if (!check_device(&pdev->dev))
442 continue;
443
444 iommu_uninit_device(&pdev->dev);
445 }
Joerg Roedel8fa5f802011-06-09 12:24:45 +0200446
447 /* Free all of our dev_data structures */
448 list_for_each_entry_safe(dev_data, n, &dev_data_list, dev_data_list)
449 free_dev_data(dev_data);
Joerg Roedelb7cc9552009-12-10 11:03:39 +0100450}
451
452int __init amd_iommu_init_devices(void)
453{
454 struct pci_dev *pdev = NULL;
455 int ret = 0;
456
457 for_each_pci_dev(pdev) {
458
459 if (!check_device(&pdev->dev))
460 continue;
461
462 ret = iommu_init_device(&pdev->dev);
Joerg Roedel26018872011-06-06 16:50:14 +0200463 if (ret == -ENOTSUPP)
464 iommu_ignore_device(&pdev->dev);
465 else if (ret)
Joerg Roedelb7cc9552009-12-10 11:03:39 +0100466 goto out_free;
467 }
468
469 return 0;
470
471out_free:
472
473 amd_iommu_uninit_devices();
474
475 return ret;
476}
Joerg Roedel7f265082008-12-12 13:50:21 +0100477#ifdef CONFIG_AMD_IOMMU_STATS
478
479/*
480 * Initialization code for statistics collection
481 */
482
Joerg Roedelda49f6d2008-12-12 14:59:58 +0100483DECLARE_STATS_COUNTER(compl_wait);
Joerg Roedel0f2a86f2008-12-12 15:05:16 +0100484DECLARE_STATS_COUNTER(cnt_map_single);
Joerg Roedel146a6912008-12-12 15:07:12 +0100485DECLARE_STATS_COUNTER(cnt_unmap_single);
Joerg Roedeld03f0672008-12-12 15:09:48 +0100486DECLARE_STATS_COUNTER(cnt_map_sg);
Joerg Roedel55877a62008-12-12 15:12:14 +0100487DECLARE_STATS_COUNTER(cnt_unmap_sg);
Joerg Roedelc8f0fb32008-12-12 15:14:21 +0100488DECLARE_STATS_COUNTER(cnt_alloc_coherent);
Joerg Roedel5d31ee72008-12-12 15:16:38 +0100489DECLARE_STATS_COUNTER(cnt_free_coherent);
Joerg Roedelc1858972008-12-12 15:42:39 +0100490DECLARE_STATS_COUNTER(cross_page);
Joerg Roedelf57d98a2008-12-12 15:46:29 +0100491DECLARE_STATS_COUNTER(domain_flush_single);
Joerg Roedel18811f52008-12-12 15:48:28 +0100492DECLARE_STATS_COUNTER(domain_flush_all);
Joerg Roedel5774f7c2008-12-12 15:57:30 +0100493DECLARE_STATS_COUNTER(alloced_io_mem);
Joerg Roedel8ecaf8f2008-12-12 16:13:04 +0100494DECLARE_STATS_COUNTER(total_map_requests);
Joerg Roedel399be2f2011-12-01 16:53:47 +0100495DECLARE_STATS_COUNTER(complete_ppr);
496DECLARE_STATS_COUNTER(invalidate_iotlb);
497DECLARE_STATS_COUNTER(invalidate_iotlb_all);
498DECLARE_STATS_COUNTER(pri_requests);
499
Joerg Roedel7f265082008-12-12 13:50:21 +0100500static struct dentry *stats_dir;
Joerg Roedel7f265082008-12-12 13:50:21 +0100501static struct dentry *de_fflush;
502
503static void amd_iommu_stats_add(struct __iommu_counter *cnt)
504{
505 if (stats_dir == NULL)
506 return;
507
508 cnt->dent = debugfs_create_u64(cnt->name, 0444, stats_dir,
509 &cnt->value);
510}
511
512static void amd_iommu_stats_init(void)
513{
514 stats_dir = debugfs_create_dir("amd-iommu", NULL);
515 if (stats_dir == NULL)
516 return;
517
Joerg Roedel7f265082008-12-12 13:50:21 +0100518 de_fflush = debugfs_create_bool("fullflush", 0444, stats_dir,
Dan Carpenter3775d482012-06-27 12:09:18 +0300519 &amd_iommu_unmap_flush);
Joerg Roedelda49f6d2008-12-12 14:59:58 +0100520
521 amd_iommu_stats_add(&compl_wait);
Joerg Roedel0f2a86f2008-12-12 15:05:16 +0100522 amd_iommu_stats_add(&cnt_map_single);
Joerg Roedel146a6912008-12-12 15:07:12 +0100523 amd_iommu_stats_add(&cnt_unmap_single);
Joerg Roedeld03f0672008-12-12 15:09:48 +0100524 amd_iommu_stats_add(&cnt_map_sg);
Joerg Roedel55877a62008-12-12 15:12:14 +0100525 amd_iommu_stats_add(&cnt_unmap_sg);
Joerg Roedelc8f0fb32008-12-12 15:14:21 +0100526 amd_iommu_stats_add(&cnt_alloc_coherent);
Joerg Roedel5d31ee72008-12-12 15:16:38 +0100527 amd_iommu_stats_add(&cnt_free_coherent);
Joerg Roedelc1858972008-12-12 15:42:39 +0100528 amd_iommu_stats_add(&cross_page);
Joerg Roedelf57d98a2008-12-12 15:46:29 +0100529 amd_iommu_stats_add(&domain_flush_single);
Joerg Roedel18811f52008-12-12 15:48:28 +0100530 amd_iommu_stats_add(&domain_flush_all);
Joerg Roedel5774f7c2008-12-12 15:57:30 +0100531 amd_iommu_stats_add(&alloced_io_mem);
Joerg Roedel8ecaf8f2008-12-12 16:13:04 +0100532 amd_iommu_stats_add(&total_map_requests);
Joerg Roedel399be2f2011-12-01 16:53:47 +0100533 amd_iommu_stats_add(&complete_ppr);
534 amd_iommu_stats_add(&invalidate_iotlb);
535 amd_iommu_stats_add(&invalidate_iotlb_all);
536 amd_iommu_stats_add(&pri_requests);
Joerg Roedel7f265082008-12-12 13:50:21 +0100537}
538
539#endif
540
Joerg Roedel431b2a22008-07-11 17:14:22 +0200541/****************************************************************************
542 *
Joerg Roedela80dc3e2008-09-11 16:51:41 +0200543 * Interrupt handling functions
544 *
545 ****************************************************************************/
546
Joerg Roedele3e59872009-09-03 14:02:10 +0200547static void dump_dte_entry(u16 devid)
548{
549 int i;
550
Joerg Roedelee6c2862011-11-09 12:06:03 +0100551 for (i = 0; i < 4; ++i)
552 pr_err("AMD-Vi: DTE[%d]: %016llx\n", i,
Joerg Roedele3e59872009-09-03 14:02:10 +0200553 amd_iommu_dev_table[devid].data[i]);
554}
555
Joerg Roedel945b4ac2009-09-03 14:25:02 +0200556static void dump_command(unsigned long phys_addr)
557{
558 struct iommu_cmd *cmd = phys_to_virt(phys_addr);
559 int i;
560
561 for (i = 0; i < 4; ++i)
562 pr_err("AMD-Vi: CMD[%d]: %08x\n", i, cmd->data[i]);
563}
564
Joerg Roedela345b232009-09-03 15:01:43 +0200565static void iommu_print_event(struct amd_iommu *iommu, void *__evt)
Joerg Roedel90008ee2008-09-09 16:41:05 +0200566{
Joerg Roedel3d06fca2012-04-12 14:12:00 +0200567 int type, devid, domid, flags;
568 volatile u32 *event = __evt;
569 int count = 0;
570 u64 address;
571
572retry:
573 type = (event[1] >> EVENT_TYPE_SHIFT) & EVENT_TYPE_MASK;
574 devid = (event[0] >> EVENT_DEVID_SHIFT) & EVENT_DEVID_MASK;
575 domid = (event[1] >> EVENT_DOMID_SHIFT) & EVENT_DOMID_MASK;
576 flags = (event[1] >> EVENT_FLAGS_SHIFT) & EVENT_FLAGS_MASK;
577 address = (u64)(((u64)event[3]) << 32) | event[2];
578
579 if (type == 0) {
580 /* Did we hit the erratum? */
581 if (++count == LOOP_TIMEOUT) {
582 pr_err("AMD-Vi: No event written to event log\n");
583 return;
584 }
585 udelay(1);
586 goto retry;
587 }
Joerg Roedel90008ee2008-09-09 16:41:05 +0200588
Joerg Roedel4c6f40d2009-09-01 16:43:58 +0200589 printk(KERN_ERR "AMD-Vi: Event logged [");
Joerg Roedel90008ee2008-09-09 16:41:05 +0200590
591 switch (type) {
592 case EVENT_TYPE_ILL_DEV:
593 printk("ILLEGAL_DEV_TABLE_ENTRY device=%02x:%02x.%x "
594 "address=0x%016llx flags=0x%04x]\n",
595 PCI_BUS(devid), PCI_SLOT(devid), PCI_FUNC(devid),
596 address, flags);
Joerg Roedele3e59872009-09-03 14:02:10 +0200597 dump_dte_entry(devid);
Joerg Roedel90008ee2008-09-09 16:41:05 +0200598 break;
599 case EVENT_TYPE_IO_FAULT:
600 printk("IO_PAGE_FAULT device=%02x:%02x.%x "
601 "domain=0x%04x address=0x%016llx flags=0x%04x]\n",
602 PCI_BUS(devid), PCI_SLOT(devid), PCI_FUNC(devid),
603 domid, address, flags);
604 break;
605 case EVENT_TYPE_DEV_TAB_ERR:
606 printk("DEV_TAB_HARDWARE_ERROR device=%02x:%02x.%x "
607 "address=0x%016llx flags=0x%04x]\n",
608 PCI_BUS(devid), PCI_SLOT(devid), PCI_FUNC(devid),
609 address, flags);
610 break;
611 case EVENT_TYPE_PAGE_TAB_ERR:
612 printk("PAGE_TAB_HARDWARE_ERROR device=%02x:%02x.%x "
613 "domain=0x%04x address=0x%016llx flags=0x%04x]\n",
614 PCI_BUS(devid), PCI_SLOT(devid), PCI_FUNC(devid),
615 domid, address, flags);
616 break;
617 case EVENT_TYPE_ILL_CMD:
618 printk("ILLEGAL_COMMAND_ERROR address=0x%016llx]\n", address);
Joerg Roedel945b4ac2009-09-03 14:25:02 +0200619 dump_command(address);
Joerg Roedel90008ee2008-09-09 16:41:05 +0200620 break;
621 case EVENT_TYPE_CMD_HARD_ERR:
622 printk("COMMAND_HARDWARE_ERROR address=0x%016llx "
623 "flags=0x%04x]\n", address, flags);
624 break;
625 case EVENT_TYPE_IOTLB_INV_TO:
626 printk("IOTLB_INV_TIMEOUT device=%02x:%02x.%x "
627 "address=0x%016llx]\n",
628 PCI_BUS(devid), PCI_SLOT(devid), PCI_FUNC(devid),
629 address);
630 break;
631 case EVENT_TYPE_INV_DEV_REQ:
632 printk("INVALID_DEVICE_REQUEST device=%02x:%02x.%x "
633 "address=0x%016llx flags=0x%04x]\n",
634 PCI_BUS(devid), PCI_SLOT(devid), PCI_FUNC(devid),
635 address, flags);
636 break;
637 default:
638 printk(KERN_ERR "UNKNOWN type=0x%02x]\n", type);
639 }
Joerg Roedel3d06fca2012-04-12 14:12:00 +0200640
641 memset(__evt, 0, 4 * sizeof(u32));
Joerg Roedel90008ee2008-09-09 16:41:05 +0200642}
643
644static void iommu_poll_events(struct amd_iommu *iommu)
645{
646 u32 head, tail;
647 unsigned long flags;
648
649 spin_lock_irqsave(&iommu->lock, flags);
650
651 head = readl(iommu->mmio_base + MMIO_EVT_HEAD_OFFSET);
652 tail = readl(iommu->mmio_base + MMIO_EVT_TAIL_OFFSET);
653
654 while (head != tail) {
Joerg Roedela345b232009-09-03 15:01:43 +0200655 iommu_print_event(iommu, iommu->evt_buf + head);
Joerg Roedel90008ee2008-09-09 16:41:05 +0200656 head = (head + EVENT_ENTRY_SIZE) % iommu->evt_buf_size;
657 }
658
659 writel(head, iommu->mmio_base + MMIO_EVT_HEAD_OFFSET);
660
661 spin_unlock_irqrestore(&iommu->lock, flags);
662}
663
Joerg Roedeleee53532012-06-01 15:20:23 +0200664static void iommu_handle_ppr_entry(struct amd_iommu *iommu, u64 *raw)
Joerg Roedel72e1dcc2011-11-10 19:13:51 +0100665{
666 struct amd_iommu_fault fault;
Joerg Roedel72e1dcc2011-11-10 19:13:51 +0100667
Joerg Roedel399be2f2011-12-01 16:53:47 +0100668 INC_STATS_COUNTER(pri_requests);
669
Joerg Roedel72e1dcc2011-11-10 19:13:51 +0100670 if (PPR_REQ_TYPE(raw[0]) != PPR_REQ_FAULT) {
671 pr_err_ratelimited("AMD-Vi: Unknown PPR request received\n");
672 return;
673 }
674
675 fault.address = raw[1];
676 fault.pasid = PPR_PASID(raw[0]);
677 fault.device_id = PPR_DEVID(raw[0]);
678 fault.tag = PPR_TAG(raw[0]);
679 fault.flags = PPR_FLAGS(raw[0]);
680
Joerg Roedel72e1dcc2011-11-10 19:13:51 +0100681 atomic_notifier_call_chain(&ppr_notifier, 0, &fault);
682}
683
684static void iommu_poll_ppr_log(struct amd_iommu *iommu)
685{
686 unsigned long flags;
687 u32 head, tail;
688
689 if (iommu->ppr_log == NULL)
690 return;
691
Joerg Roedeleee53532012-06-01 15:20:23 +0200692 /* enable ppr interrupts again */
693 writel(MMIO_STATUS_PPR_INT_MASK, iommu->mmio_base + MMIO_STATUS_OFFSET);
694
Joerg Roedel72e1dcc2011-11-10 19:13:51 +0100695 spin_lock_irqsave(&iommu->lock, flags);
696
697 head = readl(iommu->mmio_base + MMIO_PPR_HEAD_OFFSET);
698 tail = readl(iommu->mmio_base + MMIO_PPR_TAIL_OFFSET);
699
700 while (head != tail) {
Joerg Roedeleee53532012-06-01 15:20:23 +0200701 volatile u64 *raw;
702 u64 entry[2];
703 int i;
Joerg Roedel72e1dcc2011-11-10 19:13:51 +0100704
Joerg Roedeleee53532012-06-01 15:20:23 +0200705 raw = (u64 *)(iommu->ppr_log + head);
Joerg Roedel72e1dcc2011-11-10 19:13:51 +0100706
Joerg Roedeleee53532012-06-01 15:20:23 +0200707 /*
708 * Hardware bug: Interrupt may arrive before the entry is
709 * written to memory. If this happens we need to wait for the
710 * entry to arrive.
711 */
712 for (i = 0; i < LOOP_TIMEOUT; ++i) {
713 if (PPR_REQ_TYPE(raw[0]) != 0)
714 break;
715 udelay(1);
716 }
717
718 /* Avoid memcpy function-call overhead */
719 entry[0] = raw[0];
720 entry[1] = raw[1];
721
722 /*
723 * To detect the hardware bug we need to clear the entry
724 * back to zero.
725 */
726 raw[0] = raw[1] = 0UL;
727
728 /* Update head pointer of hardware ring-buffer */
Joerg Roedel72e1dcc2011-11-10 19:13:51 +0100729 head = (head + PPR_ENTRY_SIZE) % PPR_LOG_SIZE;
730 writel(head, iommu->mmio_base + MMIO_PPR_HEAD_OFFSET);
Joerg Roedeleee53532012-06-01 15:20:23 +0200731
732 /*
733 * Release iommu->lock because ppr-handling might need to
Frank Arnolddf805ab2012-08-27 19:21:04 +0200734 * re-acquire it
Joerg Roedeleee53532012-06-01 15:20:23 +0200735 */
736 spin_unlock_irqrestore(&iommu->lock, flags);
737
738 /* Handle PPR entry */
739 iommu_handle_ppr_entry(iommu, entry);
740
741 spin_lock_irqsave(&iommu->lock, flags);
742
743 /* Refresh ring-buffer information */
744 head = readl(iommu->mmio_base + MMIO_PPR_HEAD_OFFSET);
Joerg Roedel72e1dcc2011-11-10 19:13:51 +0100745 tail = readl(iommu->mmio_base + MMIO_PPR_TAIL_OFFSET);
746 }
747
Joerg Roedel72e1dcc2011-11-10 19:13:51 +0100748 spin_unlock_irqrestore(&iommu->lock, flags);
749}
750
Joerg Roedel72fe00f2011-05-10 10:50:42 +0200751irqreturn_t amd_iommu_int_thread(int irq, void *data)
Joerg Roedela80dc3e2008-09-11 16:51:41 +0200752{
Joerg Roedel90008ee2008-09-09 16:41:05 +0200753 struct amd_iommu *iommu;
754
Joerg Roedel72e1dcc2011-11-10 19:13:51 +0100755 for_each_iommu(iommu) {
Joerg Roedel90008ee2008-09-09 16:41:05 +0200756 iommu_poll_events(iommu);
Joerg Roedel72e1dcc2011-11-10 19:13:51 +0100757 iommu_poll_ppr_log(iommu);
758 }
Joerg Roedel90008ee2008-09-09 16:41:05 +0200759
760 return IRQ_HANDLED;
Joerg Roedela80dc3e2008-09-11 16:51:41 +0200761}
762
Joerg Roedel72fe00f2011-05-10 10:50:42 +0200763irqreturn_t amd_iommu_int_handler(int irq, void *data)
764{
765 return IRQ_WAKE_THREAD;
766}
767
Joerg Roedela80dc3e2008-09-11 16:51:41 +0200768/****************************************************************************
769 *
Joerg Roedel431b2a22008-07-11 17:14:22 +0200770 * IOMMU command queuing functions
771 *
772 ****************************************************************************/
773
Joerg Roedelac0ea6e2011-04-06 18:38:20 +0200774static int wait_on_sem(volatile u64 *sem)
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200775{
Joerg Roedelac0ea6e2011-04-06 18:38:20 +0200776 int i = 0;
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200777
Joerg Roedelac0ea6e2011-04-06 18:38:20 +0200778 while (*sem == 0 && i < LOOP_TIMEOUT) {
779 udelay(1);
780 i += 1;
781 }
782
783 if (i == LOOP_TIMEOUT) {
784 pr_alert("AMD-Vi: Completion-Wait loop timed out\n");
785 return -EIO;
786 }
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200787
788 return 0;
789}
790
Joerg Roedelac0ea6e2011-04-06 18:38:20 +0200791static void copy_cmd_to_buffer(struct amd_iommu *iommu,
792 struct iommu_cmd *cmd,
793 u32 tail)
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200794{
Joerg Roedelac0ea6e2011-04-06 18:38:20 +0200795 u8 *target;
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200796
Joerg Roedelac0ea6e2011-04-06 18:38:20 +0200797 target = iommu->cmd_buf + tail;
798 tail = (tail + sizeof(*cmd)) % iommu->cmd_buf_size;
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200799
Joerg Roedelac0ea6e2011-04-06 18:38:20 +0200800 /* Copy command to buffer */
801 memcpy(target, cmd, sizeof(*cmd));
802
803 /* Tell the IOMMU about it */
804 writel(tail, iommu->mmio_base + MMIO_CMD_TAIL_OFFSET);
805}
806
Joerg Roedel815b33f2011-04-06 17:26:49 +0200807static void build_completion_wait(struct iommu_cmd *cmd, u64 address)
Joerg Roedelded46732011-04-06 10:53:48 +0200808{
Joerg Roedel815b33f2011-04-06 17:26:49 +0200809 WARN_ON(address & 0x7ULL);
810
Joerg Roedelded46732011-04-06 10:53:48 +0200811 memset(cmd, 0, sizeof(*cmd));
Joerg Roedel815b33f2011-04-06 17:26:49 +0200812 cmd->data[0] = lower_32_bits(__pa(address)) | CMD_COMPL_WAIT_STORE_MASK;
813 cmd->data[1] = upper_32_bits(__pa(address));
814 cmd->data[2] = 1;
Joerg Roedelded46732011-04-06 10:53:48 +0200815 CMD_SET_TYPE(cmd, CMD_COMPL_WAIT);
816}
817
Joerg Roedel94fe79e2011-04-06 11:07:21 +0200818static void build_inv_dte(struct iommu_cmd *cmd, u16 devid)
819{
820 memset(cmd, 0, sizeof(*cmd));
821 cmd->data[0] = devid;
822 CMD_SET_TYPE(cmd, CMD_INV_DEV_ENTRY);
823}
824
Joerg Roedel11b64022011-04-06 11:49:28 +0200825static void build_inv_iommu_pages(struct iommu_cmd *cmd, u64 address,
826 size_t size, u16 domid, int pde)
827{
828 u64 pages;
829 int s;
830
831 pages = iommu_num_pages(address, size, PAGE_SIZE);
832 s = 0;
833
834 if (pages > 1) {
835 /*
836 * If we have to flush more than one page, flush all
837 * TLB entries for this domain
838 */
839 address = CMD_INV_IOMMU_ALL_PAGES_ADDRESS;
840 s = 1;
841 }
842
843 address &= PAGE_MASK;
844
845 memset(cmd, 0, sizeof(*cmd));
846 cmd->data[1] |= domid;
847 cmd->data[2] = lower_32_bits(address);
848 cmd->data[3] = upper_32_bits(address);
849 CMD_SET_TYPE(cmd, CMD_INV_IOMMU_PAGES);
850 if (s) /* size bit - we flush more than one 4kb page */
851 cmd->data[2] |= CMD_INV_IOMMU_PAGES_SIZE_MASK;
Frank Arnolddf805ab2012-08-27 19:21:04 +0200852 if (pde) /* PDE bit - we want to flush everything, not only the PTEs */
Joerg Roedel11b64022011-04-06 11:49:28 +0200853 cmd->data[2] |= CMD_INV_IOMMU_PAGES_PDE_MASK;
854}
855
Joerg Roedelcb41ed82011-04-05 11:00:53 +0200856static void build_inv_iotlb_pages(struct iommu_cmd *cmd, u16 devid, int qdep,
857 u64 address, size_t size)
858{
859 u64 pages;
860 int s;
861
862 pages = iommu_num_pages(address, size, PAGE_SIZE);
863 s = 0;
864
865 if (pages > 1) {
866 /*
867 * If we have to flush more than one page, flush all
868 * TLB entries for this domain
869 */
870 address = CMD_INV_IOMMU_ALL_PAGES_ADDRESS;
871 s = 1;
872 }
873
874 address &= PAGE_MASK;
875
876 memset(cmd, 0, sizeof(*cmd));
877 cmd->data[0] = devid;
878 cmd->data[0] |= (qdep & 0xff) << 24;
879 cmd->data[1] = devid;
880 cmd->data[2] = lower_32_bits(address);
881 cmd->data[3] = upper_32_bits(address);
882 CMD_SET_TYPE(cmd, CMD_INV_IOTLB_PAGES);
883 if (s)
884 cmd->data[2] |= CMD_INV_IOMMU_PAGES_SIZE_MASK;
885}
886
Joerg Roedel22e266c2011-11-21 15:59:08 +0100887static void build_inv_iommu_pasid(struct iommu_cmd *cmd, u16 domid, int pasid,
888 u64 address, bool size)
889{
890 memset(cmd, 0, sizeof(*cmd));
891
892 address &= ~(0xfffULL);
893
894 cmd->data[0] = pasid & PASID_MASK;
895 cmd->data[1] = domid;
896 cmd->data[2] = lower_32_bits(address);
897 cmd->data[3] = upper_32_bits(address);
898 cmd->data[2] |= CMD_INV_IOMMU_PAGES_PDE_MASK;
899 cmd->data[2] |= CMD_INV_IOMMU_PAGES_GN_MASK;
900 if (size)
901 cmd->data[2] |= CMD_INV_IOMMU_PAGES_SIZE_MASK;
902 CMD_SET_TYPE(cmd, CMD_INV_IOMMU_PAGES);
903}
904
905static void build_inv_iotlb_pasid(struct iommu_cmd *cmd, u16 devid, int pasid,
906 int qdep, u64 address, bool size)
907{
908 memset(cmd, 0, sizeof(*cmd));
909
910 address &= ~(0xfffULL);
911
912 cmd->data[0] = devid;
913 cmd->data[0] |= (pasid & 0xff) << 16;
914 cmd->data[0] |= (qdep & 0xff) << 24;
915 cmd->data[1] = devid;
916 cmd->data[1] |= ((pasid >> 8) & 0xfff) << 16;
917 cmd->data[2] = lower_32_bits(address);
918 cmd->data[2] |= CMD_INV_IOMMU_PAGES_GN_MASK;
919 cmd->data[3] = upper_32_bits(address);
920 if (size)
921 cmd->data[2] |= CMD_INV_IOMMU_PAGES_SIZE_MASK;
922 CMD_SET_TYPE(cmd, CMD_INV_IOTLB_PAGES);
923}
924
Joerg Roedelc99afa22011-11-21 18:19:25 +0100925static void build_complete_ppr(struct iommu_cmd *cmd, u16 devid, int pasid,
926 int status, int tag, bool gn)
927{
928 memset(cmd, 0, sizeof(*cmd));
929
930 cmd->data[0] = devid;
931 if (gn) {
932 cmd->data[1] = pasid & PASID_MASK;
933 cmd->data[2] = CMD_INV_IOMMU_PAGES_GN_MASK;
934 }
935 cmd->data[3] = tag & 0x1ff;
936 cmd->data[3] |= (status & PPR_STATUS_MASK) << PPR_STATUS_SHIFT;
937
938 CMD_SET_TYPE(cmd, CMD_COMPLETE_PPR);
939}
940
Joerg Roedel58fc7f12011-04-11 11:13:24 +0200941static void build_inv_all(struct iommu_cmd *cmd)
942{
943 memset(cmd, 0, sizeof(*cmd));
944 CMD_SET_TYPE(cmd, CMD_INV_ALL);
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200945}
946
Joerg Roedel7ef27982012-06-21 16:46:04 +0200947static void build_inv_irt(struct iommu_cmd *cmd, u16 devid)
948{
949 memset(cmd, 0, sizeof(*cmd));
950 cmd->data[0] = devid;
951 CMD_SET_TYPE(cmd, CMD_INV_IRT);
952}
953
Joerg Roedel431b2a22008-07-11 17:14:22 +0200954/*
Joerg Roedelb6c02712008-06-26 21:27:53 +0200955 * Writes the command to the IOMMUs command buffer and informs the
Joerg Roedelac0ea6e2011-04-06 18:38:20 +0200956 * hardware about the new command.
Joerg Roedel431b2a22008-07-11 17:14:22 +0200957 */
Joerg Roedelf1ca1512011-09-02 14:10:32 +0200958static int iommu_queue_command_sync(struct amd_iommu *iommu,
959 struct iommu_cmd *cmd,
960 bool sync)
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200961{
Joerg Roedelac0ea6e2011-04-06 18:38:20 +0200962 u32 left, tail, head, next_tail;
Joerg Roedel815b33f2011-04-06 17:26:49 +0200963 unsigned long flags;
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200964
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200965 WARN_ON(iommu->cmd_buf_size & CMD_BUFFER_UNINITIALIZED);
Joerg Roedelda49f6d2008-12-12 14:59:58 +0100966
Joerg Roedelac0ea6e2011-04-06 18:38:20 +0200967again:
Joerg Roedel815b33f2011-04-06 17:26:49 +0200968 spin_lock_irqsave(&iommu->lock, flags);
Joerg Roedelac0ea6e2011-04-06 18:38:20 +0200969
970 head = readl(iommu->mmio_base + MMIO_CMD_HEAD_OFFSET);
971 tail = readl(iommu->mmio_base + MMIO_CMD_TAIL_OFFSET);
972 next_tail = (tail + sizeof(*cmd)) % iommu->cmd_buf_size;
973 left = (head - next_tail) % iommu->cmd_buf_size;
974
975 if (left <= 2) {
976 struct iommu_cmd sync_cmd;
977 volatile u64 sem = 0;
978 int ret;
979
980 build_completion_wait(&sync_cmd, (u64)&sem);
981 copy_cmd_to_buffer(iommu, &sync_cmd, tail);
982
983 spin_unlock_irqrestore(&iommu->lock, flags);
984
985 if ((ret = wait_on_sem(&sem)) != 0)
986 return ret;
987
988 goto again;
Joerg Roedel136f78a2008-07-11 17:14:27 +0200989 }
990
Joerg Roedelac0ea6e2011-04-06 18:38:20 +0200991 copy_cmd_to_buffer(iommu, cmd, tail);
Joerg Roedel519c31b2008-08-14 19:55:15 +0200992
Joerg Roedelac0ea6e2011-04-06 18:38:20 +0200993 /* We need to sync now to make sure all commands are processed */
Joerg Roedelf1ca1512011-09-02 14:10:32 +0200994 iommu->need_sync = sync;
Joerg Roedelac0ea6e2011-04-06 18:38:20 +0200995
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200996 spin_unlock_irqrestore(&iommu->lock, flags);
997
Joerg Roedel815b33f2011-04-06 17:26:49 +0200998 return 0;
Joerg Roedel8d201962008-12-02 20:34:41 +0100999}
1000
Joerg Roedelf1ca1512011-09-02 14:10:32 +02001001static int iommu_queue_command(struct amd_iommu *iommu, struct iommu_cmd *cmd)
1002{
1003 return iommu_queue_command_sync(iommu, cmd, true);
1004}
1005
Joerg Roedel8d201962008-12-02 20:34:41 +01001006/*
1007 * This function queues a completion wait command into the command
1008 * buffer of an IOMMU
1009 */
Joerg Roedel8d201962008-12-02 20:34:41 +01001010static int iommu_completion_wait(struct amd_iommu *iommu)
1011{
Joerg Roedel815b33f2011-04-06 17:26:49 +02001012 struct iommu_cmd cmd;
1013 volatile u64 sem = 0;
Joerg Roedelac0ea6e2011-04-06 18:38:20 +02001014 int ret;
Joerg Roedel8d201962008-12-02 20:34:41 +01001015
1016 if (!iommu->need_sync)
Joerg Roedel815b33f2011-04-06 17:26:49 +02001017 return 0;
Joerg Roedel8d201962008-12-02 20:34:41 +01001018
Joerg Roedel815b33f2011-04-06 17:26:49 +02001019 build_completion_wait(&cmd, (u64)&sem);
Joerg Roedel8d201962008-12-02 20:34:41 +01001020
Joerg Roedelf1ca1512011-09-02 14:10:32 +02001021 ret = iommu_queue_command_sync(iommu, &cmd, false);
Joerg Roedel8d201962008-12-02 20:34:41 +01001022 if (ret)
Joerg Roedel815b33f2011-04-06 17:26:49 +02001023 return ret;
Joerg Roedel8d201962008-12-02 20:34:41 +01001024
Joerg Roedelac0ea6e2011-04-06 18:38:20 +02001025 return wait_on_sem(&sem);
Joerg Roedela19ae1e2008-06-26 21:27:55 +02001026}
1027
Joerg Roedeld8c13082011-04-06 18:51:26 +02001028static int iommu_flush_dte(struct amd_iommu *iommu, u16 devid)
Joerg Roedela19ae1e2008-06-26 21:27:55 +02001029{
1030 struct iommu_cmd cmd;
1031
Joerg Roedeld8c13082011-04-06 18:51:26 +02001032 build_inv_dte(&cmd, devid);
Joerg Roedela19ae1e2008-06-26 21:27:55 +02001033
Joerg Roedeld8c13082011-04-06 18:51:26 +02001034 return iommu_queue_command(iommu, &cmd);
1035}
1036
Joerg Roedel7d0c5cc2011-04-07 08:16:10 +02001037static void iommu_flush_dte_all(struct amd_iommu *iommu)
1038{
1039 u32 devid;
1040
1041 for (devid = 0; devid <= 0xffff; ++devid)
1042 iommu_flush_dte(iommu, devid);
1043
1044 iommu_completion_wait(iommu);
Joerg Roedela19ae1e2008-06-26 21:27:55 +02001045}
1046
1047/*
Joerg Roedel7d0c5cc2011-04-07 08:16:10 +02001048 * This function uses heavy locking and may disable irqs for some time. But
1049 * this is no issue because it is only called during resume.
Joerg Roedela19ae1e2008-06-26 21:27:55 +02001050 */
Joerg Roedel7d0c5cc2011-04-07 08:16:10 +02001051static void iommu_flush_tlb_all(struct amd_iommu *iommu)
Joerg Roedela19ae1e2008-06-26 21:27:55 +02001052{
Joerg Roedel7d0c5cc2011-04-07 08:16:10 +02001053 u32 dom_id;
Joerg Roedela19ae1e2008-06-26 21:27:55 +02001054
Joerg Roedel7d0c5cc2011-04-07 08:16:10 +02001055 for (dom_id = 0; dom_id <= 0xffff; ++dom_id) {
1056 struct iommu_cmd cmd;
1057 build_inv_iommu_pages(&cmd, 0, CMD_INV_IOMMU_ALL_PAGES_ADDRESS,
1058 dom_id, 1);
1059 iommu_queue_command(iommu, &cmd);
1060 }
Joerg Roedel431b2a22008-07-11 17:14:22 +02001061
Joerg Roedel7d0c5cc2011-04-07 08:16:10 +02001062 iommu_completion_wait(iommu);
Joerg Roedela19ae1e2008-06-26 21:27:55 +02001063}
1064
Joerg Roedel58fc7f12011-04-11 11:13:24 +02001065static void iommu_flush_all(struct amd_iommu *iommu)
1066{
1067 struct iommu_cmd cmd;
1068
1069 build_inv_all(&cmd);
1070
1071 iommu_queue_command(iommu, &cmd);
1072 iommu_completion_wait(iommu);
1073}
1074
Joerg Roedel7ef27982012-06-21 16:46:04 +02001075static void iommu_flush_irt(struct amd_iommu *iommu, u16 devid)
1076{
1077 struct iommu_cmd cmd;
1078
1079 build_inv_irt(&cmd, devid);
1080
1081 iommu_queue_command(iommu, &cmd);
1082}
1083
1084static void iommu_flush_irt_all(struct amd_iommu *iommu)
1085{
1086 u32 devid;
1087
1088 for (devid = 0; devid <= MAX_DEV_TABLE_ENTRIES; devid++)
1089 iommu_flush_irt(iommu, devid);
1090
1091 iommu_completion_wait(iommu);
1092}
1093
Joerg Roedel7d0c5cc2011-04-07 08:16:10 +02001094void iommu_flush_all_caches(struct amd_iommu *iommu)
1095{
Joerg Roedel58fc7f12011-04-11 11:13:24 +02001096 if (iommu_feature(iommu, FEATURE_IA)) {
1097 iommu_flush_all(iommu);
1098 } else {
1099 iommu_flush_dte_all(iommu);
Joerg Roedel7ef27982012-06-21 16:46:04 +02001100 iommu_flush_irt_all(iommu);
Joerg Roedel58fc7f12011-04-11 11:13:24 +02001101 iommu_flush_tlb_all(iommu);
1102 }
Joerg Roedel7d0c5cc2011-04-07 08:16:10 +02001103}
1104
Joerg Roedel431b2a22008-07-11 17:14:22 +02001105/*
Joerg Roedelcb41ed82011-04-05 11:00:53 +02001106 * Command send function for flushing on-device TLB
1107 */
Joerg Roedel6c542042011-06-09 17:07:31 +02001108static int device_flush_iotlb(struct iommu_dev_data *dev_data,
1109 u64 address, size_t size)
Joerg Roedelcb41ed82011-04-05 11:00:53 +02001110{
Joerg Roedelcb41ed82011-04-05 11:00:53 +02001111 struct amd_iommu *iommu;
1112 struct iommu_cmd cmd;
Joerg Roedelcb41ed82011-04-05 11:00:53 +02001113 int qdep;
1114
Joerg Roedelea61cdd2011-06-09 12:56:30 +02001115 qdep = dev_data->ats.qdep;
1116 iommu = amd_iommu_rlookup_table[dev_data->devid];
Joerg Roedelcb41ed82011-04-05 11:00:53 +02001117
Joerg Roedelea61cdd2011-06-09 12:56:30 +02001118 build_inv_iotlb_pages(&cmd, dev_data->devid, qdep, address, size);
Joerg Roedelcb41ed82011-04-05 11:00:53 +02001119
1120 return iommu_queue_command(iommu, &cmd);
1121}
1122
1123/*
Joerg Roedel431b2a22008-07-11 17:14:22 +02001124 * Command send function for invalidating a device table entry
1125 */
Joerg Roedel6c542042011-06-09 17:07:31 +02001126static int device_flush_dte(struct iommu_dev_data *dev_data)
Joerg Roedel3fa43652009-11-26 15:04:38 +01001127{
1128 struct amd_iommu *iommu;
Joerg Roedelcb41ed82011-04-05 11:00:53 +02001129 int ret;
Joerg Roedel3fa43652009-11-26 15:04:38 +01001130
Joerg Roedel6c542042011-06-09 17:07:31 +02001131 iommu = amd_iommu_rlookup_table[dev_data->devid];
Joerg Roedel3fa43652009-11-26 15:04:38 +01001132
Joerg Roedelf62dda62011-06-09 12:55:35 +02001133 ret = iommu_flush_dte(iommu, dev_data->devid);
Joerg Roedelcb41ed82011-04-05 11:00:53 +02001134 if (ret)
1135 return ret;
1136
Joerg Roedelea61cdd2011-06-09 12:56:30 +02001137 if (dev_data->ats.enabled)
Joerg Roedel6c542042011-06-09 17:07:31 +02001138 ret = device_flush_iotlb(dev_data, 0, ~0UL);
Joerg Roedelcb41ed82011-04-05 11:00:53 +02001139
1140 return ret;
Joerg Roedel3fa43652009-11-26 15:04:38 +01001141}
1142
Joerg Roedel431b2a22008-07-11 17:14:22 +02001143/*
1144 * TLB invalidation function which is called from the mapping functions.
1145 * It invalidates a single PTE if the range to flush is within a single
1146 * page. Otherwise it flushes the whole TLB of the IOMMU.
1147 */
Joerg Roedel17b124b2011-04-06 18:01:35 +02001148static void __domain_flush_pages(struct protection_domain *domain,
1149 u64 address, size_t size, int pde)
Joerg Roedela19ae1e2008-06-26 21:27:55 +02001150{
Joerg Roedelcb41ed82011-04-05 11:00:53 +02001151 struct iommu_dev_data *dev_data;
Joerg Roedel11b64022011-04-06 11:49:28 +02001152 struct iommu_cmd cmd;
1153 int ret = 0, i;
Joerg Roedela19ae1e2008-06-26 21:27:55 +02001154
Joerg Roedel11b64022011-04-06 11:49:28 +02001155 build_inv_iommu_pages(&cmd, address, size, domain->id, pde);
Joerg Roedel999ba412008-07-03 19:35:08 +02001156
Joerg Roedel6de8ad92009-11-23 18:30:32 +01001157 for (i = 0; i < amd_iommus_present; ++i) {
1158 if (!domain->dev_iommu[i])
1159 continue;
1160
1161 /*
1162 * Devices of this domain are behind this IOMMU
1163 * We need a TLB flush
1164 */
Joerg Roedel11b64022011-04-06 11:49:28 +02001165 ret |= iommu_queue_command(amd_iommus[i], &cmd);
Joerg Roedel6de8ad92009-11-23 18:30:32 +01001166 }
1167
Joerg Roedelcb41ed82011-04-05 11:00:53 +02001168 list_for_each_entry(dev_data, &domain->dev_list, list) {
Joerg Roedelcb41ed82011-04-05 11:00:53 +02001169
Joerg Roedelea61cdd2011-06-09 12:56:30 +02001170 if (!dev_data->ats.enabled)
Joerg Roedelcb41ed82011-04-05 11:00:53 +02001171 continue;
1172
Joerg Roedel6c542042011-06-09 17:07:31 +02001173 ret |= device_flush_iotlb(dev_data, address, size);
Joerg Roedelcb41ed82011-04-05 11:00:53 +02001174 }
1175
Joerg Roedel11b64022011-04-06 11:49:28 +02001176 WARN_ON(ret);
Joerg Roedel6de8ad92009-11-23 18:30:32 +01001177}
1178
Joerg Roedel17b124b2011-04-06 18:01:35 +02001179static void domain_flush_pages(struct protection_domain *domain,
1180 u64 address, size_t size)
Joerg Roedel6de8ad92009-11-23 18:30:32 +01001181{
Joerg Roedel17b124b2011-04-06 18:01:35 +02001182 __domain_flush_pages(domain, address, size, 0);
Joerg Roedela19ae1e2008-06-26 21:27:55 +02001183}
Joerg Roedelb6c02712008-06-26 21:27:53 +02001184
Joerg Roedel1c655772008-09-04 18:40:05 +02001185/* Flush the whole IO/TLB for a given protection domain */
Joerg Roedel17b124b2011-04-06 18:01:35 +02001186static void domain_flush_tlb(struct protection_domain *domain)
Joerg Roedel1c655772008-09-04 18:40:05 +02001187{
Joerg Roedel17b124b2011-04-06 18:01:35 +02001188 __domain_flush_pages(domain, 0, CMD_INV_IOMMU_ALL_PAGES_ADDRESS, 0);
Joerg Roedel1c655772008-09-04 18:40:05 +02001189}
1190
Chris Wright42a49f92009-06-15 15:42:00 +02001191/* Flush the whole IO/TLB for a given protection domain - including PDE */
Joerg Roedel17b124b2011-04-06 18:01:35 +02001192static void domain_flush_tlb_pde(struct protection_domain *domain)
Chris Wright42a49f92009-06-15 15:42:00 +02001193{
Joerg Roedel17b124b2011-04-06 18:01:35 +02001194 __domain_flush_pages(domain, 0, CMD_INV_IOMMU_ALL_PAGES_ADDRESS, 1);
1195}
1196
1197static void domain_flush_complete(struct protection_domain *domain)
Joerg Roedelb6c02712008-06-26 21:27:53 +02001198{
1199 int i;
1200
1201 for (i = 0; i < amd_iommus_present; ++i) {
1202 if (!domain->dev_iommu[i])
1203 continue;
1204
1205 /*
1206 * Devices of this domain are behind this IOMMU
1207 * We need to wait for completion of all commands.
1208 */
1209 iommu_completion_wait(amd_iommus[i]);
1210 }
1211}
1212
Joerg Roedelb00d3bc2009-11-26 15:35:33 +01001213
Joerg Roedel43f49602008-12-02 21:01:12 +01001214/*
Joerg Roedelb00d3bc2009-11-26 15:35:33 +01001215 * This function flushes the DTEs for all devices in domain
Joerg Roedel43f49602008-12-02 21:01:12 +01001216 */
Joerg Roedel17b124b2011-04-06 18:01:35 +02001217static void domain_flush_devices(struct protection_domain *domain)
Joerg Roedelbfd1be12009-05-05 15:33:57 +02001218{
Joerg Roedelb00d3bc2009-11-26 15:35:33 +01001219 struct iommu_dev_data *dev_data;
Joerg Roedelb00d3bc2009-11-26 15:35:33 +01001220
1221 list_for_each_entry(dev_data, &domain->dev_list, list)
Joerg Roedel6c542042011-06-09 17:07:31 +02001222 device_flush_dte(dev_data);
Joerg Roedelb00d3bc2009-11-26 15:35:33 +01001223}
1224
Joerg Roedel431b2a22008-07-11 17:14:22 +02001225/****************************************************************************
1226 *
1227 * The functions below are used the create the page table mappings for
1228 * unity mapped regions.
1229 *
1230 ****************************************************************************/
1231
1232/*
Joerg Roedel308973d2009-11-24 17:43:32 +01001233 * This function is used to add another level to an IO page table. Adding
1234 * another level increases the size of the address space by 9 bits to a size up
1235 * to 64 bits.
1236 */
1237static bool increase_address_space(struct protection_domain *domain,
1238 gfp_t gfp)
1239{
1240 u64 *pte;
1241
1242 if (domain->mode == PAGE_MODE_6_LEVEL)
1243 /* address space already 64 bit large */
1244 return false;
1245
1246 pte = (void *)get_zeroed_page(gfp);
1247 if (!pte)
1248 return false;
1249
1250 *pte = PM_LEVEL_PDE(domain->mode,
1251 virt_to_phys(domain->pt_root));
1252 domain->pt_root = pte;
1253 domain->mode += 1;
1254 domain->updated = true;
1255
1256 return true;
1257}
1258
1259static u64 *alloc_pte(struct protection_domain *domain,
1260 unsigned long address,
Joerg Roedelcbb9d722010-01-15 14:41:15 +01001261 unsigned long page_size,
Joerg Roedel308973d2009-11-24 17:43:32 +01001262 u64 **pte_page,
1263 gfp_t gfp)
1264{
Joerg Roedelcbb9d722010-01-15 14:41:15 +01001265 int level, end_lvl;
Joerg Roedel308973d2009-11-24 17:43:32 +01001266 u64 *pte, *page;
Joerg Roedelcbb9d722010-01-15 14:41:15 +01001267
1268 BUG_ON(!is_power_of_2(page_size));
Joerg Roedel308973d2009-11-24 17:43:32 +01001269
1270 while (address > PM_LEVEL_SIZE(domain->mode))
1271 increase_address_space(domain, gfp);
1272
Joerg Roedelcbb9d722010-01-15 14:41:15 +01001273 level = domain->mode - 1;
1274 pte = &domain->pt_root[PM_LEVEL_INDEX(level, address)];
1275 address = PAGE_SIZE_ALIGN(address, page_size);
1276 end_lvl = PAGE_SIZE_LEVEL(page_size);
Joerg Roedel308973d2009-11-24 17:43:32 +01001277
1278 while (level > end_lvl) {
1279 if (!IOMMU_PTE_PRESENT(*pte)) {
1280 page = (u64 *)get_zeroed_page(gfp);
1281 if (!page)
1282 return NULL;
1283 *pte = PM_LEVEL_PDE(level, virt_to_phys(page));
1284 }
1285
Joerg Roedelcbb9d722010-01-15 14:41:15 +01001286 /* No level skipping support yet */
1287 if (PM_PTE_LEVEL(*pte) != level)
1288 return NULL;
1289
Joerg Roedel308973d2009-11-24 17:43:32 +01001290 level -= 1;
1291
1292 pte = IOMMU_PTE_PAGE(*pte);
1293
1294 if (pte_page && level == end_lvl)
1295 *pte_page = pte;
1296
1297 pte = &pte[PM_LEVEL_INDEX(level, address)];
1298 }
1299
1300 return pte;
1301}
1302
1303/*
1304 * This function checks if there is a PTE for a given dma address. If
1305 * there is one, it returns the pointer to it.
1306 */
Joerg Roedel24cd7722010-01-19 17:27:39 +01001307static u64 *fetch_pte(struct protection_domain *domain, unsigned long address)
Joerg Roedel308973d2009-11-24 17:43:32 +01001308{
1309 int level;
1310 u64 *pte;
1311
Joerg Roedel24cd7722010-01-19 17:27:39 +01001312 if (address > PM_LEVEL_SIZE(domain->mode))
1313 return NULL;
Joerg Roedel308973d2009-11-24 17:43:32 +01001314
Joerg Roedel24cd7722010-01-19 17:27:39 +01001315 level = domain->mode - 1;
1316 pte = &domain->pt_root[PM_LEVEL_INDEX(level, address)];
1317
1318 while (level > 0) {
1319
1320 /* Not Present */
Joerg Roedel308973d2009-11-24 17:43:32 +01001321 if (!IOMMU_PTE_PRESENT(*pte))
1322 return NULL;
1323
Joerg Roedel24cd7722010-01-19 17:27:39 +01001324 /* Large PTE */
1325 if (PM_PTE_LEVEL(*pte) == 0x07) {
1326 unsigned long pte_mask, __pte;
1327
1328 /*
1329 * If we have a series of large PTEs, make
1330 * sure to return a pointer to the first one.
1331 */
1332 pte_mask = PTE_PAGE_SIZE(*pte);
1333 pte_mask = ~((PAGE_SIZE_PTE_COUNT(pte_mask) << 3) - 1);
1334 __pte = ((unsigned long)pte) & pte_mask;
1335
1336 return (u64 *)__pte;
1337 }
1338
1339 /* No level skipping support yet */
1340 if (PM_PTE_LEVEL(*pte) != level)
1341 return NULL;
1342
Joerg Roedel308973d2009-11-24 17:43:32 +01001343 level -= 1;
1344
Joerg Roedel24cd7722010-01-19 17:27:39 +01001345 /* Walk to the next level */
Joerg Roedel308973d2009-11-24 17:43:32 +01001346 pte = IOMMU_PTE_PAGE(*pte);
1347 pte = &pte[PM_LEVEL_INDEX(level, address)];
Joerg Roedel308973d2009-11-24 17:43:32 +01001348 }
1349
1350 return pte;
1351}
1352
1353/*
Joerg Roedel431b2a22008-07-11 17:14:22 +02001354 * Generic mapping functions. It maps a physical address into a DMA
1355 * address space. It allocates the page table pages if necessary.
1356 * In the future it can be extended to a generic mapping function
1357 * supporting all features of AMD IOMMU page tables like level skipping
1358 * and full 64 bit address spaces.
1359 */
Joerg Roedel38e817f2008-12-02 17:27:52 +01001360static int iommu_map_page(struct protection_domain *dom,
1361 unsigned long bus_addr,
1362 unsigned long phys_addr,
Joerg Roedelabdc5eb2009-09-03 11:33:51 +02001363 int prot,
Joerg Roedelcbb9d722010-01-15 14:41:15 +01001364 unsigned long page_size)
Joerg Roedelbd0e5212008-06-26 21:27:56 +02001365{
Joerg Roedel8bda3092009-05-12 12:02:46 +02001366 u64 __pte, *pte;
Joerg Roedelcbb9d722010-01-15 14:41:15 +01001367 int i, count;
Joerg Roedelabdc5eb2009-09-03 11:33:51 +02001368
Joerg Roedelbad1cac2009-09-02 16:52:23 +02001369 if (!(prot & IOMMU_PROT_MASK))
Joerg Roedelbd0e5212008-06-26 21:27:56 +02001370 return -EINVAL;
1371
Joerg Roedelcbb9d722010-01-15 14:41:15 +01001372 bus_addr = PAGE_ALIGN(bus_addr);
1373 phys_addr = PAGE_ALIGN(phys_addr);
1374 count = PAGE_SIZE_PTE_COUNT(page_size);
1375 pte = alloc_pte(dom, bus_addr, page_size, NULL, GFP_KERNEL);
Joerg Roedelbd0e5212008-06-26 21:27:56 +02001376
Joerg Roedelcbb9d722010-01-15 14:41:15 +01001377 for (i = 0; i < count; ++i)
1378 if (IOMMU_PTE_PRESENT(pte[i]))
1379 return -EBUSY;
Joerg Roedelbd0e5212008-06-26 21:27:56 +02001380
Joerg Roedelcbb9d722010-01-15 14:41:15 +01001381 if (page_size > PAGE_SIZE) {
1382 __pte = PAGE_SIZE_PTE(phys_addr, page_size);
1383 __pte |= PM_LEVEL_ENC(7) | IOMMU_PTE_P | IOMMU_PTE_FC;
1384 } else
1385 __pte = phys_addr | IOMMU_PTE_P | IOMMU_PTE_FC;
1386
Joerg Roedelbd0e5212008-06-26 21:27:56 +02001387 if (prot & IOMMU_PROT_IR)
1388 __pte |= IOMMU_PTE_IR;
1389 if (prot & IOMMU_PROT_IW)
1390 __pte |= IOMMU_PTE_IW;
1391
Joerg Roedelcbb9d722010-01-15 14:41:15 +01001392 for (i = 0; i < count; ++i)
1393 pte[i] = __pte;
Joerg Roedelbd0e5212008-06-26 21:27:56 +02001394
Joerg Roedel04bfdd82009-09-02 16:00:23 +02001395 update_domain(dom);
1396
Joerg Roedelbd0e5212008-06-26 21:27:56 +02001397 return 0;
1398}
1399
Joerg Roedel24cd7722010-01-19 17:27:39 +01001400static unsigned long iommu_unmap_page(struct protection_domain *dom,
1401 unsigned long bus_addr,
1402 unsigned long page_size)
Joerg Roedeleb74ff62008-12-02 19:59:10 +01001403{
Joerg Roedel24cd7722010-01-19 17:27:39 +01001404 unsigned long long unmap_size, unmapped;
1405 u64 *pte;
Joerg Roedeleb74ff62008-12-02 19:59:10 +01001406
Joerg Roedel24cd7722010-01-19 17:27:39 +01001407 BUG_ON(!is_power_of_2(page_size));
1408
1409 unmapped = 0;
1410
1411 while (unmapped < page_size) {
1412
1413 pte = fetch_pte(dom, bus_addr);
1414
1415 if (!pte) {
1416 /*
1417 * No PTE for this address
1418 * move forward in 4kb steps
1419 */
1420 unmap_size = PAGE_SIZE;
1421 } else if (PM_PTE_LEVEL(*pte) == 0) {
1422 /* 4kb PTE found for this address */
1423 unmap_size = PAGE_SIZE;
1424 *pte = 0ULL;
1425 } else {
1426 int count, i;
1427
1428 /* Large PTE found which maps this address */
1429 unmap_size = PTE_PAGE_SIZE(*pte);
1430 count = PAGE_SIZE_PTE_COUNT(unmap_size);
1431 for (i = 0; i < count; i++)
1432 pte[i] = 0ULL;
1433 }
1434
1435 bus_addr = (bus_addr & ~(unmap_size - 1)) + unmap_size;
1436 unmapped += unmap_size;
1437 }
1438
1439 BUG_ON(!is_power_of_2(unmapped));
1440
1441 return unmapped;
Joerg Roedeleb74ff62008-12-02 19:59:10 +01001442}
Joerg Roedeleb74ff62008-12-02 19:59:10 +01001443
Joerg Roedel431b2a22008-07-11 17:14:22 +02001444/*
1445 * This function checks if a specific unity mapping entry is needed for
1446 * this specific IOMMU.
1447 */
Joerg Roedelbd0e5212008-06-26 21:27:56 +02001448static int iommu_for_unity_map(struct amd_iommu *iommu,
1449 struct unity_map_entry *entry)
1450{
1451 u16 bdf, i;
1452
1453 for (i = entry->devid_start; i <= entry->devid_end; ++i) {
1454 bdf = amd_iommu_alias_table[i];
1455 if (amd_iommu_rlookup_table[bdf] == iommu)
1456 return 1;
1457 }
1458
1459 return 0;
1460}
1461
Joerg Roedel431b2a22008-07-11 17:14:22 +02001462/*
Joerg Roedel431b2a22008-07-11 17:14:22 +02001463 * This function actually applies the mapping to the page table of the
1464 * dma_ops domain.
1465 */
Joerg Roedelbd0e5212008-06-26 21:27:56 +02001466static int dma_ops_unity_map(struct dma_ops_domain *dma_dom,
1467 struct unity_map_entry *e)
1468{
1469 u64 addr;
1470 int ret;
1471
1472 for (addr = e->address_start; addr < e->address_end;
1473 addr += PAGE_SIZE) {
Joerg Roedelabdc5eb2009-09-03 11:33:51 +02001474 ret = iommu_map_page(&dma_dom->domain, addr, addr, e->prot,
Joerg Roedelcbb9d722010-01-15 14:41:15 +01001475 PAGE_SIZE);
Joerg Roedelbd0e5212008-06-26 21:27:56 +02001476 if (ret)
1477 return ret;
1478 /*
1479 * if unity mapping is in aperture range mark the page
1480 * as allocated in the aperture
1481 */
1482 if (addr < dma_dom->aperture_size)
Joerg Roedelc3239562009-05-12 10:56:44 +02001483 __set_bit(addr >> PAGE_SHIFT,
Joerg Roedel384de722009-05-15 12:30:05 +02001484 dma_dom->aperture[0]->bitmap);
Joerg Roedelbd0e5212008-06-26 21:27:56 +02001485 }
1486
1487 return 0;
1488}
1489
Joerg Roedel431b2a22008-07-11 17:14:22 +02001490/*
Joerg Roedel171e7b32009-11-24 17:47:56 +01001491 * Init the unity mappings for a specific IOMMU in the system
1492 *
1493 * Basically iterates over all unity mapping entries and applies them to
1494 * the default domain DMA of that IOMMU if necessary.
1495 */
1496static int iommu_init_unity_mappings(struct amd_iommu *iommu)
1497{
1498 struct unity_map_entry *entry;
1499 int ret;
1500
1501 list_for_each_entry(entry, &amd_iommu_unity_map, list) {
1502 if (!iommu_for_unity_map(iommu, entry))
1503 continue;
1504 ret = dma_ops_unity_map(iommu->default_dom, entry);
1505 if (ret)
1506 return ret;
1507 }
1508
1509 return 0;
1510}
1511
1512/*
Joerg Roedel431b2a22008-07-11 17:14:22 +02001513 * Inits the unity mappings required for a specific device
1514 */
Joerg Roedelbd0e5212008-06-26 21:27:56 +02001515static int init_unity_mappings_for_device(struct dma_ops_domain *dma_dom,
1516 u16 devid)
1517{
1518 struct unity_map_entry *e;
1519 int ret;
1520
1521 list_for_each_entry(e, &amd_iommu_unity_map, list) {
1522 if (!(devid >= e->devid_start && devid <= e->devid_end))
1523 continue;
1524 ret = dma_ops_unity_map(dma_dom, e);
1525 if (ret)
1526 return ret;
1527 }
1528
1529 return 0;
1530}
1531
Joerg Roedel431b2a22008-07-11 17:14:22 +02001532/****************************************************************************
1533 *
1534 * The next functions belong to the address allocator for the dma_ops
1535 * interface functions. They work like the allocators in the other IOMMU
1536 * drivers. Its basically a bitmap which marks the allocated pages in
1537 * the aperture. Maybe it could be enhanced in the future to a more
1538 * efficient allocator.
1539 *
1540 ****************************************************************************/
Joerg Roedeld3086442008-06-26 21:27:57 +02001541
Joerg Roedel431b2a22008-07-11 17:14:22 +02001542/*
Joerg Roedel384de722009-05-15 12:30:05 +02001543 * The address allocator core functions.
Joerg Roedel431b2a22008-07-11 17:14:22 +02001544 *
1545 * called with domain->lock held
1546 */
Joerg Roedel384de722009-05-15 12:30:05 +02001547
Joerg Roedel9cabe892009-05-18 16:38:55 +02001548/*
Joerg Roedel171e7b32009-11-24 17:47:56 +01001549 * Used to reserve address ranges in the aperture (e.g. for exclusion
1550 * ranges.
1551 */
1552static void dma_ops_reserve_addresses(struct dma_ops_domain *dom,
1553 unsigned long start_page,
1554 unsigned int pages)
1555{
1556 unsigned int i, last_page = dom->aperture_size >> PAGE_SHIFT;
1557
1558 if (start_page + pages > last_page)
1559 pages = last_page - start_page;
1560
1561 for (i = start_page; i < start_page + pages; ++i) {
1562 int index = i / APERTURE_RANGE_PAGES;
1563 int page = i % APERTURE_RANGE_PAGES;
1564 __set_bit(page, dom->aperture[index]->bitmap);
1565 }
1566}
1567
1568/*
Joerg Roedel9cabe892009-05-18 16:38:55 +02001569 * This function is used to add a new aperture range to an existing
1570 * aperture in case of dma_ops domain allocation or address allocation
1571 * failure.
1572 */
Joerg Roedel576175c2009-11-23 19:08:46 +01001573static int alloc_new_range(struct dma_ops_domain *dma_dom,
Joerg Roedel9cabe892009-05-18 16:38:55 +02001574 bool populate, gfp_t gfp)
1575{
1576 int index = dma_dom->aperture_size >> APERTURE_RANGE_SHIFT;
Joerg Roedel576175c2009-11-23 19:08:46 +01001577 struct amd_iommu *iommu;
Joerg Roedel17f5b562011-07-06 17:14:44 +02001578 unsigned long i, old_size;
Joerg Roedel9cabe892009-05-18 16:38:55 +02001579
Joerg Roedelf5e97052009-05-22 12:31:53 +02001580#ifdef CONFIG_IOMMU_STRESS
1581 populate = false;
1582#endif
1583
Joerg Roedel9cabe892009-05-18 16:38:55 +02001584 if (index >= APERTURE_MAX_RANGES)
1585 return -ENOMEM;
1586
1587 dma_dom->aperture[index] = kzalloc(sizeof(struct aperture_range), gfp);
1588 if (!dma_dom->aperture[index])
1589 return -ENOMEM;
1590
1591 dma_dom->aperture[index]->bitmap = (void *)get_zeroed_page(gfp);
1592 if (!dma_dom->aperture[index]->bitmap)
1593 goto out_free;
1594
1595 dma_dom->aperture[index]->offset = dma_dom->aperture_size;
1596
1597 if (populate) {
1598 unsigned long address = dma_dom->aperture_size;
1599 int i, num_ptes = APERTURE_RANGE_PAGES / 512;
1600 u64 *pte, *pte_page;
1601
1602 for (i = 0; i < num_ptes; ++i) {
Joerg Roedelcbb9d722010-01-15 14:41:15 +01001603 pte = alloc_pte(&dma_dom->domain, address, PAGE_SIZE,
Joerg Roedel9cabe892009-05-18 16:38:55 +02001604 &pte_page, gfp);
1605 if (!pte)
1606 goto out_free;
1607
1608 dma_dom->aperture[index]->pte_pages[i] = pte_page;
1609
1610 address += APERTURE_RANGE_SIZE / 64;
1611 }
1612 }
1613
Joerg Roedel17f5b562011-07-06 17:14:44 +02001614 old_size = dma_dom->aperture_size;
Joerg Roedel9cabe892009-05-18 16:38:55 +02001615 dma_dom->aperture_size += APERTURE_RANGE_SIZE;
1616
Joerg Roedel17f5b562011-07-06 17:14:44 +02001617 /* Reserve address range used for MSI messages */
1618 if (old_size < MSI_ADDR_BASE_LO &&
1619 dma_dom->aperture_size > MSI_ADDR_BASE_LO) {
1620 unsigned long spage;
1621 int pages;
1622
1623 pages = iommu_num_pages(MSI_ADDR_BASE_LO, 0x10000, PAGE_SIZE);
1624 spage = MSI_ADDR_BASE_LO >> PAGE_SHIFT;
1625
1626 dma_ops_reserve_addresses(dma_dom, spage, pages);
1627 }
1628
Uwe Kleine-Königb5950762010-11-01 15:38:34 -04001629 /* Initialize the exclusion range if necessary */
Joerg Roedel576175c2009-11-23 19:08:46 +01001630 for_each_iommu(iommu) {
1631 if (iommu->exclusion_start &&
1632 iommu->exclusion_start >= dma_dom->aperture[index]->offset
1633 && iommu->exclusion_start < dma_dom->aperture_size) {
1634 unsigned long startpage;
1635 int pages = iommu_num_pages(iommu->exclusion_start,
1636 iommu->exclusion_length,
1637 PAGE_SIZE);
1638 startpage = iommu->exclusion_start >> PAGE_SHIFT;
1639 dma_ops_reserve_addresses(dma_dom, startpage, pages);
1640 }
Joerg Roedel00cd1222009-05-19 09:52:40 +02001641 }
1642
1643 /*
1644 * Check for areas already mapped as present in the new aperture
1645 * range and mark those pages as reserved in the allocator. Such
1646 * mappings may already exist as a result of requested unity
1647 * mappings for devices.
1648 */
1649 for (i = dma_dom->aperture[index]->offset;
1650 i < dma_dom->aperture_size;
1651 i += PAGE_SIZE) {
Joerg Roedel24cd7722010-01-19 17:27:39 +01001652 u64 *pte = fetch_pte(&dma_dom->domain, i);
Joerg Roedel00cd1222009-05-19 09:52:40 +02001653 if (!pte || !IOMMU_PTE_PRESENT(*pte))
1654 continue;
1655
Joerg Roedelfcd08612011-10-11 17:41:32 +02001656 dma_ops_reserve_addresses(dma_dom, i >> PAGE_SHIFT, 1);
Joerg Roedel00cd1222009-05-19 09:52:40 +02001657 }
1658
Joerg Roedel04bfdd82009-09-02 16:00:23 +02001659 update_domain(&dma_dom->domain);
1660
Joerg Roedel9cabe892009-05-18 16:38:55 +02001661 return 0;
1662
1663out_free:
Joerg Roedel04bfdd82009-09-02 16:00:23 +02001664 update_domain(&dma_dom->domain);
1665
Joerg Roedel9cabe892009-05-18 16:38:55 +02001666 free_page((unsigned long)dma_dom->aperture[index]->bitmap);
1667
1668 kfree(dma_dom->aperture[index]);
1669 dma_dom->aperture[index] = NULL;
1670
1671 return -ENOMEM;
1672}
1673
Joerg Roedel384de722009-05-15 12:30:05 +02001674static unsigned long dma_ops_area_alloc(struct device *dev,
1675 struct dma_ops_domain *dom,
1676 unsigned int pages,
1677 unsigned long align_mask,
1678 u64 dma_mask,
1679 unsigned long start)
1680{
Joerg Roedel803b8cb2009-05-18 15:32:48 +02001681 unsigned long next_bit = dom->next_address % APERTURE_RANGE_SIZE;
Joerg Roedel384de722009-05-15 12:30:05 +02001682 int max_index = dom->aperture_size >> APERTURE_RANGE_SHIFT;
1683 int i = start >> APERTURE_RANGE_SHIFT;
1684 unsigned long boundary_size;
1685 unsigned long address = -1;
1686 unsigned long limit;
1687
Joerg Roedel803b8cb2009-05-18 15:32:48 +02001688 next_bit >>= PAGE_SHIFT;
1689
Joerg Roedel384de722009-05-15 12:30:05 +02001690 boundary_size = ALIGN(dma_get_seg_boundary(dev) + 1,
1691 PAGE_SIZE) >> PAGE_SHIFT;
1692
1693 for (;i < max_index; ++i) {
1694 unsigned long offset = dom->aperture[i]->offset >> PAGE_SHIFT;
1695
1696 if (dom->aperture[i]->offset >= dma_mask)
1697 break;
1698
1699 limit = iommu_device_max_index(APERTURE_RANGE_PAGES, offset,
1700 dma_mask >> PAGE_SHIFT);
1701
1702 address = iommu_area_alloc(dom->aperture[i]->bitmap,
1703 limit, next_bit, pages, 0,
1704 boundary_size, align_mask);
1705 if (address != -1) {
1706 address = dom->aperture[i]->offset +
1707 (address << PAGE_SHIFT);
Joerg Roedel803b8cb2009-05-18 15:32:48 +02001708 dom->next_address = address + (pages << PAGE_SHIFT);
Joerg Roedel384de722009-05-15 12:30:05 +02001709 break;
1710 }
1711
1712 next_bit = 0;
1713 }
1714
1715 return address;
1716}
1717
Joerg Roedeld3086442008-06-26 21:27:57 +02001718static unsigned long dma_ops_alloc_addresses(struct device *dev,
1719 struct dma_ops_domain *dom,
Joerg Roedel6d4f3432008-09-04 19:18:02 +02001720 unsigned int pages,
Joerg Roedel832a90c2008-09-18 15:54:23 +02001721 unsigned long align_mask,
1722 u64 dma_mask)
Joerg Roedeld3086442008-06-26 21:27:57 +02001723{
Joerg Roedeld3086442008-06-26 21:27:57 +02001724 unsigned long address;
Joerg Roedeld3086442008-06-26 21:27:57 +02001725
Joerg Roedelfe16f082009-05-22 12:27:53 +02001726#ifdef CONFIG_IOMMU_STRESS
1727 dom->next_address = 0;
1728 dom->need_flush = true;
1729#endif
Joerg Roedeld3086442008-06-26 21:27:57 +02001730
Joerg Roedel384de722009-05-15 12:30:05 +02001731 address = dma_ops_area_alloc(dev, dom, pages, align_mask,
Joerg Roedel803b8cb2009-05-18 15:32:48 +02001732 dma_mask, dom->next_address);
Joerg Roedeld3086442008-06-26 21:27:57 +02001733
Joerg Roedel1c655772008-09-04 18:40:05 +02001734 if (address == -1) {
Joerg Roedel803b8cb2009-05-18 15:32:48 +02001735 dom->next_address = 0;
Joerg Roedel384de722009-05-15 12:30:05 +02001736 address = dma_ops_area_alloc(dev, dom, pages, align_mask,
1737 dma_mask, 0);
Joerg Roedel1c655772008-09-04 18:40:05 +02001738 dom->need_flush = true;
1739 }
Joerg Roedeld3086442008-06-26 21:27:57 +02001740
Joerg Roedel384de722009-05-15 12:30:05 +02001741 if (unlikely(address == -1))
FUJITA Tomonori8fd524b2009-11-15 21:19:53 +09001742 address = DMA_ERROR_CODE;
Joerg Roedeld3086442008-06-26 21:27:57 +02001743
1744 WARN_ON((address + (PAGE_SIZE*pages)) > dom->aperture_size);
1745
1746 return address;
1747}
1748
Joerg Roedel431b2a22008-07-11 17:14:22 +02001749/*
1750 * The address free function.
1751 *
1752 * called with domain->lock held
1753 */
Joerg Roedeld3086442008-06-26 21:27:57 +02001754static void dma_ops_free_addresses(struct dma_ops_domain *dom,
1755 unsigned long address,
1756 unsigned int pages)
1757{
Joerg Roedel384de722009-05-15 12:30:05 +02001758 unsigned i = address >> APERTURE_RANGE_SHIFT;
1759 struct aperture_range *range = dom->aperture[i];
Joerg Roedel80be3082008-11-06 14:59:05 +01001760
Joerg Roedel384de722009-05-15 12:30:05 +02001761 BUG_ON(i >= APERTURE_MAX_RANGES || range == NULL);
1762
Joerg Roedel47bccd62009-05-22 12:40:54 +02001763#ifdef CONFIG_IOMMU_STRESS
1764 if (i < 4)
1765 return;
1766#endif
1767
Joerg Roedel803b8cb2009-05-18 15:32:48 +02001768 if (address >= dom->next_address)
Joerg Roedel80be3082008-11-06 14:59:05 +01001769 dom->need_flush = true;
Joerg Roedel384de722009-05-15 12:30:05 +02001770
1771 address = (address % APERTURE_RANGE_SIZE) >> PAGE_SHIFT;
Joerg Roedel803b8cb2009-05-18 15:32:48 +02001772
Akinobu Mitaa66022c2009-12-15 16:48:28 -08001773 bitmap_clear(range->bitmap, address, pages);
Joerg Roedel384de722009-05-15 12:30:05 +02001774
Joerg Roedeld3086442008-06-26 21:27:57 +02001775}
1776
Joerg Roedel431b2a22008-07-11 17:14:22 +02001777/****************************************************************************
1778 *
1779 * The next functions belong to the domain allocation. A domain is
1780 * allocated for every IOMMU as the default domain. If device isolation
1781 * is enabled, every device get its own domain. The most important thing
1782 * about domains is the page table mapping the DMA address space they
1783 * contain.
1784 *
1785 ****************************************************************************/
1786
Joerg Roedelaeb26f52009-11-20 16:44:01 +01001787/*
1788 * This function adds a protection domain to the global protection domain list
1789 */
1790static void add_domain_to_list(struct protection_domain *domain)
1791{
1792 unsigned long flags;
1793
1794 spin_lock_irqsave(&amd_iommu_pd_lock, flags);
1795 list_add(&domain->list, &amd_iommu_pd_list);
1796 spin_unlock_irqrestore(&amd_iommu_pd_lock, flags);
1797}
1798
1799/*
1800 * This function removes a protection domain to the global
1801 * protection domain list
1802 */
1803static void del_domain_from_list(struct protection_domain *domain)
1804{
1805 unsigned long flags;
1806
1807 spin_lock_irqsave(&amd_iommu_pd_lock, flags);
1808 list_del(&domain->list);
1809 spin_unlock_irqrestore(&amd_iommu_pd_lock, flags);
1810}
1811
Joerg Roedelec487d12008-06-26 21:27:58 +02001812static u16 domain_id_alloc(void)
1813{
1814 unsigned long flags;
1815 int id;
1816
1817 write_lock_irqsave(&amd_iommu_devtable_lock, flags);
1818 id = find_first_zero_bit(amd_iommu_pd_alloc_bitmap, MAX_DOMAIN_ID);
1819 BUG_ON(id == 0);
1820 if (id > 0 && id < MAX_DOMAIN_ID)
1821 __set_bit(id, amd_iommu_pd_alloc_bitmap);
1822 else
1823 id = 0;
1824 write_unlock_irqrestore(&amd_iommu_devtable_lock, flags);
1825
1826 return id;
1827}
1828
Joerg Roedela2acfb72008-12-02 18:28:53 +01001829static void domain_id_free(int id)
1830{
1831 unsigned long flags;
1832
1833 write_lock_irqsave(&amd_iommu_devtable_lock, flags);
1834 if (id > 0 && id < MAX_DOMAIN_ID)
1835 __clear_bit(id, amd_iommu_pd_alloc_bitmap);
1836 write_unlock_irqrestore(&amd_iommu_devtable_lock, flags);
1837}
Joerg Roedela2acfb72008-12-02 18:28:53 +01001838
Joerg Roedel86db2e52008-12-02 18:20:21 +01001839static void free_pagetable(struct protection_domain *domain)
Joerg Roedelec487d12008-06-26 21:27:58 +02001840{
1841 int i, j;
1842 u64 *p1, *p2, *p3;
1843
Joerg Roedel86db2e52008-12-02 18:20:21 +01001844 p1 = domain->pt_root;
Joerg Roedelec487d12008-06-26 21:27:58 +02001845
1846 if (!p1)
1847 return;
1848
1849 for (i = 0; i < 512; ++i) {
1850 if (!IOMMU_PTE_PRESENT(p1[i]))
1851 continue;
1852
1853 p2 = IOMMU_PTE_PAGE(p1[i]);
Joerg Roedel3cc3d842008-12-04 16:44:31 +01001854 for (j = 0; j < 512; ++j) {
Joerg Roedelec487d12008-06-26 21:27:58 +02001855 if (!IOMMU_PTE_PRESENT(p2[j]))
1856 continue;
1857 p3 = IOMMU_PTE_PAGE(p2[j]);
1858 free_page((unsigned long)p3);
1859 }
1860
1861 free_page((unsigned long)p2);
1862 }
1863
1864 free_page((unsigned long)p1);
Joerg Roedel86db2e52008-12-02 18:20:21 +01001865
1866 domain->pt_root = NULL;
Joerg Roedelec487d12008-06-26 21:27:58 +02001867}
1868
Joerg Roedelb16137b2011-11-21 16:50:23 +01001869static void free_gcr3_tbl_level1(u64 *tbl)
1870{
1871 u64 *ptr;
1872 int i;
1873
1874 for (i = 0; i < 512; ++i) {
1875 if (!(tbl[i] & GCR3_VALID))
1876 continue;
1877
1878 ptr = __va(tbl[i] & PAGE_MASK);
1879
1880 free_page((unsigned long)ptr);
1881 }
1882}
1883
1884static void free_gcr3_tbl_level2(u64 *tbl)
1885{
1886 u64 *ptr;
1887 int i;
1888
1889 for (i = 0; i < 512; ++i) {
1890 if (!(tbl[i] & GCR3_VALID))
1891 continue;
1892
1893 ptr = __va(tbl[i] & PAGE_MASK);
1894
1895 free_gcr3_tbl_level1(ptr);
1896 }
1897}
1898
Joerg Roedel52815b72011-11-17 17:24:28 +01001899static void free_gcr3_table(struct protection_domain *domain)
1900{
Joerg Roedelb16137b2011-11-21 16:50:23 +01001901 if (domain->glx == 2)
1902 free_gcr3_tbl_level2(domain->gcr3_tbl);
1903 else if (domain->glx == 1)
1904 free_gcr3_tbl_level1(domain->gcr3_tbl);
1905 else if (domain->glx != 0)
1906 BUG();
1907
Joerg Roedel52815b72011-11-17 17:24:28 +01001908 free_page((unsigned long)domain->gcr3_tbl);
1909}
1910
Joerg Roedel431b2a22008-07-11 17:14:22 +02001911/*
1912 * Free a domain, only used if something went wrong in the
1913 * allocation path and we need to free an already allocated page table
1914 */
Joerg Roedelec487d12008-06-26 21:27:58 +02001915static void dma_ops_domain_free(struct dma_ops_domain *dom)
1916{
Joerg Roedel384de722009-05-15 12:30:05 +02001917 int i;
1918
Joerg Roedelec487d12008-06-26 21:27:58 +02001919 if (!dom)
1920 return;
1921
Joerg Roedelaeb26f52009-11-20 16:44:01 +01001922 del_domain_from_list(&dom->domain);
1923
Joerg Roedel86db2e52008-12-02 18:20:21 +01001924 free_pagetable(&dom->domain);
Joerg Roedelec487d12008-06-26 21:27:58 +02001925
Joerg Roedel384de722009-05-15 12:30:05 +02001926 for (i = 0; i < APERTURE_MAX_RANGES; ++i) {
1927 if (!dom->aperture[i])
1928 continue;
1929 free_page((unsigned long)dom->aperture[i]->bitmap);
1930 kfree(dom->aperture[i]);
1931 }
Joerg Roedelec487d12008-06-26 21:27:58 +02001932
1933 kfree(dom);
1934}
1935
Joerg Roedel431b2a22008-07-11 17:14:22 +02001936/*
1937 * Allocates a new protection domain usable for the dma_ops functions.
Uwe Kleine-Königb5950762010-11-01 15:38:34 -04001938 * It also initializes the page table and the address allocator data
Joerg Roedel431b2a22008-07-11 17:14:22 +02001939 * structures required for the dma_ops interface
1940 */
Joerg Roedel87a64d52009-11-24 17:26:43 +01001941static struct dma_ops_domain *dma_ops_domain_alloc(void)
Joerg Roedelec487d12008-06-26 21:27:58 +02001942{
1943 struct dma_ops_domain *dma_dom;
Joerg Roedelec487d12008-06-26 21:27:58 +02001944
1945 dma_dom = kzalloc(sizeof(struct dma_ops_domain), GFP_KERNEL);
1946 if (!dma_dom)
1947 return NULL;
1948
1949 spin_lock_init(&dma_dom->domain.lock);
1950
1951 dma_dom->domain.id = domain_id_alloc();
1952 if (dma_dom->domain.id == 0)
1953 goto free_dma_dom;
Joerg Roedel7c392cb2009-11-26 11:13:32 +01001954 INIT_LIST_HEAD(&dma_dom->domain.dev_list);
Joerg Roedel8f7a0172009-09-02 16:55:24 +02001955 dma_dom->domain.mode = PAGE_MODE_2_LEVEL;
Joerg Roedelec487d12008-06-26 21:27:58 +02001956 dma_dom->domain.pt_root = (void *)get_zeroed_page(GFP_KERNEL);
Joerg Roedel9fdb19d2008-12-02 17:46:25 +01001957 dma_dom->domain.flags = PD_DMA_OPS_MASK;
Joerg Roedelec487d12008-06-26 21:27:58 +02001958 dma_dom->domain.priv = dma_dom;
1959 if (!dma_dom->domain.pt_root)
1960 goto free_dma_dom;
Joerg Roedelec487d12008-06-26 21:27:58 +02001961
Joerg Roedel1c655772008-09-04 18:40:05 +02001962 dma_dom->need_flush = false;
Joerg Roedelbd60b732008-09-11 10:24:48 +02001963 dma_dom->target_dev = 0xffff;
Joerg Roedel1c655772008-09-04 18:40:05 +02001964
Joerg Roedelaeb26f52009-11-20 16:44:01 +01001965 add_domain_to_list(&dma_dom->domain);
1966
Joerg Roedel576175c2009-11-23 19:08:46 +01001967 if (alloc_new_range(dma_dom, true, GFP_KERNEL))
Joerg Roedelec487d12008-06-26 21:27:58 +02001968 goto free_dma_dom;
Joerg Roedelec487d12008-06-26 21:27:58 +02001969
Joerg Roedel431b2a22008-07-11 17:14:22 +02001970 /*
Joerg Roedelec487d12008-06-26 21:27:58 +02001971 * mark the first page as allocated so we never return 0 as
1972 * a valid dma-address. So we can use 0 as error value
Joerg Roedel431b2a22008-07-11 17:14:22 +02001973 */
Joerg Roedel384de722009-05-15 12:30:05 +02001974 dma_dom->aperture[0]->bitmap[0] = 1;
Joerg Roedel803b8cb2009-05-18 15:32:48 +02001975 dma_dom->next_address = 0;
Joerg Roedelec487d12008-06-26 21:27:58 +02001976
Joerg Roedelec487d12008-06-26 21:27:58 +02001977
1978 return dma_dom;
1979
1980free_dma_dom:
1981 dma_ops_domain_free(dma_dom);
1982
1983 return NULL;
1984}
1985
Joerg Roedel431b2a22008-07-11 17:14:22 +02001986/*
Joerg Roedel5b28df62008-12-02 17:49:42 +01001987 * little helper function to check whether a given protection domain is a
1988 * dma_ops domain
1989 */
1990static bool dma_ops_domain(struct protection_domain *domain)
1991{
1992 return domain->flags & PD_DMA_OPS_MASK;
1993}
1994
Joerg Roedelfd7b5532011-04-05 15:31:08 +02001995static void set_dte_entry(u16 devid, struct protection_domain *domain, bool ats)
Joerg Roedelb20ac0d2008-06-26 21:27:59 +02001996{
Joerg Roedel132bd682011-11-17 14:18:46 +01001997 u64 pte_root = 0;
Joerg Roedelee6c2862011-11-09 12:06:03 +01001998 u64 flags = 0;
Joerg Roedel863c74e2008-12-02 17:56:36 +01001999
Joerg Roedel132bd682011-11-17 14:18:46 +01002000 if (domain->mode != PAGE_MODE_NONE)
2001 pte_root = virt_to_phys(domain->pt_root);
2002
Joerg Roedel38ddf412008-09-11 10:38:32 +02002003 pte_root |= (domain->mode & DEV_ENTRY_MODE_MASK)
2004 << DEV_ENTRY_MODE_SHIFT;
2005 pte_root |= IOMMU_PTE_IR | IOMMU_PTE_IW | IOMMU_PTE_P | IOMMU_PTE_TV;
Joerg Roedelb20ac0d2008-06-26 21:27:59 +02002006
Joerg Roedelee6c2862011-11-09 12:06:03 +01002007 flags = amd_iommu_dev_table[devid].data[1];
2008
Joerg Roedelfd7b5532011-04-05 15:31:08 +02002009 if (ats)
2010 flags |= DTE_FLAG_IOTLB;
2011
Joerg Roedel52815b72011-11-17 17:24:28 +01002012 if (domain->flags & PD_IOMMUV2_MASK) {
2013 u64 gcr3 = __pa(domain->gcr3_tbl);
2014 u64 glx = domain->glx;
2015 u64 tmp;
2016
2017 pte_root |= DTE_FLAG_GV;
2018 pte_root |= (glx & DTE_GLX_MASK) << DTE_GLX_SHIFT;
2019
2020 /* First mask out possible old values for GCR3 table */
2021 tmp = DTE_GCR3_VAL_B(~0ULL) << DTE_GCR3_SHIFT_B;
2022 flags &= ~tmp;
2023
2024 tmp = DTE_GCR3_VAL_C(~0ULL) << DTE_GCR3_SHIFT_C;
2025 flags &= ~tmp;
2026
2027 /* Encode GCR3 table into DTE */
2028 tmp = DTE_GCR3_VAL_A(gcr3) << DTE_GCR3_SHIFT_A;
2029 pte_root |= tmp;
2030
2031 tmp = DTE_GCR3_VAL_B(gcr3) << DTE_GCR3_SHIFT_B;
2032 flags |= tmp;
2033
2034 tmp = DTE_GCR3_VAL_C(gcr3) << DTE_GCR3_SHIFT_C;
2035 flags |= tmp;
2036 }
2037
Joerg Roedelee6c2862011-11-09 12:06:03 +01002038 flags &= ~(0xffffUL);
2039 flags |= domain->id;
2040
2041 amd_iommu_dev_table[devid].data[1] = flags;
2042 amd_iommu_dev_table[devid].data[0] = pte_root;
Joerg Roedelb20ac0d2008-06-26 21:27:59 +02002043}
2044
Joerg Roedel15898bb2009-11-24 15:39:42 +01002045static void clear_dte_entry(u16 devid)
Joerg Roedel355bf552008-12-08 12:02:41 +01002046{
Joerg Roedel355bf552008-12-08 12:02:41 +01002047 /* remove entry from the device table seen by the hardware */
2048 amd_iommu_dev_table[devid].data[0] = IOMMU_PTE_P | IOMMU_PTE_TV;
2049 amd_iommu_dev_table[devid].data[1] = 0;
Joerg Roedel355bf552008-12-08 12:02:41 +01002050
Joerg Roedelc5cca142009-10-09 18:31:20 +02002051 amd_iommu_apply_erratum_63(devid);
Joerg Roedel7f760dd2009-11-26 14:49:59 +01002052}
2053
Joerg Roedelec9e79e2011-06-09 17:25:50 +02002054static void do_attach(struct iommu_dev_data *dev_data,
2055 struct protection_domain *domain)
Joerg Roedel7f760dd2009-11-26 14:49:59 +01002056{
Joerg Roedel7f760dd2009-11-26 14:49:59 +01002057 struct amd_iommu *iommu;
Joerg Roedelec9e79e2011-06-09 17:25:50 +02002058 bool ats;
Joerg Roedel7f760dd2009-11-26 14:49:59 +01002059
Joerg Roedelec9e79e2011-06-09 17:25:50 +02002060 iommu = amd_iommu_rlookup_table[dev_data->devid];
2061 ats = dev_data->ats.enabled;
Joerg Roedel7f760dd2009-11-26 14:49:59 +01002062
2063 /* Update data structures */
2064 dev_data->domain = domain;
2065 list_add(&dev_data->list, &domain->dev_list);
Joerg Roedelf62dda62011-06-09 12:55:35 +02002066 set_dte_entry(dev_data->devid, domain, ats);
Joerg Roedel7f760dd2009-11-26 14:49:59 +01002067
2068 /* Do reference counting */
2069 domain->dev_iommu[iommu->index] += 1;
2070 domain->dev_cnt += 1;
2071
2072 /* Flush the DTE entry */
Joerg Roedel6c542042011-06-09 17:07:31 +02002073 device_flush_dte(dev_data);
Joerg Roedel7f760dd2009-11-26 14:49:59 +01002074}
2075
Joerg Roedelec9e79e2011-06-09 17:25:50 +02002076static void do_detach(struct iommu_dev_data *dev_data)
Joerg Roedel7f760dd2009-11-26 14:49:59 +01002077{
Joerg Roedel7f760dd2009-11-26 14:49:59 +01002078 struct amd_iommu *iommu;
Joerg Roedel7f760dd2009-11-26 14:49:59 +01002079
Joerg Roedelec9e79e2011-06-09 17:25:50 +02002080 iommu = amd_iommu_rlookup_table[dev_data->devid];
Joerg Roedelc5cca142009-10-09 18:31:20 +02002081
Joerg Roedelc4596112009-11-20 14:57:32 +01002082 /* decrease reference counters */
Joerg Roedel7f760dd2009-11-26 14:49:59 +01002083 dev_data->domain->dev_iommu[iommu->index] -= 1;
2084 dev_data->domain->dev_cnt -= 1;
Joerg Roedel355bf552008-12-08 12:02:41 +01002085
Joerg Roedel7f760dd2009-11-26 14:49:59 +01002086 /* Update data structures */
2087 dev_data->domain = NULL;
2088 list_del(&dev_data->list);
Joerg Roedelf62dda62011-06-09 12:55:35 +02002089 clear_dte_entry(dev_data->devid);
Joerg Roedel7f760dd2009-11-26 14:49:59 +01002090
2091 /* Flush the DTE entry */
Joerg Roedel6c542042011-06-09 17:07:31 +02002092 device_flush_dte(dev_data);
Joerg Roedel15898bb2009-11-24 15:39:42 +01002093}
2094
2095/*
2096 * If a device is not yet associated with a domain, this function does
2097 * assigns it visible for the hardware
2098 */
Joerg Roedelec9e79e2011-06-09 17:25:50 +02002099static int __attach_device(struct iommu_dev_data *dev_data,
Joerg Roedel15898bb2009-11-24 15:39:42 +01002100 struct protection_domain *domain)
2101{
Julia Lawall84fe6c12010-05-27 12:31:51 +02002102 int ret;
Joerg Roedel657cbb62009-11-23 15:26:46 +01002103
Joerg Roedel15898bb2009-11-24 15:39:42 +01002104 /* lock domain */
2105 spin_lock(&domain->lock);
2106
Joerg Roedel71f77582011-06-09 19:03:15 +02002107 if (dev_data->alias_data != NULL) {
2108 struct iommu_dev_data *alias_data = dev_data->alias_data;
Joerg Roedel15898bb2009-11-24 15:39:42 +01002109
Joerg Roedel2b02b092011-06-09 17:48:39 +02002110 /* Some sanity checks */
2111 ret = -EBUSY;
2112 if (alias_data->domain != NULL &&
2113 alias_data->domain != domain)
2114 goto out_unlock;
Joerg Roedel15898bb2009-11-24 15:39:42 +01002115
Joerg Roedel2b02b092011-06-09 17:48:39 +02002116 if (dev_data->domain != NULL &&
2117 dev_data->domain != domain)
2118 goto out_unlock;
2119
2120 /* Do real assignment */
Joerg Roedel7f760dd2009-11-26 14:49:59 +01002121 if (alias_data->domain == NULL)
Joerg Roedelec9e79e2011-06-09 17:25:50 +02002122 do_attach(alias_data, domain);
Joerg Roedel24100052009-11-25 15:59:57 +01002123
2124 atomic_inc(&alias_data->bind);
Joerg Roedel657cbb62009-11-23 15:26:46 +01002125 }
Joerg Roedel15898bb2009-11-24 15:39:42 +01002126
Joerg Roedel7f760dd2009-11-26 14:49:59 +01002127 if (dev_data->domain == NULL)
Joerg Roedelec9e79e2011-06-09 17:25:50 +02002128 do_attach(dev_data, domain);
Joerg Roedel15898bb2009-11-24 15:39:42 +01002129
Joerg Roedel24100052009-11-25 15:59:57 +01002130 atomic_inc(&dev_data->bind);
2131
Julia Lawall84fe6c12010-05-27 12:31:51 +02002132 ret = 0;
2133
2134out_unlock:
2135
Joerg Roedel355bf552008-12-08 12:02:41 +01002136 /* ready */
2137 spin_unlock(&domain->lock);
Joerg Roedel21129f72009-09-01 11:59:42 +02002138
Julia Lawall84fe6c12010-05-27 12:31:51 +02002139 return ret;
Joerg Roedel15898bb2009-11-24 15:39:42 +01002140}
2141
Joerg Roedel52815b72011-11-17 17:24:28 +01002142
2143static void pdev_iommuv2_disable(struct pci_dev *pdev)
2144{
2145 pci_disable_ats(pdev);
2146 pci_disable_pri(pdev);
2147 pci_disable_pasid(pdev);
2148}
2149
Joerg Roedel6a113dd2011-12-01 12:04:58 +01002150/* FIXME: Change generic reset-function to do the same */
2151static int pri_reset_while_enabled(struct pci_dev *pdev)
2152{
2153 u16 control;
2154 int pos;
2155
Joerg Roedel46277b72011-12-07 14:34:02 +01002156 pos = pci_find_ext_capability(pdev, PCI_EXT_CAP_ID_PRI);
Joerg Roedel6a113dd2011-12-01 12:04:58 +01002157 if (!pos)
2158 return -EINVAL;
2159
Joerg Roedel46277b72011-12-07 14:34:02 +01002160 pci_read_config_word(pdev, pos + PCI_PRI_CTRL, &control);
2161 control |= PCI_PRI_CTRL_RESET;
2162 pci_write_config_word(pdev, pos + PCI_PRI_CTRL, control);
Joerg Roedel6a113dd2011-12-01 12:04:58 +01002163
2164 return 0;
2165}
2166
Joerg Roedel52815b72011-11-17 17:24:28 +01002167static int pdev_iommuv2_enable(struct pci_dev *pdev)
2168{
Joerg Roedel6a113dd2011-12-01 12:04:58 +01002169 bool reset_enable;
2170 int reqs, ret;
2171
2172 /* FIXME: Hardcode number of outstanding requests for now */
2173 reqs = 32;
2174 if (pdev_pri_erratum(pdev, AMD_PRI_DEV_ERRATUM_LIMIT_REQ_ONE))
2175 reqs = 1;
2176 reset_enable = pdev_pri_erratum(pdev, AMD_PRI_DEV_ERRATUM_ENABLE_RESET);
Joerg Roedel52815b72011-11-17 17:24:28 +01002177
2178 /* Only allow access to user-accessible pages */
2179 ret = pci_enable_pasid(pdev, 0);
2180 if (ret)
2181 goto out_err;
2182
2183 /* First reset the PRI state of the device */
2184 ret = pci_reset_pri(pdev);
2185 if (ret)
2186 goto out_err;
2187
Joerg Roedel6a113dd2011-12-01 12:04:58 +01002188 /* Enable PRI */
2189 ret = pci_enable_pri(pdev, reqs);
Joerg Roedel52815b72011-11-17 17:24:28 +01002190 if (ret)
2191 goto out_err;
2192
Joerg Roedel6a113dd2011-12-01 12:04:58 +01002193 if (reset_enable) {
2194 ret = pri_reset_while_enabled(pdev);
2195 if (ret)
2196 goto out_err;
2197 }
2198
Joerg Roedel52815b72011-11-17 17:24:28 +01002199 ret = pci_enable_ats(pdev, PAGE_SHIFT);
2200 if (ret)
2201 goto out_err;
2202
2203 return 0;
2204
2205out_err:
2206 pci_disable_pri(pdev);
2207 pci_disable_pasid(pdev);
2208
2209 return ret;
2210}
2211
Joerg Roedelc99afa22011-11-21 18:19:25 +01002212/* FIXME: Move this to PCI code */
Joerg Roedela3b93122012-04-12 12:49:26 +02002213#define PCI_PRI_TLP_OFF (1 << 15)
Joerg Roedelc99afa22011-11-21 18:19:25 +01002214
Joerg Roedel98f1ad22012-07-06 13:28:37 +02002215static bool pci_pri_tlp_required(struct pci_dev *pdev)
Joerg Roedelc99afa22011-11-21 18:19:25 +01002216{
Joerg Roedela3b93122012-04-12 12:49:26 +02002217 u16 status;
Joerg Roedelc99afa22011-11-21 18:19:25 +01002218 int pos;
2219
Joerg Roedel46277b72011-12-07 14:34:02 +01002220 pos = pci_find_ext_capability(pdev, PCI_EXT_CAP_ID_PRI);
Joerg Roedelc99afa22011-11-21 18:19:25 +01002221 if (!pos)
2222 return false;
2223
Joerg Roedela3b93122012-04-12 12:49:26 +02002224 pci_read_config_word(pdev, pos + PCI_PRI_STATUS, &status);
Joerg Roedelc99afa22011-11-21 18:19:25 +01002225
Joerg Roedela3b93122012-04-12 12:49:26 +02002226 return (status & PCI_PRI_TLP_OFF) ? true : false;
Joerg Roedelc99afa22011-11-21 18:19:25 +01002227}
2228
Joerg Roedel15898bb2009-11-24 15:39:42 +01002229/*
Frank Arnolddf805ab2012-08-27 19:21:04 +02002230 * If a device is not yet associated with a domain, this function
Joerg Roedel15898bb2009-11-24 15:39:42 +01002231 * assigns it visible for the hardware
2232 */
2233static int attach_device(struct device *dev,
2234 struct protection_domain *domain)
2235{
Joerg Roedelfd7b5532011-04-05 15:31:08 +02002236 struct pci_dev *pdev = to_pci_dev(dev);
Joerg Roedelea61cdd2011-06-09 12:56:30 +02002237 struct iommu_dev_data *dev_data;
Joerg Roedel15898bb2009-11-24 15:39:42 +01002238 unsigned long flags;
2239 int ret;
2240
Joerg Roedelea61cdd2011-06-09 12:56:30 +02002241 dev_data = get_dev_data(dev);
2242
Joerg Roedel52815b72011-11-17 17:24:28 +01002243 if (domain->flags & PD_IOMMUV2_MASK) {
2244 if (!dev_data->iommu_v2 || !dev_data->passthrough)
2245 return -EINVAL;
2246
2247 if (pdev_iommuv2_enable(pdev) != 0)
2248 return -EINVAL;
2249
2250 dev_data->ats.enabled = true;
2251 dev_data->ats.qdep = pci_ats_queue_depth(pdev);
Joerg Roedelc99afa22011-11-21 18:19:25 +01002252 dev_data->pri_tlp = pci_pri_tlp_required(pdev);
Joerg Roedel52815b72011-11-17 17:24:28 +01002253 } else if (amd_iommu_iotlb_sup &&
2254 pci_enable_ats(pdev, PAGE_SHIFT) == 0) {
Joerg Roedelea61cdd2011-06-09 12:56:30 +02002255 dev_data->ats.enabled = true;
2256 dev_data->ats.qdep = pci_ats_queue_depth(pdev);
2257 }
Joerg Roedelfd7b5532011-04-05 15:31:08 +02002258
Joerg Roedel15898bb2009-11-24 15:39:42 +01002259 write_lock_irqsave(&amd_iommu_devtable_lock, flags);
Joerg Roedelec9e79e2011-06-09 17:25:50 +02002260 ret = __attach_device(dev_data, domain);
Joerg Roedel15898bb2009-11-24 15:39:42 +01002261 write_unlock_irqrestore(&amd_iommu_devtable_lock, flags);
2262
2263 /*
2264 * We might boot into a crash-kernel here. The crashed kernel
2265 * left the caches in the IOMMU dirty. So we have to flush
2266 * here to evict all dirty stuff.
2267 */
Joerg Roedel17b124b2011-04-06 18:01:35 +02002268 domain_flush_tlb_pde(domain);
Joerg Roedel15898bb2009-11-24 15:39:42 +01002269
2270 return ret;
2271}
2272
2273/*
2274 * Removes a device from a protection domain (unlocked)
2275 */
Joerg Roedelec9e79e2011-06-09 17:25:50 +02002276static void __detach_device(struct iommu_dev_data *dev_data)
Joerg Roedel15898bb2009-11-24 15:39:42 +01002277{
Joerg Roedel2ca76272010-01-22 16:45:31 +01002278 struct protection_domain *domain;
Joerg Roedel7c392cb2009-11-26 11:13:32 +01002279 unsigned long flags;
Joerg Roedel15898bb2009-11-24 15:39:42 +01002280
Joerg Roedel7f760dd2009-11-26 14:49:59 +01002281 BUG_ON(!dev_data->domain);
Joerg Roedel15898bb2009-11-24 15:39:42 +01002282
Joerg Roedel2ca76272010-01-22 16:45:31 +01002283 domain = dev_data->domain;
2284
2285 spin_lock_irqsave(&domain->lock, flags);
Joerg Roedel24100052009-11-25 15:59:57 +01002286
Joerg Roedel71f77582011-06-09 19:03:15 +02002287 if (dev_data->alias_data != NULL) {
2288 struct iommu_dev_data *alias_data = dev_data->alias_data;
2289
Joerg Roedel7f760dd2009-11-26 14:49:59 +01002290 if (atomic_dec_and_test(&alias_data->bind))
Joerg Roedelec9e79e2011-06-09 17:25:50 +02002291 do_detach(alias_data);
Joerg Roedel24100052009-11-25 15:59:57 +01002292 }
2293
Joerg Roedel7f760dd2009-11-26 14:49:59 +01002294 if (atomic_dec_and_test(&dev_data->bind))
Joerg Roedelec9e79e2011-06-09 17:25:50 +02002295 do_detach(dev_data);
Joerg Roedel7f760dd2009-11-26 14:49:59 +01002296
Joerg Roedel2ca76272010-01-22 16:45:31 +01002297 spin_unlock_irqrestore(&domain->lock, flags);
Joerg Roedel15898bb2009-11-24 15:39:42 +01002298
Joerg Roedel21129f72009-09-01 11:59:42 +02002299 /*
2300 * If we run in passthrough mode the device must be assigned to the
Joerg Roedeld3ad9372010-01-22 17:55:27 +01002301 * passthrough domain if it is detached from any other domain.
2302 * Make sure we can deassign from the pt_domain itself.
Joerg Roedel21129f72009-09-01 11:59:42 +02002303 */
Joerg Roedel5abcdba2011-12-01 15:49:45 +01002304 if (dev_data->passthrough &&
Joerg Roedeld3ad9372010-01-22 17:55:27 +01002305 (dev_data->domain == NULL && domain != pt_domain))
Joerg Roedelec9e79e2011-06-09 17:25:50 +02002306 __attach_device(dev_data, pt_domain);
Joerg Roedel355bf552008-12-08 12:02:41 +01002307}
2308
2309/*
2310 * Removes a device from a protection domain (with devtable_lock held)
2311 */
Joerg Roedel15898bb2009-11-24 15:39:42 +01002312static void detach_device(struct device *dev)
Joerg Roedel355bf552008-12-08 12:02:41 +01002313{
Joerg Roedel52815b72011-11-17 17:24:28 +01002314 struct protection_domain *domain;
Joerg Roedelea61cdd2011-06-09 12:56:30 +02002315 struct iommu_dev_data *dev_data;
Joerg Roedel355bf552008-12-08 12:02:41 +01002316 unsigned long flags;
2317
Joerg Roedelec9e79e2011-06-09 17:25:50 +02002318 dev_data = get_dev_data(dev);
Joerg Roedel52815b72011-11-17 17:24:28 +01002319 domain = dev_data->domain;
Joerg Roedelec9e79e2011-06-09 17:25:50 +02002320
Joerg Roedel355bf552008-12-08 12:02:41 +01002321 /* lock device table */
2322 write_lock_irqsave(&amd_iommu_devtable_lock, flags);
Joerg Roedelec9e79e2011-06-09 17:25:50 +02002323 __detach_device(dev_data);
Joerg Roedel355bf552008-12-08 12:02:41 +01002324 write_unlock_irqrestore(&amd_iommu_devtable_lock, flags);
Joerg Roedelfd7b5532011-04-05 15:31:08 +02002325
Joerg Roedel52815b72011-11-17 17:24:28 +01002326 if (domain->flags & PD_IOMMUV2_MASK)
2327 pdev_iommuv2_disable(to_pci_dev(dev));
2328 else if (dev_data->ats.enabled)
Joerg Roedelea61cdd2011-06-09 12:56:30 +02002329 pci_disable_ats(to_pci_dev(dev));
Joerg Roedel52815b72011-11-17 17:24:28 +01002330
2331 dev_data->ats.enabled = false;
Joerg Roedel355bf552008-12-08 12:02:41 +01002332}
Joerg Roedele275a2a2008-12-10 18:27:25 +01002333
Joerg Roedel15898bb2009-11-24 15:39:42 +01002334/*
2335 * Find out the protection domain structure for a given PCI device. This
2336 * will give us the pointer to the page table root for example.
2337 */
2338static struct protection_domain *domain_for_device(struct device *dev)
2339{
Joerg Roedel71f77582011-06-09 19:03:15 +02002340 struct iommu_dev_data *dev_data;
Joerg Roedel2b02b092011-06-09 17:48:39 +02002341 struct protection_domain *dom = NULL;
Joerg Roedel15898bb2009-11-24 15:39:42 +01002342 unsigned long flags;
Joerg Roedel15898bb2009-11-24 15:39:42 +01002343
Joerg Roedel657cbb62009-11-23 15:26:46 +01002344 dev_data = get_dev_data(dev);
Joerg Roedel15898bb2009-11-24 15:39:42 +01002345
Joerg Roedel2b02b092011-06-09 17:48:39 +02002346 if (dev_data->domain)
2347 return dev_data->domain;
2348
Joerg Roedel71f77582011-06-09 19:03:15 +02002349 if (dev_data->alias_data != NULL) {
2350 struct iommu_dev_data *alias_data = dev_data->alias_data;
Joerg Roedel2b02b092011-06-09 17:48:39 +02002351
2352 read_lock_irqsave(&amd_iommu_devtable_lock, flags);
2353 if (alias_data->domain != NULL) {
2354 __attach_device(dev_data, alias_data->domain);
2355 dom = alias_data->domain;
2356 }
2357 read_unlock_irqrestore(&amd_iommu_devtable_lock, flags);
Joerg Roedel15898bb2009-11-24 15:39:42 +01002358 }
2359
Joerg Roedel15898bb2009-11-24 15:39:42 +01002360 return dom;
2361}
2362
Joerg Roedele275a2a2008-12-10 18:27:25 +01002363static int device_change_notifier(struct notifier_block *nb,
2364 unsigned long action, void *data)
2365{
Joerg Roedele275a2a2008-12-10 18:27:25 +01002366 struct dma_ops_domain *dma_domain;
Joerg Roedel5abcdba2011-12-01 15:49:45 +01002367 struct protection_domain *domain;
2368 struct iommu_dev_data *dev_data;
2369 struct device *dev = data;
Joerg Roedele275a2a2008-12-10 18:27:25 +01002370 struct amd_iommu *iommu;
Joerg Roedel1ac4cbb2008-12-10 19:33:26 +01002371 unsigned long flags;
Joerg Roedel5abcdba2011-12-01 15:49:45 +01002372 u16 devid;
Joerg Roedele275a2a2008-12-10 18:27:25 +01002373
Joerg Roedel98fc5a62009-11-24 17:19:23 +01002374 if (!check_device(dev))
2375 return 0;
Joerg Roedele275a2a2008-12-10 18:27:25 +01002376
Joerg Roedel5abcdba2011-12-01 15:49:45 +01002377 devid = get_device_id(dev);
2378 iommu = amd_iommu_rlookup_table[devid];
2379 dev_data = get_dev_data(dev);
Joerg Roedele275a2a2008-12-10 18:27:25 +01002380
2381 switch (action) {
Chris Wrightc1eee672009-05-21 00:56:58 -07002382 case BUS_NOTIFY_UNBOUND_DRIVER:
Joerg Roedel657cbb62009-11-23 15:26:46 +01002383
2384 domain = domain_for_device(dev);
2385
Joerg Roedele275a2a2008-12-10 18:27:25 +01002386 if (!domain)
2387 goto out;
Joerg Roedel5abcdba2011-12-01 15:49:45 +01002388 if (dev_data->passthrough)
Joerg Roedela1ca3312009-09-01 12:22:22 +02002389 break;
Joerg Roedel15898bb2009-11-24 15:39:42 +01002390 detach_device(dev);
Joerg Roedele275a2a2008-12-10 18:27:25 +01002391 break;
Joerg Roedel1ac4cbb2008-12-10 19:33:26 +01002392 case BUS_NOTIFY_ADD_DEVICE:
Joerg Roedel657cbb62009-11-23 15:26:46 +01002393
2394 iommu_init_device(dev);
2395
Joerg Roedel2c9195e2012-07-19 13:42:54 +02002396 /*
2397 * dev_data is still NULL and
2398 * got initialized in iommu_init_device
2399 */
2400 dev_data = get_dev_data(dev);
2401
2402 if (iommu_pass_through || dev_data->iommu_v2) {
2403 dev_data->passthrough = true;
2404 attach_device(dev, pt_domain);
2405 break;
2406 }
2407
Joerg Roedel657cbb62009-11-23 15:26:46 +01002408 domain = domain_for_device(dev);
2409
Joerg Roedel1ac4cbb2008-12-10 19:33:26 +01002410 /* allocate a protection domain if a device is added */
2411 dma_domain = find_protection_domain(devid);
2412 if (dma_domain)
2413 goto out;
Joerg Roedel87a64d52009-11-24 17:26:43 +01002414 dma_domain = dma_ops_domain_alloc();
Joerg Roedel1ac4cbb2008-12-10 19:33:26 +01002415 if (!dma_domain)
2416 goto out;
2417 dma_domain->target_dev = devid;
2418
2419 spin_lock_irqsave(&iommu_pd_list_lock, flags);
2420 list_add_tail(&dma_domain->list, &iommu_pd_list);
2421 spin_unlock_irqrestore(&iommu_pd_list_lock, flags);
2422
Joerg Roedelac1534a2012-06-21 14:52:40 +02002423 dev_data = get_dev_data(dev);
2424
Joerg Roedel2c9195e2012-07-19 13:42:54 +02002425 dev->archdata.dma_ops = &amd_iommu_dma_ops;
Joerg Roedelac1534a2012-06-21 14:52:40 +02002426
Joerg Roedel1ac4cbb2008-12-10 19:33:26 +01002427 break;
Joerg Roedel657cbb62009-11-23 15:26:46 +01002428 case BUS_NOTIFY_DEL_DEVICE:
2429
2430 iommu_uninit_device(dev);
2431
Joerg Roedele275a2a2008-12-10 18:27:25 +01002432 default:
2433 goto out;
2434 }
2435
Joerg Roedele275a2a2008-12-10 18:27:25 +01002436 iommu_completion_wait(iommu);
2437
2438out:
2439 return 0;
2440}
2441
Jaswinder Singh Rajputb25ae672009-07-01 19:53:14 +05302442static struct notifier_block device_nb = {
Joerg Roedele275a2a2008-12-10 18:27:25 +01002443 .notifier_call = device_change_notifier,
2444};
Joerg Roedel355bf552008-12-08 12:02:41 +01002445
Joerg Roedel8638c492009-12-10 11:12:25 +01002446void amd_iommu_init_notifier(void)
2447{
2448 bus_register_notifier(&pci_bus_type, &device_nb);
2449}
2450
Joerg Roedel431b2a22008-07-11 17:14:22 +02002451/*****************************************************************************
2452 *
2453 * The next functions belong to the dma_ops mapping/unmapping code.
2454 *
2455 *****************************************************************************/
2456
2457/*
2458 * In the dma_ops path we only have the struct device. This function
2459 * finds the corresponding IOMMU, the protection domain and the
2460 * requestor id for a given device.
2461 * If the device is not yet associated with a domain this is also done
2462 * in this function.
2463 */
Joerg Roedel94f6d192009-11-24 16:40:02 +01002464static struct protection_domain *get_domain(struct device *dev)
Joerg Roedelb20ac0d2008-06-26 21:27:59 +02002465{
Joerg Roedel94f6d192009-11-24 16:40:02 +01002466 struct protection_domain *domain;
Joerg Roedelb20ac0d2008-06-26 21:27:59 +02002467 struct dma_ops_domain *dma_dom;
Joerg Roedel94f6d192009-11-24 16:40:02 +01002468 u16 devid = get_device_id(dev);
Joerg Roedelb20ac0d2008-06-26 21:27:59 +02002469
Joerg Roedelf99c0f12009-11-23 16:52:56 +01002470 if (!check_device(dev))
Joerg Roedel94f6d192009-11-24 16:40:02 +01002471 return ERR_PTR(-EINVAL);
Joerg Roedeldbcc1122008-09-04 15:04:26 +02002472
Joerg Roedel94f6d192009-11-24 16:40:02 +01002473 domain = domain_for_device(dev);
2474 if (domain != NULL && !dma_ops_domain(domain))
2475 return ERR_PTR(-EBUSY);
Joerg Roedelf99c0f12009-11-23 16:52:56 +01002476
Joerg Roedel94f6d192009-11-24 16:40:02 +01002477 if (domain != NULL)
2478 return domain;
Joerg Roedelb20ac0d2008-06-26 21:27:59 +02002479
Frank Arnolddf805ab2012-08-27 19:21:04 +02002480 /* Device not bound yet - bind it */
Joerg Roedel94f6d192009-11-24 16:40:02 +01002481 dma_dom = find_protection_domain(devid);
Joerg Roedel15898bb2009-11-24 15:39:42 +01002482 if (!dma_dom)
Joerg Roedel94f6d192009-11-24 16:40:02 +01002483 dma_dom = amd_iommu_rlookup_table[devid]->default_dom;
2484 attach_device(dev, &dma_dom->domain);
Joerg Roedel15898bb2009-11-24 15:39:42 +01002485 DUMP_printk("Using protection domain %d for device %s\n",
Joerg Roedel94f6d192009-11-24 16:40:02 +01002486 dma_dom->domain.id, dev_name(dev));
Joerg Roedelf91ba192008-11-25 12:56:12 +01002487
Joerg Roedel94f6d192009-11-24 16:40:02 +01002488 return &dma_dom->domain;
Joerg Roedelb20ac0d2008-06-26 21:27:59 +02002489}
2490
Joerg Roedel04bfdd82009-09-02 16:00:23 +02002491static void update_device_table(struct protection_domain *domain)
2492{
Joerg Roedel492667d2009-11-27 13:25:47 +01002493 struct iommu_dev_data *dev_data;
Joerg Roedel04bfdd82009-09-02 16:00:23 +02002494
Joerg Roedelea61cdd2011-06-09 12:56:30 +02002495 list_for_each_entry(dev_data, &domain->dev_list, list)
2496 set_dte_entry(dev_data->devid, domain, dev_data->ats.enabled);
Joerg Roedel04bfdd82009-09-02 16:00:23 +02002497}
2498
2499static void update_domain(struct protection_domain *domain)
2500{
2501 if (!domain->updated)
2502 return;
2503
2504 update_device_table(domain);
Joerg Roedel17b124b2011-04-06 18:01:35 +02002505
2506 domain_flush_devices(domain);
2507 domain_flush_tlb_pde(domain);
Joerg Roedel04bfdd82009-09-02 16:00:23 +02002508
2509 domain->updated = false;
2510}
2511
Joerg Roedel431b2a22008-07-11 17:14:22 +02002512/*
Joerg Roedel8bda3092009-05-12 12:02:46 +02002513 * This function fetches the PTE for a given address in the aperture
2514 */
2515static u64* dma_ops_get_pte(struct dma_ops_domain *dom,
2516 unsigned long address)
2517{
Joerg Roedel384de722009-05-15 12:30:05 +02002518 struct aperture_range *aperture;
Joerg Roedel8bda3092009-05-12 12:02:46 +02002519 u64 *pte, *pte_page;
2520
Joerg Roedel384de722009-05-15 12:30:05 +02002521 aperture = dom->aperture[APERTURE_RANGE_INDEX(address)];
2522 if (!aperture)
2523 return NULL;
2524
2525 pte = aperture->pte_pages[APERTURE_PAGE_INDEX(address)];
Joerg Roedel8bda3092009-05-12 12:02:46 +02002526 if (!pte) {
Joerg Roedelcbb9d722010-01-15 14:41:15 +01002527 pte = alloc_pte(&dom->domain, address, PAGE_SIZE, &pte_page,
Joerg Roedelabdc5eb2009-09-03 11:33:51 +02002528 GFP_ATOMIC);
Joerg Roedel384de722009-05-15 12:30:05 +02002529 aperture->pte_pages[APERTURE_PAGE_INDEX(address)] = pte_page;
2530 } else
Joerg Roedel8c8c1432009-09-02 17:30:00 +02002531 pte += PM_LEVEL_INDEX(0, address);
Joerg Roedel8bda3092009-05-12 12:02:46 +02002532
Joerg Roedel04bfdd82009-09-02 16:00:23 +02002533 update_domain(&dom->domain);
Joerg Roedel8bda3092009-05-12 12:02:46 +02002534
2535 return pte;
2536}
2537
2538/*
Joerg Roedel431b2a22008-07-11 17:14:22 +02002539 * This is the generic map function. It maps one 4kb page at paddr to
2540 * the given address in the DMA address space for the domain.
2541 */
Joerg Roedel680525e2009-11-23 18:44:42 +01002542static dma_addr_t dma_ops_domain_map(struct dma_ops_domain *dom,
Joerg Roedelcb76c322008-06-26 21:28:00 +02002543 unsigned long address,
2544 phys_addr_t paddr,
2545 int direction)
2546{
2547 u64 *pte, __pte;
2548
2549 WARN_ON(address > dom->aperture_size);
2550
2551 paddr &= PAGE_MASK;
2552
Joerg Roedel8bda3092009-05-12 12:02:46 +02002553 pte = dma_ops_get_pte(dom, address);
Joerg Roedel53812c12009-05-12 12:17:38 +02002554 if (!pte)
FUJITA Tomonori8fd524b2009-11-15 21:19:53 +09002555 return DMA_ERROR_CODE;
Joerg Roedelcb76c322008-06-26 21:28:00 +02002556
2557 __pte = paddr | IOMMU_PTE_P | IOMMU_PTE_FC;
2558
2559 if (direction == DMA_TO_DEVICE)
2560 __pte |= IOMMU_PTE_IR;
2561 else if (direction == DMA_FROM_DEVICE)
2562 __pte |= IOMMU_PTE_IW;
2563 else if (direction == DMA_BIDIRECTIONAL)
2564 __pte |= IOMMU_PTE_IR | IOMMU_PTE_IW;
2565
2566 WARN_ON(*pte);
2567
2568 *pte = __pte;
2569
2570 return (dma_addr_t)address;
2571}
2572
Joerg Roedel431b2a22008-07-11 17:14:22 +02002573/*
2574 * The generic unmapping function for on page in the DMA address space.
2575 */
Joerg Roedel680525e2009-11-23 18:44:42 +01002576static void dma_ops_domain_unmap(struct dma_ops_domain *dom,
Joerg Roedelcb76c322008-06-26 21:28:00 +02002577 unsigned long address)
2578{
Joerg Roedel384de722009-05-15 12:30:05 +02002579 struct aperture_range *aperture;
Joerg Roedelcb76c322008-06-26 21:28:00 +02002580 u64 *pte;
2581
2582 if (address >= dom->aperture_size)
2583 return;
2584
Joerg Roedel384de722009-05-15 12:30:05 +02002585 aperture = dom->aperture[APERTURE_RANGE_INDEX(address)];
2586 if (!aperture)
2587 return;
Joerg Roedelcb76c322008-06-26 21:28:00 +02002588
Joerg Roedel384de722009-05-15 12:30:05 +02002589 pte = aperture->pte_pages[APERTURE_PAGE_INDEX(address)];
2590 if (!pte)
2591 return;
2592
Joerg Roedel8c8c1432009-09-02 17:30:00 +02002593 pte += PM_LEVEL_INDEX(0, address);
Joerg Roedelcb76c322008-06-26 21:28:00 +02002594
2595 WARN_ON(!*pte);
2596
2597 *pte = 0ULL;
2598}
2599
Joerg Roedel431b2a22008-07-11 17:14:22 +02002600/*
2601 * This function contains common code for mapping of a physically
Joerg Roedel24f81162008-12-08 14:25:39 +01002602 * contiguous memory region into DMA address space. It is used by all
2603 * mapping functions provided with this IOMMU driver.
Joerg Roedel431b2a22008-07-11 17:14:22 +02002604 * Must be called with the domain lock held.
2605 */
Joerg Roedelcb76c322008-06-26 21:28:00 +02002606static dma_addr_t __map_single(struct device *dev,
Joerg Roedelcb76c322008-06-26 21:28:00 +02002607 struct dma_ops_domain *dma_dom,
2608 phys_addr_t paddr,
2609 size_t size,
Joerg Roedel6d4f3432008-09-04 19:18:02 +02002610 int dir,
Joerg Roedel832a90c2008-09-18 15:54:23 +02002611 bool align,
2612 u64 dma_mask)
Joerg Roedelcb76c322008-06-26 21:28:00 +02002613{
2614 dma_addr_t offset = paddr & ~PAGE_MASK;
Joerg Roedel53812c12009-05-12 12:17:38 +02002615 dma_addr_t address, start, ret;
Joerg Roedelcb76c322008-06-26 21:28:00 +02002616 unsigned int pages;
Joerg Roedel6d4f3432008-09-04 19:18:02 +02002617 unsigned long align_mask = 0;
Joerg Roedelcb76c322008-06-26 21:28:00 +02002618 int i;
2619
Joerg Roedele3c449f2008-10-15 22:02:11 -07002620 pages = iommu_num_pages(paddr, size, PAGE_SIZE);
Joerg Roedelcb76c322008-06-26 21:28:00 +02002621 paddr &= PAGE_MASK;
2622
Joerg Roedel8ecaf8f2008-12-12 16:13:04 +01002623 INC_STATS_COUNTER(total_map_requests);
2624
Joerg Roedelc1858972008-12-12 15:42:39 +01002625 if (pages > 1)
2626 INC_STATS_COUNTER(cross_page);
2627
Joerg Roedel6d4f3432008-09-04 19:18:02 +02002628 if (align)
2629 align_mask = (1UL << get_order(size)) - 1;
2630
Joerg Roedel11b83882009-05-19 10:23:15 +02002631retry:
Joerg Roedel832a90c2008-09-18 15:54:23 +02002632 address = dma_ops_alloc_addresses(dev, dma_dom, pages, align_mask,
2633 dma_mask);
FUJITA Tomonori8fd524b2009-11-15 21:19:53 +09002634 if (unlikely(address == DMA_ERROR_CODE)) {
Joerg Roedel11b83882009-05-19 10:23:15 +02002635 /*
2636 * setting next_address here will let the address
2637 * allocator only scan the new allocated range in the
2638 * first run. This is a small optimization.
2639 */
2640 dma_dom->next_address = dma_dom->aperture_size;
2641
Joerg Roedel576175c2009-11-23 19:08:46 +01002642 if (alloc_new_range(dma_dom, false, GFP_ATOMIC))
Joerg Roedel11b83882009-05-19 10:23:15 +02002643 goto out;
2644
2645 /*
André Goddard Rosaaf901ca2009-11-14 13:09:05 -02002646 * aperture was successfully enlarged by 128 MB, try
Joerg Roedel11b83882009-05-19 10:23:15 +02002647 * allocation again
2648 */
2649 goto retry;
2650 }
Joerg Roedelcb76c322008-06-26 21:28:00 +02002651
2652 start = address;
2653 for (i = 0; i < pages; ++i) {
Joerg Roedel680525e2009-11-23 18:44:42 +01002654 ret = dma_ops_domain_map(dma_dom, start, paddr, dir);
FUJITA Tomonori8fd524b2009-11-15 21:19:53 +09002655 if (ret == DMA_ERROR_CODE)
Joerg Roedel53812c12009-05-12 12:17:38 +02002656 goto out_unmap;
2657
Joerg Roedelcb76c322008-06-26 21:28:00 +02002658 paddr += PAGE_SIZE;
2659 start += PAGE_SIZE;
2660 }
2661 address += offset;
2662
Joerg Roedel5774f7c2008-12-12 15:57:30 +01002663 ADD_STATS_COUNTER(alloced_io_mem, size);
2664
FUJITA Tomonoriafa9fdc2008-09-20 01:23:30 +09002665 if (unlikely(dma_dom->need_flush && !amd_iommu_unmap_flush)) {
Joerg Roedel17b124b2011-04-06 18:01:35 +02002666 domain_flush_tlb(&dma_dom->domain);
Joerg Roedel1c655772008-09-04 18:40:05 +02002667 dma_dom->need_flush = false;
Joerg Roedel318afd42009-11-23 18:32:38 +01002668 } else if (unlikely(amd_iommu_np_cache))
Joerg Roedel17b124b2011-04-06 18:01:35 +02002669 domain_flush_pages(&dma_dom->domain, address, size);
Joerg Roedel270cab242008-09-04 15:49:46 +02002670
Joerg Roedelcb76c322008-06-26 21:28:00 +02002671out:
2672 return address;
Joerg Roedel53812c12009-05-12 12:17:38 +02002673
2674out_unmap:
2675
2676 for (--i; i >= 0; --i) {
2677 start -= PAGE_SIZE;
Joerg Roedel680525e2009-11-23 18:44:42 +01002678 dma_ops_domain_unmap(dma_dom, start);
Joerg Roedel53812c12009-05-12 12:17:38 +02002679 }
2680
2681 dma_ops_free_addresses(dma_dom, address, pages);
2682
FUJITA Tomonori8fd524b2009-11-15 21:19:53 +09002683 return DMA_ERROR_CODE;
Joerg Roedelcb76c322008-06-26 21:28:00 +02002684}
2685
Joerg Roedel431b2a22008-07-11 17:14:22 +02002686/*
2687 * Does the reverse of the __map_single function. Must be called with
2688 * the domain lock held too
2689 */
Joerg Roedelcd8c82e2009-11-23 19:33:56 +01002690static void __unmap_single(struct dma_ops_domain *dma_dom,
Joerg Roedelcb76c322008-06-26 21:28:00 +02002691 dma_addr_t dma_addr,
2692 size_t size,
2693 int dir)
2694{
Joerg Roedel04e04632010-09-23 16:12:48 +02002695 dma_addr_t flush_addr;
Joerg Roedelcb76c322008-06-26 21:28:00 +02002696 dma_addr_t i, start;
2697 unsigned int pages;
2698
FUJITA Tomonori8fd524b2009-11-15 21:19:53 +09002699 if ((dma_addr == DMA_ERROR_CODE) ||
Joerg Roedelb8d99052008-12-08 14:40:26 +01002700 (dma_addr + size > dma_dom->aperture_size))
Joerg Roedelcb76c322008-06-26 21:28:00 +02002701 return;
2702
Joerg Roedel04e04632010-09-23 16:12:48 +02002703 flush_addr = dma_addr;
Joerg Roedele3c449f2008-10-15 22:02:11 -07002704 pages = iommu_num_pages(dma_addr, size, PAGE_SIZE);
Joerg Roedelcb76c322008-06-26 21:28:00 +02002705 dma_addr &= PAGE_MASK;
2706 start = dma_addr;
2707
2708 for (i = 0; i < pages; ++i) {
Joerg Roedel680525e2009-11-23 18:44:42 +01002709 dma_ops_domain_unmap(dma_dom, start);
Joerg Roedelcb76c322008-06-26 21:28:00 +02002710 start += PAGE_SIZE;
2711 }
2712
Joerg Roedel5774f7c2008-12-12 15:57:30 +01002713 SUB_STATS_COUNTER(alloced_io_mem, size);
2714
Joerg Roedelcb76c322008-06-26 21:28:00 +02002715 dma_ops_free_addresses(dma_dom, dma_addr, pages);
Joerg Roedel270cab242008-09-04 15:49:46 +02002716
Joerg Roedel80be3082008-11-06 14:59:05 +01002717 if (amd_iommu_unmap_flush || dma_dom->need_flush) {
Joerg Roedel17b124b2011-04-06 18:01:35 +02002718 domain_flush_pages(&dma_dom->domain, flush_addr, size);
Joerg Roedel80be3082008-11-06 14:59:05 +01002719 dma_dom->need_flush = false;
2720 }
Joerg Roedelcb76c322008-06-26 21:28:00 +02002721}
2722
Joerg Roedel431b2a22008-07-11 17:14:22 +02002723/*
2724 * The exported map_single function for dma_ops.
2725 */
FUJITA Tomonori51491362009-01-05 23:47:25 +09002726static dma_addr_t map_page(struct device *dev, struct page *page,
2727 unsigned long offset, size_t size,
2728 enum dma_data_direction dir,
2729 struct dma_attrs *attrs)
Joerg Roedel4da70b92008-06-26 21:28:01 +02002730{
2731 unsigned long flags;
Joerg Roedel4da70b92008-06-26 21:28:01 +02002732 struct protection_domain *domain;
Joerg Roedel4da70b92008-06-26 21:28:01 +02002733 dma_addr_t addr;
Joerg Roedel832a90c2008-09-18 15:54:23 +02002734 u64 dma_mask;
FUJITA Tomonori51491362009-01-05 23:47:25 +09002735 phys_addr_t paddr = page_to_phys(page) + offset;
Joerg Roedel4da70b92008-06-26 21:28:01 +02002736
Joerg Roedel0f2a86f2008-12-12 15:05:16 +01002737 INC_STATS_COUNTER(cnt_map_single);
2738
Joerg Roedel94f6d192009-11-24 16:40:02 +01002739 domain = get_domain(dev);
2740 if (PTR_ERR(domain) == -EINVAL)
Joerg Roedel4da70b92008-06-26 21:28:01 +02002741 return (dma_addr_t)paddr;
Joerg Roedel94f6d192009-11-24 16:40:02 +01002742 else if (IS_ERR(domain))
2743 return DMA_ERROR_CODE;
Joerg Roedel4da70b92008-06-26 21:28:01 +02002744
Joerg Roedelf99c0f12009-11-23 16:52:56 +01002745 dma_mask = *dev->dma_mask;
2746
Joerg Roedel4da70b92008-06-26 21:28:01 +02002747 spin_lock_irqsave(&domain->lock, flags);
Joerg Roedel94f6d192009-11-24 16:40:02 +01002748
Joerg Roedelcd8c82e2009-11-23 19:33:56 +01002749 addr = __map_single(dev, domain->priv, paddr, size, dir, false,
Joerg Roedel832a90c2008-09-18 15:54:23 +02002750 dma_mask);
FUJITA Tomonori8fd524b2009-11-15 21:19:53 +09002751 if (addr == DMA_ERROR_CODE)
Joerg Roedel4da70b92008-06-26 21:28:01 +02002752 goto out;
2753
Joerg Roedel17b124b2011-04-06 18:01:35 +02002754 domain_flush_complete(domain);
Joerg Roedel4da70b92008-06-26 21:28:01 +02002755
2756out:
2757 spin_unlock_irqrestore(&domain->lock, flags);
2758
2759 return addr;
2760}
2761
Joerg Roedel431b2a22008-07-11 17:14:22 +02002762/*
2763 * The exported unmap_single function for dma_ops.
2764 */
FUJITA Tomonori51491362009-01-05 23:47:25 +09002765static void unmap_page(struct device *dev, dma_addr_t dma_addr, size_t size,
2766 enum dma_data_direction dir, struct dma_attrs *attrs)
Joerg Roedel4da70b92008-06-26 21:28:01 +02002767{
2768 unsigned long flags;
Joerg Roedel4da70b92008-06-26 21:28:01 +02002769 struct protection_domain *domain;
Joerg Roedel4da70b92008-06-26 21:28:01 +02002770
Joerg Roedel146a6912008-12-12 15:07:12 +01002771 INC_STATS_COUNTER(cnt_unmap_single);
2772
Joerg Roedel94f6d192009-11-24 16:40:02 +01002773 domain = get_domain(dev);
2774 if (IS_ERR(domain))
Joerg Roedel5b28df62008-12-02 17:49:42 +01002775 return;
2776
Joerg Roedel4da70b92008-06-26 21:28:01 +02002777 spin_lock_irqsave(&domain->lock, flags);
2778
Joerg Roedelcd8c82e2009-11-23 19:33:56 +01002779 __unmap_single(domain->priv, dma_addr, size, dir);
Joerg Roedel4da70b92008-06-26 21:28:01 +02002780
Joerg Roedel17b124b2011-04-06 18:01:35 +02002781 domain_flush_complete(domain);
Joerg Roedel4da70b92008-06-26 21:28:01 +02002782
2783 spin_unlock_irqrestore(&domain->lock, flags);
2784}
2785
Joerg Roedel431b2a22008-07-11 17:14:22 +02002786/*
2787 * This is a special map_sg function which is used if we should map a
2788 * device which is not handled by an AMD IOMMU in the system.
2789 */
Joerg Roedel65b050a2008-06-26 21:28:02 +02002790static int map_sg_no_iommu(struct device *dev, struct scatterlist *sglist,
2791 int nelems, int dir)
2792{
2793 struct scatterlist *s;
2794 int i;
2795
2796 for_each_sg(sglist, s, nelems, i) {
2797 s->dma_address = (dma_addr_t)sg_phys(s);
2798 s->dma_length = s->length;
2799 }
2800
2801 return nelems;
2802}
2803
Joerg Roedel431b2a22008-07-11 17:14:22 +02002804/*
2805 * The exported map_sg function for dma_ops (handles scatter-gather
2806 * lists).
2807 */
Joerg Roedel65b050a2008-06-26 21:28:02 +02002808static int map_sg(struct device *dev, struct scatterlist *sglist,
FUJITA Tomonori160c1d82009-01-05 23:59:02 +09002809 int nelems, enum dma_data_direction dir,
2810 struct dma_attrs *attrs)
Joerg Roedel65b050a2008-06-26 21:28:02 +02002811{
2812 unsigned long flags;
Joerg Roedel65b050a2008-06-26 21:28:02 +02002813 struct protection_domain *domain;
Joerg Roedel65b050a2008-06-26 21:28:02 +02002814 int i;
2815 struct scatterlist *s;
2816 phys_addr_t paddr;
2817 int mapped_elems = 0;
Joerg Roedel832a90c2008-09-18 15:54:23 +02002818 u64 dma_mask;
Joerg Roedel65b050a2008-06-26 21:28:02 +02002819
Joerg Roedeld03f0672008-12-12 15:09:48 +01002820 INC_STATS_COUNTER(cnt_map_sg);
2821
Joerg Roedel94f6d192009-11-24 16:40:02 +01002822 domain = get_domain(dev);
2823 if (PTR_ERR(domain) == -EINVAL)
Joerg Roedelf99c0f12009-11-23 16:52:56 +01002824 return map_sg_no_iommu(dev, sglist, nelems, dir);
Joerg Roedel94f6d192009-11-24 16:40:02 +01002825 else if (IS_ERR(domain))
2826 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) {
Joerg Roedel6631ee92008-06-26 21:28:05 +02003133 if (iommu->default_dom)
3134 dma_ops_domain_free(iommu->default_dom);
3135 }
3136
3137 return ret;
3138}
Joerg Roedel6d98cd82008-12-08 12:05:55 +01003139
3140/*****************************************************************************
3141 *
3142 * The following functions belong to the exported interface of AMD IOMMU
3143 *
3144 * This interface allows access to lower level functions of the IOMMU
3145 * like protection domain handling and assignement of devices to domains
3146 * which is not possible with the dma_ops interface.
3147 *
3148 *****************************************************************************/
3149
Joerg Roedel6d98cd82008-12-08 12:05:55 +01003150static void cleanup_domain(struct protection_domain *domain)
3151{
Joerg Roedel492667d2009-11-27 13:25:47 +01003152 struct iommu_dev_data *dev_data, *next;
Joerg Roedel6d98cd82008-12-08 12:05:55 +01003153 unsigned long flags;
Joerg Roedel6d98cd82008-12-08 12:05:55 +01003154
3155 write_lock_irqsave(&amd_iommu_devtable_lock, flags);
3156
Joerg Roedel492667d2009-11-27 13:25:47 +01003157 list_for_each_entry_safe(dev_data, next, &domain->dev_list, list) {
Joerg Roedelec9e79e2011-06-09 17:25:50 +02003158 __detach_device(dev_data);
Joerg Roedel492667d2009-11-27 13:25:47 +01003159 atomic_set(&dev_data->bind, 0);
3160 }
Joerg Roedel6d98cd82008-12-08 12:05:55 +01003161
3162 write_unlock_irqrestore(&amd_iommu_devtable_lock, flags);
3163}
3164
Joerg Roedel26508152009-08-26 16:52:40 +02003165static void protection_domain_free(struct protection_domain *domain)
3166{
3167 if (!domain)
3168 return;
3169
Joerg Roedelaeb26f52009-11-20 16:44:01 +01003170 del_domain_from_list(domain);
3171
Joerg Roedel26508152009-08-26 16:52:40 +02003172 if (domain->id)
3173 domain_id_free(domain->id);
3174
3175 kfree(domain);
3176}
3177
3178static struct protection_domain *protection_domain_alloc(void)
Joerg Roedelc156e342008-12-02 18:13:27 +01003179{
3180 struct protection_domain *domain;
3181
3182 domain = kzalloc(sizeof(*domain), GFP_KERNEL);
3183 if (!domain)
Joerg Roedel26508152009-08-26 16:52:40 +02003184 return NULL;
Joerg Roedelc156e342008-12-02 18:13:27 +01003185
3186 spin_lock_init(&domain->lock);
Joerg Roedel5d214fe2010-02-08 14:44:49 +01003187 mutex_init(&domain->api_lock);
Joerg Roedelc156e342008-12-02 18:13:27 +01003188 domain->id = domain_id_alloc();
3189 if (!domain->id)
Joerg Roedel26508152009-08-26 16:52:40 +02003190 goto out_err;
Joerg Roedel7c392cb2009-11-26 11:13:32 +01003191 INIT_LIST_HEAD(&domain->dev_list);
Joerg Roedel26508152009-08-26 16:52:40 +02003192
Joerg Roedelaeb26f52009-11-20 16:44:01 +01003193 add_domain_to_list(domain);
3194
Joerg Roedel26508152009-08-26 16:52:40 +02003195 return domain;
3196
3197out_err:
3198 kfree(domain);
3199
3200 return NULL;
3201}
3202
Joerg Roedel5abcdba2011-12-01 15:49:45 +01003203static int __init alloc_passthrough_domain(void)
3204{
3205 if (pt_domain != NULL)
3206 return 0;
3207
3208 /* allocate passthrough domain */
3209 pt_domain = protection_domain_alloc();
3210 if (!pt_domain)
3211 return -ENOMEM;
3212
3213 pt_domain->mode = PAGE_MODE_NONE;
3214
3215 return 0;
3216}
Joerg Roedel26508152009-08-26 16:52:40 +02003217static int amd_iommu_domain_init(struct iommu_domain *dom)
3218{
3219 struct protection_domain *domain;
3220
3221 domain = protection_domain_alloc();
3222 if (!domain)
Joerg Roedelc156e342008-12-02 18:13:27 +01003223 goto out_free;
Joerg Roedel26508152009-08-26 16:52:40 +02003224
3225 domain->mode = PAGE_MODE_3_LEVEL;
Joerg Roedelc156e342008-12-02 18:13:27 +01003226 domain->pt_root = (void *)get_zeroed_page(GFP_KERNEL);
3227 if (!domain->pt_root)
3228 goto out_free;
3229
Joerg Roedelf3572db2011-11-23 12:36:25 +01003230 domain->iommu_domain = dom;
3231
Joerg Roedelc156e342008-12-02 18:13:27 +01003232 dom->priv = domain;
3233
Joerg Roedel0ff64f82012-01-26 19:40:53 +01003234 dom->geometry.aperture_start = 0;
3235 dom->geometry.aperture_end = ~0ULL;
3236 dom->geometry.force_aperture = true;
3237
Joerg Roedelc156e342008-12-02 18:13:27 +01003238 return 0;
3239
3240out_free:
Joerg Roedel26508152009-08-26 16:52:40 +02003241 protection_domain_free(domain);
Joerg Roedelc156e342008-12-02 18:13:27 +01003242
3243 return -ENOMEM;
3244}
3245
Joerg Roedel98383fc2008-12-02 18:34:12 +01003246static void amd_iommu_domain_destroy(struct iommu_domain *dom)
3247{
3248 struct protection_domain *domain = dom->priv;
3249
3250 if (!domain)
3251 return;
3252
3253 if (domain->dev_cnt > 0)
3254 cleanup_domain(domain);
3255
3256 BUG_ON(domain->dev_cnt != 0);
3257
Joerg Roedel132bd682011-11-17 14:18:46 +01003258 if (domain->mode != PAGE_MODE_NONE)
3259 free_pagetable(domain);
Joerg Roedel98383fc2008-12-02 18:34:12 +01003260
Joerg Roedel52815b72011-11-17 17:24:28 +01003261 if (domain->flags & PD_IOMMUV2_MASK)
3262 free_gcr3_table(domain);
3263
Joerg Roedel8b408fe2010-03-08 14:20:07 +01003264 protection_domain_free(domain);
Joerg Roedel98383fc2008-12-02 18:34:12 +01003265
3266 dom->priv = NULL;
3267}
3268
Joerg Roedel684f2882008-12-08 12:07:44 +01003269static void amd_iommu_detach_device(struct iommu_domain *dom,
3270 struct device *dev)
3271{
Joerg Roedel657cbb62009-11-23 15:26:46 +01003272 struct iommu_dev_data *dev_data = dev->archdata.iommu;
Joerg Roedel684f2882008-12-08 12:07:44 +01003273 struct amd_iommu *iommu;
Joerg Roedel684f2882008-12-08 12:07:44 +01003274 u16 devid;
3275
Joerg Roedel98fc5a62009-11-24 17:19:23 +01003276 if (!check_device(dev))
Joerg Roedel684f2882008-12-08 12:07:44 +01003277 return;
3278
Joerg Roedel98fc5a62009-11-24 17:19:23 +01003279 devid = get_device_id(dev);
Joerg Roedel684f2882008-12-08 12:07:44 +01003280
Joerg Roedel657cbb62009-11-23 15:26:46 +01003281 if (dev_data->domain != NULL)
Joerg Roedel15898bb2009-11-24 15:39:42 +01003282 detach_device(dev);
Joerg Roedel684f2882008-12-08 12:07:44 +01003283
3284 iommu = amd_iommu_rlookup_table[devid];
3285 if (!iommu)
3286 return;
3287
Joerg Roedel684f2882008-12-08 12:07:44 +01003288 iommu_completion_wait(iommu);
3289}
3290
Joerg Roedel01106062008-12-02 19:34:11 +01003291static int amd_iommu_attach_device(struct iommu_domain *dom,
3292 struct device *dev)
3293{
3294 struct protection_domain *domain = dom->priv;
Joerg Roedel657cbb62009-11-23 15:26:46 +01003295 struct iommu_dev_data *dev_data;
Joerg Roedel01106062008-12-02 19:34:11 +01003296 struct amd_iommu *iommu;
Joerg Roedel15898bb2009-11-24 15:39:42 +01003297 int ret;
Joerg Roedel01106062008-12-02 19:34:11 +01003298
Joerg Roedel98fc5a62009-11-24 17:19:23 +01003299 if (!check_device(dev))
Joerg Roedel01106062008-12-02 19:34:11 +01003300 return -EINVAL;
3301
Joerg Roedel657cbb62009-11-23 15:26:46 +01003302 dev_data = dev->archdata.iommu;
3303
Joerg Roedelf62dda62011-06-09 12:55:35 +02003304 iommu = amd_iommu_rlookup_table[dev_data->devid];
Joerg Roedel01106062008-12-02 19:34:11 +01003305 if (!iommu)
3306 return -EINVAL;
3307
Joerg Roedel657cbb62009-11-23 15:26:46 +01003308 if (dev_data->domain)
Joerg Roedel15898bb2009-11-24 15:39:42 +01003309 detach_device(dev);
Joerg Roedel01106062008-12-02 19:34:11 +01003310
Joerg Roedel15898bb2009-11-24 15:39:42 +01003311 ret = attach_device(dev, domain);
Joerg Roedel01106062008-12-02 19:34:11 +01003312
3313 iommu_completion_wait(iommu);
3314
Joerg Roedel15898bb2009-11-24 15:39:42 +01003315 return ret;
Joerg Roedel01106062008-12-02 19:34:11 +01003316}
3317
Joerg Roedel468e2362010-01-21 16:37:36 +01003318static int amd_iommu_map(struct iommu_domain *dom, unsigned long iova,
Ohad Ben-Cohen50090652011-11-10 11:32:25 +02003319 phys_addr_t paddr, size_t page_size, int iommu_prot)
Joerg Roedelc6229ca2008-12-02 19:48:43 +01003320{
3321 struct protection_domain *domain = dom->priv;
Joerg Roedelc6229ca2008-12-02 19:48:43 +01003322 int prot = 0;
3323 int ret;
3324
Joerg Roedel132bd682011-11-17 14:18:46 +01003325 if (domain->mode == PAGE_MODE_NONE)
3326 return -EINVAL;
3327
Joerg Roedelc6229ca2008-12-02 19:48:43 +01003328 if (iommu_prot & IOMMU_READ)
3329 prot |= IOMMU_PROT_IR;
3330 if (iommu_prot & IOMMU_WRITE)
3331 prot |= IOMMU_PROT_IW;
3332
Joerg Roedel5d214fe2010-02-08 14:44:49 +01003333 mutex_lock(&domain->api_lock);
Joerg Roedel795e74f72010-05-11 17:40:57 +02003334 ret = iommu_map_page(domain, iova, paddr, prot, page_size);
Joerg Roedel5d214fe2010-02-08 14:44:49 +01003335 mutex_unlock(&domain->api_lock);
3336
Joerg Roedel795e74f72010-05-11 17:40:57 +02003337 return ret;
Joerg Roedelc6229ca2008-12-02 19:48:43 +01003338}
3339
Ohad Ben-Cohen50090652011-11-10 11:32:25 +02003340static size_t amd_iommu_unmap(struct iommu_domain *dom, unsigned long iova,
3341 size_t page_size)
Joerg Roedeleb74ff62008-12-02 19:59:10 +01003342{
Joerg Roedeleb74ff62008-12-02 19:59:10 +01003343 struct protection_domain *domain = dom->priv;
Ohad Ben-Cohen50090652011-11-10 11:32:25 +02003344 size_t unmap_size;
Joerg Roedeleb74ff62008-12-02 19:59:10 +01003345
Joerg Roedel132bd682011-11-17 14:18:46 +01003346 if (domain->mode == PAGE_MODE_NONE)
3347 return -EINVAL;
3348
Joerg Roedel5d214fe2010-02-08 14:44:49 +01003349 mutex_lock(&domain->api_lock);
Joerg Roedel468e2362010-01-21 16:37:36 +01003350 unmap_size = iommu_unmap_page(domain, iova, page_size);
Joerg Roedel795e74f72010-05-11 17:40:57 +02003351 mutex_unlock(&domain->api_lock);
Joerg Roedeleb74ff62008-12-02 19:59:10 +01003352
Joerg Roedel17b124b2011-04-06 18:01:35 +02003353 domain_flush_tlb_pde(domain);
Joerg Roedel5d214fe2010-02-08 14:44:49 +01003354
Ohad Ben-Cohen50090652011-11-10 11:32:25 +02003355 return unmap_size;
Joerg Roedeleb74ff62008-12-02 19:59:10 +01003356}
3357
Joerg Roedel645c4c82008-12-02 20:05:50 +01003358static phys_addr_t amd_iommu_iova_to_phys(struct iommu_domain *dom,
3359 unsigned long iova)
3360{
3361 struct protection_domain *domain = dom->priv;
Joerg Roedelf03152b2010-01-21 16:15:24 +01003362 unsigned long offset_mask;
Joerg Roedel645c4c82008-12-02 20:05:50 +01003363 phys_addr_t paddr;
Joerg Roedelf03152b2010-01-21 16:15:24 +01003364 u64 *pte, __pte;
Joerg Roedel645c4c82008-12-02 20:05:50 +01003365
Joerg Roedel132bd682011-11-17 14:18:46 +01003366 if (domain->mode == PAGE_MODE_NONE)
3367 return iova;
3368
Joerg Roedel24cd7722010-01-19 17:27:39 +01003369 pte = fetch_pte(domain, iova);
Joerg Roedel645c4c82008-12-02 20:05:50 +01003370
Joerg Roedela6d41a42009-09-02 17:08:55 +02003371 if (!pte || !IOMMU_PTE_PRESENT(*pte))
Joerg Roedel645c4c82008-12-02 20:05:50 +01003372 return 0;
3373
Joerg Roedelf03152b2010-01-21 16:15:24 +01003374 if (PM_PTE_LEVEL(*pte) == 0)
3375 offset_mask = PAGE_SIZE - 1;
3376 else
3377 offset_mask = PTE_PAGE_SIZE(*pte) - 1;
3378
3379 __pte = *pte & PM_ADDR_MASK;
3380 paddr = (__pte & ~offset_mask) | (iova & offset_mask);
Joerg Roedel645c4c82008-12-02 20:05:50 +01003381
3382 return paddr;
3383}
3384
Sheng Yangdbb9fd82009-03-18 15:33:06 +08003385static int amd_iommu_domain_has_cap(struct iommu_domain *domain,
3386 unsigned long cap)
3387{
Joerg Roedel80a506b2010-07-27 17:14:24 +02003388 switch (cap) {
3389 case IOMMU_CAP_CACHE_COHERENCY:
3390 return 1;
Joerg Roedelbdddadc2012-07-02 18:38:13 +02003391 case IOMMU_CAP_INTR_REMAP:
3392 return irq_remapping_enabled;
Joerg Roedel80a506b2010-07-27 17:14:24 +02003393 }
3394
Sheng Yangdbb9fd82009-03-18 15:33:06 +08003395 return 0;
3396}
3397
Joerg Roedel26961ef2008-12-03 17:00:17 +01003398static struct iommu_ops amd_iommu_ops = {
3399 .domain_init = amd_iommu_domain_init,
3400 .domain_destroy = amd_iommu_domain_destroy,
3401 .attach_dev = amd_iommu_attach_device,
3402 .detach_dev = amd_iommu_detach_device,
Joerg Roedel468e2362010-01-21 16:37:36 +01003403 .map = amd_iommu_map,
3404 .unmap = amd_iommu_unmap,
Joerg Roedel26961ef2008-12-03 17:00:17 +01003405 .iova_to_phys = amd_iommu_iova_to_phys,
Sheng Yangdbb9fd82009-03-18 15:33:06 +08003406 .domain_has_cap = amd_iommu_domain_has_cap,
Ohad Ben-Cohenaa3de9c2011-11-10 11:32:29 +02003407 .pgsize_bitmap = AMD_IOMMU_PGSIZES,
Joerg Roedel26961ef2008-12-03 17:00:17 +01003408};
3409
Joerg Roedel0feae532009-08-26 15:26:30 +02003410/*****************************************************************************
3411 *
3412 * The next functions do a basic initialization of IOMMU for pass through
3413 * mode
3414 *
3415 * In passthrough mode the IOMMU is initialized and enabled but not used for
3416 * DMA-API translation.
3417 *
3418 *****************************************************************************/
3419
3420int __init amd_iommu_init_passthrough(void)
3421{
Joerg Roedel5abcdba2011-12-01 15:49:45 +01003422 struct iommu_dev_data *dev_data;
Joerg Roedel0feae532009-08-26 15:26:30 +02003423 struct pci_dev *dev = NULL;
Joerg Roedel5abcdba2011-12-01 15:49:45 +01003424 struct amd_iommu *iommu;
Joerg Roedel15898bb2009-11-24 15:39:42 +01003425 u16 devid;
Joerg Roedel5abcdba2011-12-01 15:49:45 +01003426 int ret;
Joerg Roedel0feae532009-08-26 15:26:30 +02003427
Joerg Roedel5abcdba2011-12-01 15:49:45 +01003428 ret = alloc_passthrough_domain();
3429 if (ret)
3430 return ret;
Joerg Roedel0feae532009-08-26 15:26:30 +02003431
Kulikov Vasiliy6c54aab2010-07-03 12:03:51 -04003432 for_each_pci_dev(dev) {
Joerg Roedel98fc5a62009-11-24 17:19:23 +01003433 if (!check_device(&dev->dev))
Joerg Roedel0feae532009-08-26 15:26:30 +02003434 continue;
3435
Joerg Roedel5abcdba2011-12-01 15:49:45 +01003436 dev_data = get_dev_data(&dev->dev);
3437 dev_data->passthrough = true;
3438
Joerg Roedel98fc5a62009-11-24 17:19:23 +01003439 devid = get_device_id(&dev->dev);
3440
Joerg Roedel15898bb2009-11-24 15:39:42 +01003441 iommu = amd_iommu_rlookup_table[devid];
Joerg Roedel0feae532009-08-26 15:26:30 +02003442 if (!iommu)
3443 continue;
3444
Joerg Roedel15898bb2009-11-24 15:39:42 +01003445 attach_device(&dev->dev, pt_domain);
Joerg Roedel0feae532009-08-26 15:26:30 +02003446 }
3447
Joerg Roedel2655d7a2011-12-22 12:35:38 +01003448 amd_iommu_stats_init();
3449
Joerg Roedel0feae532009-08-26 15:26:30 +02003450 pr_info("AMD-Vi: Initialized for Passthrough Mode\n");
3451
3452 return 0;
3453}
Joerg Roedel72e1dcc2011-11-10 19:13:51 +01003454
3455/* IOMMUv2 specific functions */
3456int amd_iommu_register_ppr_notifier(struct notifier_block *nb)
3457{
3458 return atomic_notifier_chain_register(&ppr_notifier, nb);
3459}
3460EXPORT_SYMBOL(amd_iommu_register_ppr_notifier);
3461
3462int amd_iommu_unregister_ppr_notifier(struct notifier_block *nb)
3463{
3464 return atomic_notifier_chain_unregister(&ppr_notifier, nb);
3465}
3466EXPORT_SYMBOL(amd_iommu_unregister_ppr_notifier);
Joerg Roedel132bd682011-11-17 14:18:46 +01003467
3468void amd_iommu_domain_direct_map(struct iommu_domain *dom)
3469{
3470 struct protection_domain *domain = dom->priv;
3471 unsigned long flags;
3472
3473 spin_lock_irqsave(&domain->lock, flags);
3474
3475 /* Update data structure */
3476 domain->mode = PAGE_MODE_NONE;
3477 domain->updated = true;
3478
3479 /* Make changes visible to IOMMUs */
3480 update_domain(domain);
3481
3482 /* Page-table is not visible to IOMMU anymore, so free it */
3483 free_pagetable(domain);
3484
3485 spin_unlock_irqrestore(&domain->lock, flags);
3486}
3487EXPORT_SYMBOL(amd_iommu_domain_direct_map);
Joerg Roedel52815b72011-11-17 17:24:28 +01003488
3489int amd_iommu_domain_enable_v2(struct iommu_domain *dom, int pasids)
3490{
3491 struct protection_domain *domain = dom->priv;
3492 unsigned long flags;
3493 int levels, ret;
3494
3495 if (pasids <= 0 || pasids > (PASID_MASK + 1))
3496 return -EINVAL;
3497
3498 /* Number of GCR3 table levels required */
3499 for (levels = 0; (pasids - 1) & ~0x1ff; pasids >>= 9)
3500 levels += 1;
3501
3502 if (levels > amd_iommu_max_glx_val)
3503 return -EINVAL;
3504
3505 spin_lock_irqsave(&domain->lock, flags);
3506
3507 /*
3508 * Save us all sanity checks whether devices already in the
3509 * domain support IOMMUv2. Just force that the domain has no
3510 * devices attached when it is switched into IOMMUv2 mode.
3511 */
3512 ret = -EBUSY;
3513 if (domain->dev_cnt > 0 || domain->flags & PD_IOMMUV2_MASK)
3514 goto out;
3515
3516 ret = -ENOMEM;
3517 domain->gcr3_tbl = (void *)get_zeroed_page(GFP_ATOMIC);
3518 if (domain->gcr3_tbl == NULL)
3519 goto out;
3520
3521 domain->glx = levels;
3522 domain->flags |= PD_IOMMUV2_MASK;
3523 domain->updated = true;
3524
3525 update_domain(domain);
3526
3527 ret = 0;
3528
3529out:
3530 spin_unlock_irqrestore(&domain->lock, flags);
3531
3532 return ret;
3533}
3534EXPORT_SYMBOL(amd_iommu_domain_enable_v2);
Joerg Roedel22e266c2011-11-21 15:59:08 +01003535
3536static int __flush_pasid(struct protection_domain *domain, int pasid,
3537 u64 address, bool size)
3538{
3539 struct iommu_dev_data *dev_data;
3540 struct iommu_cmd cmd;
3541 int i, ret;
3542
3543 if (!(domain->flags & PD_IOMMUV2_MASK))
3544 return -EINVAL;
3545
3546 build_inv_iommu_pasid(&cmd, domain->id, pasid, address, size);
3547
3548 /*
3549 * IOMMU TLB needs to be flushed before Device TLB to
3550 * prevent device TLB refill from IOMMU TLB
3551 */
3552 for (i = 0; i < amd_iommus_present; ++i) {
3553 if (domain->dev_iommu[i] == 0)
3554 continue;
3555
3556 ret = iommu_queue_command(amd_iommus[i], &cmd);
3557 if (ret != 0)
3558 goto out;
3559 }
3560
3561 /* Wait until IOMMU TLB flushes are complete */
3562 domain_flush_complete(domain);
3563
3564 /* Now flush device TLBs */
3565 list_for_each_entry(dev_data, &domain->dev_list, list) {
3566 struct amd_iommu *iommu;
3567 int qdep;
3568
3569 BUG_ON(!dev_data->ats.enabled);
3570
3571 qdep = dev_data->ats.qdep;
3572 iommu = amd_iommu_rlookup_table[dev_data->devid];
3573
3574 build_inv_iotlb_pasid(&cmd, dev_data->devid, pasid,
3575 qdep, address, size);
3576
3577 ret = iommu_queue_command(iommu, &cmd);
3578 if (ret != 0)
3579 goto out;
3580 }
3581
3582 /* Wait until all device TLBs are flushed */
3583 domain_flush_complete(domain);
3584
3585 ret = 0;
3586
3587out:
3588
3589 return ret;
3590}
3591
3592static int __amd_iommu_flush_page(struct protection_domain *domain, int pasid,
3593 u64 address)
3594{
Joerg Roedel399be2f2011-12-01 16:53:47 +01003595 INC_STATS_COUNTER(invalidate_iotlb);
3596
Joerg Roedel22e266c2011-11-21 15:59:08 +01003597 return __flush_pasid(domain, pasid, address, false);
3598}
3599
3600int amd_iommu_flush_page(struct iommu_domain *dom, int pasid,
3601 u64 address)
3602{
3603 struct protection_domain *domain = dom->priv;
3604 unsigned long flags;
3605 int ret;
3606
3607 spin_lock_irqsave(&domain->lock, flags);
3608 ret = __amd_iommu_flush_page(domain, pasid, address);
3609 spin_unlock_irqrestore(&domain->lock, flags);
3610
3611 return ret;
3612}
3613EXPORT_SYMBOL(amd_iommu_flush_page);
3614
3615static int __amd_iommu_flush_tlb(struct protection_domain *domain, int pasid)
3616{
Joerg Roedel399be2f2011-12-01 16:53:47 +01003617 INC_STATS_COUNTER(invalidate_iotlb_all);
3618
Joerg Roedel22e266c2011-11-21 15:59:08 +01003619 return __flush_pasid(domain, pasid, CMD_INV_IOMMU_ALL_PAGES_ADDRESS,
3620 true);
3621}
3622
3623int amd_iommu_flush_tlb(struct iommu_domain *dom, int pasid)
3624{
3625 struct protection_domain *domain = dom->priv;
3626 unsigned long flags;
3627 int ret;
3628
3629 spin_lock_irqsave(&domain->lock, flags);
3630 ret = __amd_iommu_flush_tlb(domain, pasid);
3631 spin_unlock_irqrestore(&domain->lock, flags);
3632
3633 return ret;
3634}
3635EXPORT_SYMBOL(amd_iommu_flush_tlb);
3636
Joerg Roedelb16137b2011-11-21 16:50:23 +01003637static u64 *__get_gcr3_pte(u64 *root, int level, int pasid, bool alloc)
3638{
3639 int index;
3640 u64 *pte;
3641
3642 while (true) {
3643
3644 index = (pasid >> (9 * level)) & 0x1ff;
3645 pte = &root[index];
3646
3647 if (level == 0)
3648 break;
3649
3650 if (!(*pte & GCR3_VALID)) {
3651 if (!alloc)
3652 return NULL;
3653
3654 root = (void *)get_zeroed_page(GFP_ATOMIC);
3655 if (root == NULL)
3656 return NULL;
3657
3658 *pte = __pa(root) | GCR3_VALID;
3659 }
3660
3661 root = __va(*pte & PAGE_MASK);
3662
3663 level -= 1;
3664 }
3665
3666 return pte;
3667}
3668
3669static int __set_gcr3(struct protection_domain *domain, int pasid,
3670 unsigned long cr3)
3671{
3672 u64 *pte;
3673
3674 if (domain->mode != PAGE_MODE_NONE)
3675 return -EINVAL;
3676
3677 pte = __get_gcr3_pte(domain->gcr3_tbl, domain->glx, pasid, true);
3678 if (pte == NULL)
3679 return -ENOMEM;
3680
3681 *pte = (cr3 & PAGE_MASK) | GCR3_VALID;
3682
3683 return __amd_iommu_flush_tlb(domain, pasid);
3684}
3685
3686static int __clear_gcr3(struct protection_domain *domain, int pasid)
3687{
3688 u64 *pte;
3689
3690 if (domain->mode != PAGE_MODE_NONE)
3691 return -EINVAL;
3692
3693 pte = __get_gcr3_pte(domain->gcr3_tbl, domain->glx, pasid, false);
3694 if (pte == NULL)
3695 return 0;
3696
3697 *pte = 0;
3698
3699 return __amd_iommu_flush_tlb(domain, pasid);
3700}
3701
3702int amd_iommu_domain_set_gcr3(struct iommu_domain *dom, int pasid,
3703 unsigned long cr3)
3704{
3705 struct protection_domain *domain = dom->priv;
3706 unsigned long flags;
3707 int ret;
3708
3709 spin_lock_irqsave(&domain->lock, flags);
3710 ret = __set_gcr3(domain, pasid, cr3);
3711 spin_unlock_irqrestore(&domain->lock, flags);
3712
3713 return ret;
3714}
3715EXPORT_SYMBOL(amd_iommu_domain_set_gcr3);
3716
3717int amd_iommu_domain_clear_gcr3(struct iommu_domain *dom, int pasid)
3718{
3719 struct protection_domain *domain = dom->priv;
3720 unsigned long flags;
3721 int ret;
3722
3723 spin_lock_irqsave(&domain->lock, flags);
3724 ret = __clear_gcr3(domain, pasid);
3725 spin_unlock_irqrestore(&domain->lock, flags);
3726
3727 return ret;
3728}
3729EXPORT_SYMBOL(amd_iommu_domain_clear_gcr3);
Joerg Roedelc99afa22011-11-21 18:19:25 +01003730
3731int amd_iommu_complete_ppr(struct pci_dev *pdev, int pasid,
3732 int status, int tag)
3733{
3734 struct iommu_dev_data *dev_data;
3735 struct amd_iommu *iommu;
3736 struct iommu_cmd cmd;
3737
Joerg Roedel399be2f2011-12-01 16:53:47 +01003738 INC_STATS_COUNTER(complete_ppr);
3739
Joerg Roedelc99afa22011-11-21 18:19:25 +01003740 dev_data = get_dev_data(&pdev->dev);
3741 iommu = amd_iommu_rlookup_table[dev_data->devid];
3742
3743 build_complete_ppr(&cmd, dev_data->devid, pasid, status,
3744 tag, dev_data->pri_tlp);
3745
3746 return iommu_queue_command(iommu, &cmd);
3747}
3748EXPORT_SYMBOL(amd_iommu_complete_ppr);
Joerg Roedelf3572db2011-11-23 12:36:25 +01003749
3750struct iommu_domain *amd_iommu_get_v2_domain(struct pci_dev *pdev)
3751{
3752 struct protection_domain *domain;
3753
3754 domain = get_domain(&pdev->dev);
3755 if (IS_ERR(domain))
3756 return NULL;
3757
3758 /* Only return IOMMUv2 domains */
3759 if (!(domain->flags & PD_IOMMUV2_MASK))
3760 return NULL;
3761
3762 return domain->iommu_domain;
3763}
3764EXPORT_SYMBOL(amd_iommu_get_v2_domain);
Joerg Roedel6a113dd2011-12-01 12:04:58 +01003765
3766void amd_iommu_enable_device_erratum(struct pci_dev *pdev, u32 erratum)
3767{
3768 struct iommu_dev_data *dev_data;
3769
3770 if (!amd_iommu_v2_supported())
3771 return;
3772
3773 dev_data = get_dev_data(&pdev->dev);
3774 dev_data->errata |= (1 << erratum);
3775}
3776EXPORT_SYMBOL(amd_iommu_enable_device_erratum);
Joerg Roedel52efdb82011-12-07 12:01:36 +01003777
3778int amd_iommu_device_info(struct pci_dev *pdev,
3779 struct amd_iommu_device_info *info)
3780{
3781 int max_pasids;
3782 int pos;
3783
3784 if (pdev == NULL || info == NULL)
3785 return -EINVAL;
3786
3787 if (!amd_iommu_v2_supported())
3788 return -EINVAL;
3789
3790 memset(info, 0, sizeof(*info));
3791
3792 pos = pci_find_ext_capability(pdev, PCI_EXT_CAP_ID_ATS);
3793 if (pos)
3794 info->flags |= AMD_IOMMU_DEVICE_FLAG_ATS_SUP;
3795
3796 pos = pci_find_ext_capability(pdev, PCI_EXT_CAP_ID_PRI);
3797 if (pos)
3798 info->flags |= AMD_IOMMU_DEVICE_FLAG_PRI_SUP;
3799
3800 pos = pci_find_ext_capability(pdev, PCI_EXT_CAP_ID_PASID);
3801 if (pos) {
3802 int features;
3803
3804 max_pasids = 1 << (9 * (amd_iommu_max_glx_val + 1));
3805 max_pasids = min(max_pasids, (1 << 20));
3806
3807 info->flags |= AMD_IOMMU_DEVICE_FLAG_PASID_SUP;
3808 info->max_pasids = min(pci_max_pasids(pdev), max_pasids);
3809
3810 features = pci_pasid_features(pdev);
3811 if (features & PCI_PASID_CAP_EXEC)
3812 info->flags |= AMD_IOMMU_DEVICE_FLAG_EXEC_SUP;
3813 if (features & PCI_PASID_CAP_PRIV)
3814 info->flags |= AMD_IOMMU_DEVICE_FLAG_PRIV_SUP;
3815 }
3816
3817 return 0;
3818}
3819EXPORT_SYMBOL(amd_iommu_device_info);
Joerg Roedel2b324502012-06-21 16:29:10 +02003820
3821#ifdef CONFIG_IRQ_REMAP
3822
3823/*****************************************************************************
3824 *
3825 * Interrupt Remapping Implementation
3826 *
3827 *****************************************************************************/
3828
3829union irte {
3830 u32 val;
3831 struct {
3832 u32 valid : 1,
3833 no_fault : 1,
3834 int_type : 3,
3835 rq_eoi : 1,
3836 dm : 1,
3837 rsvd_1 : 1,
3838 destination : 8,
3839 vector : 8,
3840 rsvd_2 : 8;
3841 } fields;
3842};
3843
3844#define DTE_IRQ_PHYS_ADDR_MASK (((1ULL << 45)-1) << 6)
3845#define DTE_IRQ_REMAP_INTCTL (2ULL << 60)
3846#define DTE_IRQ_TABLE_LEN (8ULL << 1)
3847#define DTE_IRQ_REMAP_ENABLE 1ULL
3848
3849static void set_dte_irq_entry(u16 devid, struct irq_remap_table *table)
3850{
3851 u64 dte;
3852
3853 dte = amd_iommu_dev_table[devid].data[2];
3854 dte &= ~DTE_IRQ_PHYS_ADDR_MASK;
3855 dte |= virt_to_phys(table->table);
3856 dte |= DTE_IRQ_REMAP_INTCTL;
3857 dte |= DTE_IRQ_TABLE_LEN;
3858 dte |= DTE_IRQ_REMAP_ENABLE;
3859
3860 amd_iommu_dev_table[devid].data[2] = dte;
3861}
3862
3863#define IRTE_ALLOCATED (~1U)
3864
3865static struct irq_remap_table *get_irq_table(u16 devid, bool ioapic)
3866{
3867 struct irq_remap_table *table = NULL;
3868 struct amd_iommu *iommu;
3869 unsigned long flags;
3870 u16 alias;
3871
3872 write_lock_irqsave(&amd_iommu_devtable_lock, flags);
3873
3874 iommu = amd_iommu_rlookup_table[devid];
3875 if (!iommu)
3876 goto out_unlock;
3877
3878 table = irq_lookup_table[devid];
3879 if (table)
3880 goto out;
3881
3882 alias = amd_iommu_alias_table[devid];
3883 table = irq_lookup_table[alias];
3884 if (table) {
3885 irq_lookup_table[devid] = table;
3886 set_dte_irq_entry(devid, table);
3887 iommu_flush_dte(iommu, devid);
3888 goto out;
3889 }
3890
3891 /* Nothing there yet, allocate new irq remapping table */
3892 table = kzalloc(sizeof(*table), GFP_ATOMIC);
3893 if (!table)
3894 goto out;
3895
3896 if (ioapic)
3897 /* Keep the first 32 indexes free for IOAPIC interrupts */
3898 table->min_index = 32;
3899
3900 table->table = kmem_cache_alloc(amd_iommu_irq_cache, GFP_ATOMIC);
3901 if (!table->table) {
3902 kfree(table);
Dan Carpenter821f0f62012-10-02 11:34:40 +03003903 table = NULL;
Joerg Roedel2b324502012-06-21 16:29:10 +02003904 goto out;
3905 }
3906
3907 memset(table->table, 0, MAX_IRQS_PER_TABLE * sizeof(u32));
3908
3909 if (ioapic) {
3910 int i;
3911
3912 for (i = 0; i < 32; ++i)
3913 table->table[i] = IRTE_ALLOCATED;
3914 }
3915
3916 irq_lookup_table[devid] = table;
3917 set_dte_irq_entry(devid, table);
3918 iommu_flush_dte(iommu, devid);
3919 if (devid != alias) {
3920 irq_lookup_table[alias] = table;
3921 set_dte_irq_entry(devid, table);
3922 iommu_flush_dte(iommu, alias);
3923 }
3924
3925out:
3926 iommu_completion_wait(iommu);
3927
3928out_unlock:
3929 write_unlock_irqrestore(&amd_iommu_devtable_lock, flags);
3930
3931 return table;
3932}
3933
3934static int alloc_irq_index(struct irq_cfg *cfg, u16 devid, int count)
3935{
3936 struct irq_remap_table *table;
3937 unsigned long flags;
3938 int index, c;
3939
3940 table = get_irq_table(devid, false);
3941 if (!table)
3942 return -ENODEV;
3943
3944 spin_lock_irqsave(&table->lock, flags);
3945
3946 /* Scan table for free entries */
3947 for (c = 0, index = table->min_index;
3948 index < MAX_IRQS_PER_TABLE;
3949 ++index) {
3950 if (table->table[index] == 0)
3951 c += 1;
3952 else
3953 c = 0;
3954
3955 if (c == count) {
3956 struct irq_2_iommu *irte_info;
3957
3958 for (; c != 0; --c)
3959 table->table[index - c + 1] = IRTE_ALLOCATED;
3960
3961 index -= count - 1;
3962
3963 irte_info = &cfg->irq_2_iommu;
3964 irte_info->sub_handle = devid;
3965 irte_info->irte_index = index;
3966 irte_info->iommu = (void *)cfg;
3967
3968 goto out;
3969 }
3970 }
3971
3972 index = -ENOSPC;
3973
3974out:
3975 spin_unlock_irqrestore(&table->lock, flags);
3976
3977 return index;
3978}
3979
3980static int get_irte(u16 devid, int index, union irte *irte)
3981{
3982 struct irq_remap_table *table;
3983 unsigned long flags;
3984
3985 table = get_irq_table(devid, false);
3986 if (!table)
3987 return -ENOMEM;
3988
3989 spin_lock_irqsave(&table->lock, flags);
3990 irte->val = table->table[index];
3991 spin_unlock_irqrestore(&table->lock, flags);
3992
3993 return 0;
3994}
3995
3996static int modify_irte(u16 devid, int index, union irte irte)
3997{
3998 struct irq_remap_table *table;
3999 struct amd_iommu *iommu;
4000 unsigned long flags;
4001
4002 iommu = amd_iommu_rlookup_table[devid];
4003 if (iommu == NULL)
4004 return -EINVAL;
4005
4006 table = get_irq_table(devid, false);
4007 if (!table)
4008 return -ENOMEM;
4009
4010 spin_lock_irqsave(&table->lock, flags);
4011 table->table[index] = irte.val;
4012 spin_unlock_irqrestore(&table->lock, flags);
4013
4014 iommu_flush_irt(iommu, devid);
4015 iommu_completion_wait(iommu);
4016
4017 return 0;
4018}
4019
4020static void free_irte(u16 devid, int index)
4021{
4022 struct irq_remap_table *table;
4023 struct amd_iommu *iommu;
4024 unsigned long flags;
4025
4026 iommu = amd_iommu_rlookup_table[devid];
4027 if (iommu == NULL)
4028 return;
4029
4030 table = get_irq_table(devid, false);
4031 if (!table)
4032 return;
4033
4034 spin_lock_irqsave(&table->lock, flags);
4035 table->table[index] = 0;
4036 spin_unlock_irqrestore(&table->lock, flags);
4037
4038 iommu_flush_irt(iommu, devid);
4039 iommu_completion_wait(iommu);
4040}
4041
Joerg Roedel5527de72012-06-26 11:17:32 +02004042static int setup_ioapic_entry(int irq, struct IO_APIC_route_entry *entry,
4043 unsigned int destination, int vector,
4044 struct io_apic_irq_attr *attr)
4045{
4046 struct irq_remap_table *table;
4047 struct irq_2_iommu *irte_info;
4048 struct irq_cfg *cfg;
4049 union irte irte;
4050 int ioapic_id;
4051 int index;
4052 int devid;
4053 int ret;
4054
4055 cfg = irq_get_chip_data(irq);
4056 if (!cfg)
4057 return -EINVAL;
4058
4059 irte_info = &cfg->irq_2_iommu;
4060 ioapic_id = mpc_ioapic_id(attr->ioapic);
4061 devid = get_ioapic_devid(ioapic_id);
4062
4063 if (devid < 0)
4064 return devid;
4065
4066 table = get_irq_table(devid, true);
4067 if (table == NULL)
4068 return -ENOMEM;
4069
4070 index = attr->ioapic_pin;
4071
4072 /* Setup IRQ remapping info */
4073 irte_info->sub_handle = devid;
4074 irte_info->irte_index = index;
4075 irte_info->iommu = (void *)cfg;
4076
4077 /* Setup IRTE for IOMMU */
4078 irte.val = 0;
4079 irte.fields.vector = vector;
4080 irte.fields.int_type = apic->irq_delivery_mode;
4081 irte.fields.destination = destination;
4082 irte.fields.dm = apic->irq_dest_mode;
4083 irte.fields.valid = 1;
4084
4085 ret = modify_irte(devid, index, irte);
4086 if (ret)
4087 return ret;
4088
4089 /* Setup IOAPIC entry */
4090 memset(entry, 0, sizeof(*entry));
4091
4092 entry->vector = index;
4093 entry->mask = 0;
4094 entry->trigger = attr->trigger;
4095 entry->polarity = attr->polarity;
4096
4097 /*
4098 * Mask level triggered irqs.
Joerg Roedel5527de72012-06-26 11:17:32 +02004099 */
4100 if (attr->trigger)
4101 entry->mask = 1;
4102
4103 return 0;
4104}
4105
4106static int set_affinity(struct irq_data *data, const struct cpumask *mask,
4107 bool force)
4108{
4109 struct irq_2_iommu *irte_info;
4110 unsigned int dest, irq;
4111 struct irq_cfg *cfg;
4112 union irte irte;
4113 int err;
4114
4115 if (!config_enabled(CONFIG_SMP))
4116 return -1;
4117
4118 cfg = data->chip_data;
4119 irq = data->irq;
4120 irte_info = &cfg->irq_2_iommu;
4121
4122 if (!cpumask_intersects(mask, cpu_online_mask))
4123 return -EINVAL;
4124
4125 if (get_irte(irte_info->sub_handle, irte_info->irte_index, &irte))
4126 return -EBUSY;
4127
4128 if (assign_irq_vector(irq, cfg, mask))
4129 return -EBUSY;
4130
4131 err = apic->cpu_mask_to_apicid_and(cfg->domain, mask, &dest);
4132 if (err) {
4133 if (assign_irq_vector(irq, cfg, data->affinity))
4134 pr_err("AMD-Vi: Failed to recover vector for irq %d\n", irq);
4135 return err;
4136 }
4137
4138 irte.fields.vector = cfg->vector;
4139 irte.fields.destination = dest;
4140
4141 modify_irte(irte_info->sub_handle, irte_info->irte_index, irte);
4142
4143 if (cfg->move_in_progress)
4144 send_cleanup_vector(cfg);
4145
4146 cpumask_copy(data->affinity, mask);
4147
4148 return 0;
4149}
4150
4151static int free_irq(int irq)
4152{
4153 struct irq_2_iommu *irte_info;
4154 struct irq_cfg *cfg;
4155
4156 cfg = irq_get_chip_data(irq);
4157 if (!cfg)
4158 return -EINVAL;
4159
4160 irte_info = &cfg->irq_2_iommu;
4161
4162 free_irte(irte_info->sub_handle, irte_info->irte_index);
4163
4164 return 0;
4165}
4166
Joerg Roedel0b4d48c2012-06-26 14:54:17 +02004167static void compose_msi_msg(struct pci_dev *pdev,
4168 unsigned int irq, unsigned int dest,
4169 struct msi_msg *msg, u8 hpet_id)
4170{
4171 struct irq_2_iommu *irte_info;
4172 struct irq_cfg *cfg;
4173 union irte irte;
4174
4175 cfg = irq_get_chip_data(irq);
4176 if (!cfg)
4177 return;
4178
4179 irte_info = &cfg->irq_2_iommu;
4180
4181 irte.val = 0;
4182 irte.fields.vector = cfg->vector;
4183 irte.fields.int_type = apic->irq_delivery_mode;
4184 irte.fields.destination = dest;
4185 irte.fields.dm = apic->irq_dest_mode;
4186 irte.fields.valid = 1;
4187
4188 modify_irte(irte_info->sub_handle, irte_info->irte_index, irte);
4189
4190 msg->address_hi = MSI_ADDR_BASE_HI;
4191 msg->address_lo = MSI_ADDR_BASE_LO;
4192 msg->data = irte_info->irte_index;
4193}
4194
4195static int msi_alloc_irq(struct pci_dev *pdev, int irq, int nvec)
4196{
4197 struct irq_cfg *cfg;
4198 int index;
4199 u16 devid;
4200
4201 if (!pdev)
4202 return -EINVAL;
4203
4204 cfg = irq_get_chip_data(irq);
4205 if (!cfg)
4206 return -EINVAL;
4207
4208 devid = get_device_id(&pdev->dev);
4209 index = alloc_irq_index(cfg, devid, nvec);
4210
4211 return index < 0 ? MAX_IRQS_PER_TABLE : index;
4212}
4213
4214static int msi_setup_irq(struct pci_dev *pdev, unsigned int irq,
4215 int index, int offset)
4216{
4217 struct irq_2_iommu *irte_info;
4218 struct irq_cfg *cfg;
4219 u16 devid;
4220
4221 if (!pdev)
4222 return -EINVAL;
4223
4224 cfg = irq_get_chip_data(irq);
4225 if (!cfg)
4226 return -EINVAL;
4227
4228 if (index >= MAX_IRQS_PER_TABLE)
4229 return 0;
4230
4231 devid = get_device_id(&pdev->dev);
4232 irte_info = &cfg->irq_2_iommu;
4233
4234 irte_info->sub_handle = devid;
4235 irte_info->irte_index = index + offset;
4236 irte_info->iommu = (void *)cfg;
4237
4238 return 0;
4239}
4240
Joerg Roedeld9761952012-06-26 16:00:08 +02004241static int setup_hpet_msi(unsigned int irq, unsigned int id)
4242{
4243 struct irq_2_iommu *irte_info;
4244 struct irq_cfg *cfg;
4245 int index, devid;
4246
4247 cfg = irq_get_chip_data(irq);
4248 if (!cfg)
4249 return -EINVAL;
4250
4251 irte_info = &cfg->irq_2_iommu;
4252 devid = get_hpet_devid(id);
4253 if (devid < 0)
4254 return devid;
4255
4256 index = alloc_irq_index(cfg, devid, 1);
4257 if (index < 0)
4258 return index;
4259
4260 irte_info->sub_handle = devid;
4261 irte_info->irte_index = index;
4262 irte_info->iommu = (void *)cfg;
4263
4264 return 0;
4265}
4266
Joerg Roedel6b474b82012-06-26 16:46:04 +02004267struct irq_remap_ops amd_iommu_irq_ops = {
4268 .supported = amd_iommu_supported,
4269 .prepare = amd_iommu_prepare,
4270 .enable = amd_iommu_enable,
4271 .disable = amd_iommu_disable,
4272 .reenable = amd_iommu_reenable,
4273 .enable_faulting = amd_iommu_enable_faulting,
4274 .setup_ioapic_entry = setup_ioapic_entry,
4275 .set_affinity = set_affinity,
4276 .free_irq = free_irq,
4277 .compose_msi_msg = compose_msi_msg,
4278 .msi_alloc_irq = msi_alloc_irq,
4279 .msi_setup_irq = msi_setup_irq,
4280 .setup_hpet_msi = setup_hpet_msi,
4281};
Joerg Roedel2b324502012-06-21 16:29:10 +02004282#endif