blob: a57e9b7498953bb9ebf947695caea46d73e2bfeb [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 Roedel63ce3ae2015-02-04 16:12:55 +01003 * Author: Joerg Roedel <jroedel@suse.de>
Joerg Roedelb6c02712008-06-26 21:27:53 +02004 * 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>
Joerg Roedel3b839a52015-04-01 14:58:47 +020036#include <linux/dma-contiguous.h>
Jiang Liu7c71d302015-04-13 14:11:33 +080037#include <linux/irqdomain.h>
Joerg Roedel2b324502012-06-21 16:29:10 +020038#include <asm/irq_remapping.h>
39#include <asm/io_apic.h>
40#include <asm/apic.h>
41#include <asm/hw_irq.h>
Joerg Roedel17f5b562011-07-06 17:14:44 +020042#include <asm/msidef.h>
Joerg Roedelb6c02712008-06-26 21:27:53 +020043#include <asm/proto.h>
FUJITA Tomonori46a7fa22008-07-11 10:23:42 +090044#include <asm/iommu.h>
Joerg Roedel1d9b16d2008-11-27 18:39:15 +010045#include <asm/gart.h>
Joerg Roedel27c21272011-05-30 15:56:24 +020046#include <asm/dma.h>
Joerg Roedel403f81d2011-06-14 16:44:25 +020047
48#include "amd_iommu_proto.h"
49#include "amd_iommu_types.h"
Joerg Roedel6b474b82012-06-26 16:46:04 +020050#include "irq_remapping.h"
Joerg Roedelb6c02712008-06-26 21:27:53 +020051
52#define CMD_SET_TYPE(cmd, t) ((cmd)->data[1] |= ((t) << 28))
53
Joerg Roedel815b33f2011-04-06 17:26:49 +020054#define LOOP_TIMEOUT 100000
Joerg Roedel136f78a2008-07-11 17:14:27 +020055
Ohad Ben-Cohenaa3de9c2011-11-10 11:32:29 +020056/*
57 * This bitmap is used to advertise the page sizes our hardware support
58 * to the IOMMU core, which will then use this information to split
59 * physically contiguous memory regions it is mapping into page sizes
60 * that we support.
61 *
Joerg Roedel954e3dd2012-12-02 15:35:37 +010062 * 512GB Pages are not supported due to a hardware bug
Ohad Ben-Cohenaa3de9c2011-11-10 11:32:29 +020063 */
Joerg Roedel954e3dd2012-12-02 15:35:37 +010064#define AMD_IOMMU_PGSIZES ((~0xFFFUL) & ~(2ULL << 38))
Ohad Ben-Cohenaa3de9c2011-11-10 11:32:29 +020065
Joerg Roedelb6c02712008-06-26 21:27:53 +020066static DEFINE_RWLOCK(amd_iommu_devtable_lock);
67
Joerg Roedel8fa5f802011-06-09 12:24:45 +020068/* List of all available dev_data structures */
69static LIST_HEAD(dev_data_list);
70static DEFINE_SPINLOCK(dev_data_list_lock);
71
Joerg Roedel6efed632012-06-14 15:52:58 +020072LIST_HEAD(ioapic_map);
73LIST_HEAD(hpet_map);
74
Joerg Roedel0feae532009-08-26 15:26:30 +020075/*
76 * Domain for untranslated devices - only allocated
77 * if iommu=pt passed on kernel cmd line.
78 */
79static struct protection_domain *pt_domain;
80
Thierry Redingb22f6432014-06-27 09:03:12 +020081static const struct iommu_ops amd_iommu_ops;
Joerg Roedel26961ef2008-12-03 17:00:17 +010082
Joerg Roedel72e1dcc2011-11-10 19:13:51 +010083static ATOMIC_NOTIFIER_HEAD(ppr_notifier);
Joerg Roedel52815b72011-11-17 17:24:28 +010084int amd_iommu_max_glx_val = -1;
Joerg Roedel72e1dcc2011-11-10 19:13:51 +010085
Joerg Roedelac1534a2012-06-21 14:52:40 +020086static struct dma_map_ops amd_iommu_dma_ops;
87
Joerg Roedel431b2a22008-07-11 17:14:22 +020088/*
Joerg Roedel50917e22014-08-05 16:38:38 +020089 * This struct contains device specific data for the IOMMU
90 */
91struct iommu_dev_data {
92 struct list_head list; /* For domain->dev_list */
93 struct list_head dev_data_list; /* For global dev_data_list */
Joerg Roedelf251e182014-08-05 16:48:10 +020094 struct list_head alias_list; /* Link alias-groups together */
Joerg Roedel50917e22014-08-05 16:38:38 +020095 struct iommu_dev_data *alias_data;/* The alias dev_data */
96 struct protection_domain *domain; /* Domain the device is bound to */
Joerg Roedel50917e22014-08-05 16:38:38 +020097 u16 devid; /* PCI Device ID */
98 bool iommu_v2; /* Device can make use of IOMMUv2 */
99 bool passthrough; /* Default for device is pt_domain */
100 struct {
101 bool enabled;
102 int qdep;
103 } ats; /* ATS state */
104 bool pri_tlp; /* PASID TLB required for
105 PPR completions */
106 u32 errata; /* Bitmap for errata to apply */
107};
108
109/*
Joerg Roedel431b2a22008-07-11 17:14:22 +0200110 * general struct to manage commands send to an IOMMU
111 */
Joerg Roedeld6449532008-07-11 17:14:28 +0200112struct iommu_cmd {
Joerg Roedelb6c02712008-06-26 21:27:53 +0200113 u32 data[4];
114};
115
Joerg Roedel05152a02012-06-15 16:53:51 +0200116struct kmem_cache *amd_iommu_irq_cache;
117
Joerg Roedel04bfdd82009-09-02 16:00:23 +0200118static void update_domain(struct protection_domain *domain);
Joerg Roedelaafd8ba2015-05-28 18:41:39 +0200119static int alloc_passthrough_domain(void);
Joerg Roedel7a5a5662015-06-30 08:56:11 +0200120static int protection_domain_init(struct protection_domain *domain);
Chris Wrightc1eee672009-05-21 00:56:58 -0700121
Joerg Roedel15898bb2009-11-24 15:39:42 +0100122/****************************************************************************
123 *
124 * Helper functions
125 *
126 ****************************************************************************/
127
Joerg Roedel3f4b87b2015-03-26 13:43:07 +0100128static struct protection_domain *to_pdomain(struct iommu_domain *dom)
129{
130 return container_of(dom, struct protection_domain, domain);
131}
132
Joerg Roedelf62dda62011-06-09 12:55:35 +0200133static struct iommu_dev_data *alloc_dev_data(u16 devid)
Joerg Roedel8fa5f802011-06-09 12:24:45 +0200134{
135 struct iommu_dev_data *dev_data;
136 unsigned long flags;
137
138 dev_data = kzalloc(sizeof(*dev_data), GFP_KERNEL);
139 if (!dev_data)
140 return NULL;
141
Joerg Roedelf251e182014-08-05 16:48:10 +0200142 INIT_LIST_HEAD(&dev_data->alias_list);
143
Joerg Roedelf62dda62011-06-09 12:55:35 +0200144 dev_data->devid = devid;
Joerg Roedel8fa5f802011-06-09 12:24:45 +0200145
146 spin_lock_irqsave(&dev_data_list_lock, flags);
147 list_add_tail(&dev_data->dev_data_list, &dev_data_list);
148 spin_unlock_irqrestore(&dev_data_list_lock, flags);
149
150 return dev_data;
151}
152
153static void free_dev_data(struct iommu_dev_data *dev_data)
154{
155 unsigned long flags;
156
157 spin_lock_irqsave(&dev_data_list_lock, flags);
158 list_del(&dev_data->dev_data_list);
159 spin_unlock_irqrestore(&dev_data_list_lock, flags);
160
161 kfree(dev_data);
162}
163
Joerg Roedel3b03bb72011-06-09 18:53:25 +0200164static struct iommu_dev_data *search_dev_data(u16 devid)
165{
166 struct iommu_dev_data *dev_data;
167 unsigned long flags;
168
169 spin_lock_irqsave(&dev_data_list_lock, flags);
170 list_for_each_entry(dev_data, &dev_data_list, dev_data_list) {
171 if (dev_data->devid == devid)
172 goto out_unlock;
173 }
174
175 dev_data = NULL;
176
177out_unlock:
178 spin_unlock_irqrestore(&dev_data_list_lock, flags);
179
180 return dev_data;
181}
182
183static struct iommu_dev_data *find_dev_data(u16 devid)
184{
185 struct iommu_dev_data *dev_data;
186
187 dev_data = search_dev_data(devid);
188
189 if (dev_data == NULL)
190 dev_data = alloc_dev_data(devid);
191
192 return dev_data;
193}
194
Joerg Roedel15898bb2009-11-24 15:39:42 +0100195static inline u16 get_device_id(struct device *dev)
196{
197 struct pci_dev *pdev = to_pci_dev(dev);
198
Shuah Khan6f2729b2013-02-27 17:07:30 -0700199 return PCI_DEVID(pdev->bus->number, pdev->devfn);
Joerg Roedel15898bb2009-11-24 15:39:42 +0100200}
201
Joerg Roedel657cbb62009-11-23 15:26:46 +0100202static struct iommu_dev_data *get_dev_data(struct device *dev)
203{
204 return dev->archdata.iommu;
205}
206
Joerg Roedel5abcdba2011-12-01 15:49:45 +0100207static bool pci_iommuv2_capable(struct pci_dev *pdev)
208{
209 static const int caps[] = {
210 PCI_EXT_CAP_ID_ATS,
Joerg Roedel46277b72011-12-07 14:34:02 +0100211 PCI_EXT_CAP_ID_PRI,
212 PCI_EXT_CAP_ID_PASID,
Joerg Roedel5abcdba2011-12-01 15:49:45 +0100213 };
214 int i, pos;
215
216 for (i = 0; i < 3; ++i) {
217 pos = pci_find_ext_capability(pdev, caps[i]);
218 if (pos == 0)
219 return false;
220 }
221
222 return true;
223}
224
Joerg Roedel6a113dd2011-12-01 12:04:58 +0100225static bool pdev_pri_erratum(struct pci_dev *pdev, u32 erratum)
226{
227 struct iommu_dev_data *dev_data;
228
229 dev_data = get_dev_data(&pdev->dev);
230
231 return dev_data->errata & (1 << erratum) ? true : false;
232}
233
Joerg Roedel71c70982009-11-24 16:43:06 +0100234/*
Joerg Roedel0bb6e242015-05-28 18:41:40 +0200235 * This function actually applies the mapping to the page table of the
236 * dma_ops domain.
Joerg Roedel71c70982009-11-24 16:43:06 +0100237 */
Joerg Roedel0bb6e242015-05-28 18:41:40 +0200238static void alloc_unity_mapping(struct dma_ops_domain *dma_dom,
239 struct unity_map_entry *e)
Joerg Roedel71c70982009-11-24 16:43:06 +0100240{
Joerg Roedel0bb6e242015-05-28 18:41:40 +0200241 u64 addr;
Joerg Roedel71c70982009-11-24 16:43:06 +0100242
Joerg Roedel0bb6e242015-05-28 18:41:40 +0200243 for (addr = e->address_start; addr < e->address_end;
244 addr += PAGE_SIZE) {
245 if (addr < dma_dom->aperture_size)
246 __set_bit(addr >> PAGE_SHIFT,
247 dma_dom->aperture[0]->bitmap);
Joerg Roedel71c70982009-11-24 16:43:06 +0100248 }
Joerg Roedel0bb6e242015-05-28 18:41:40 +0200249}
Joerg Roedel71c70982009-11-24 16:43:06 +0100250
Joerg Roedel0bb6e242015-05-28 18:41:40 +0200251/*
252 * Inits the unity mappings required for a specific device
253 */
254static void init_unity_mappings_for_device(struct device *dev,
255 struct dma_ops_domain *dma_dom)
256{
257 struct unity_map_entry *e;
258 u16 devid;
Joerg Roedel71c70982009-11-24 16:43:06 +0100259
Joerg Roedel0bb6e242015-05-28 18:41:40 +0200260 devid = get_device_id(dev);
261
262 list_for_each_entry(e, &amd_iommu_unity_map, list) {
263 if (!(devid >= e->devid_start && devid <= e->devid_end))
264 continue;
265 alloc_unity_mapping(dma_dom, e);
266 }
Joerg Roedel71c70982009-11-24 16:43:06 +0100267}
268
Joerg Roedel98fc5a62009-11-24 17:19:23 +0100269/*
270 * This function checks if the driver got a valid device from the caller to
271 * avoid dereferencing invalid pointers.
272 */
273static bool check_device(struct device *dev)
274{
275 u16 devid;
276
277 if (!dev || !dev->dma_mask)
278 return false;
279
Yijing Wangb82a2272013-12-05 19:42:41 +0800280 /* No PCI device */
281 if (!dev_is_pci(dev))
Joerg Roedel98fc5a62009-11-24 17:19:23 +0100282 return false;
283
284 devid = get_device_id(dev);
285
286 /* Out of our scope? */
287 if (devid > amd_iommu_last_bdf)
288 return false;
289
290 if (amd_iommu_rlookup_table[devid] == NULL)
291 return false;
292
293 return true;
294}
295
Alex Williamson25b11ce2014-09-19 10:03:13 -0600296static void init_iommu_group(struct device *dev)
Alex Williamson2851db22012-10-08 22:49:41 -0600297{
Joerg Roedel0bb6e242015-05-28 18:41:40 +0200298 struct dma_ops_domain *dma_domain;
299 struct iommu_domain *domain;
Alex Williamson2851db22012-10-08 22:49:41 -0600300 struct iommu_group *group;
Alex Williamson2851db22012-10-08 22:49:41 -0600301
Alex Williamson65d53522014-07-03 09:51:30 -0600302 group = iommu_group_get_for_dev(dev);
Joerg Roedel0bb6e242015-05-28 18:41:40 +0200303 if (IS_ERR(group))
304 return;
305
306 domain = iommu_group_default_domain(group);
307 if (!domain)
308 goto out;
309
310 dma_domain = to_pdomain(domain)->priv;
311
312 init_unity_mappings_for_device(dev, dma_domain);
313out:
314 iommu_group_put(group);
Alex Williamsoneb9c9522012-10-08 22:49:35 -0600315}
316
Alex Williamsonc1931092014-07-03 09:51:24 -0600317static int __last_alias(struct pci_dev *pdev, u16 alias, void *data)
318{
319 *(u16 *)data = alias;
320 return 0;
321}
322
323static u16 get_alias(struct device *dev)
324{
325 struct pci_dev *pdev = to_pci_dev(dev);
326 u16 devid, ivrs_alias, pci_alias;
327
328 devid = get_device_id(dev);
329 ivrs_alias = amd_iommu_alias_table[devid];
330 pci_for_each_dma_alias(pdev, __last_alias, &pci_alias);
331
332 if (ivrs_alias == pci_alias)
333 return ivrs_alias;
334
335 /*
336 * DMA alias showdown
337 *
338 * The IVRS is fairly reliable in telling us about aliases, but it
339 * can't know about every screwy device. If we don't have an IVRS
340 * reported alias, use the PCI reported alias. In that case we may
341 * still need to initialize the rlookup and dev_table entries if the
342 * alias is to a non-existent device.
343 */
344 if (ivrs_alias == devid) {
345 if (!amd_iommu_rlookup_table[pci_alias]) {
346 amd_iommu_rlookup_table[pci_alias] =
347 amd_iommu_rlookup_table[devid];
348 memcpy(amd_iommu_dev_table[pci_alias].data,
349 amd_iommu_dev_table[devid].data,
350 sizeof(amd_iommu_dev_table[pci_alias].data));
351 }
352
353 return pci_alias;
354 }
355
356 pr_info("AMD-Vi: Using IVRS reported alias %02x:%02x.%d "
357 "for device %s[%04x:%04x], kernel reported alias "
358 "%02x:%02x.%d\n", PCI_BUS_NUM(ivrs_alias), PCI_SLOT(ivrs_alias),
359 PCI_FUNC(ivrs_alias), dev_name(dev), pdev->vendor, pdev->device,
360 PCI_BUS_NUM(pci_alias), PCI_SLOT(pci_alias),
361 PCI_FUNC(pci_alias));
362
363 /*
364 * If we don't have a PCI DMA alias and the IVRS alias is on the same
365 * bus, then the IVRS table may know about a quirk that we don't.
366 */
367 if (pci_alias == devid &&
368 PCI_BUS_NUM(ivrs_alias) == pdev->bus->number) {
369 pdev->dev_flags |= PCI_DEV_FLAGS_DMA_ALIAS_DEVFN;
370 pdev->dma_alias_devfn = ivrs_alias & 0xff;
371 pr_info("AMD-Vi: Added PCI DMA alias %02x.%d for %s\n",
372 PCI_SLOT(ivrs_alias), PCI_FUNC(ivrs_alias),
373 dev_name(dev));
374 }
375
376 return ivrs_alias;
377}
378
Alex Williamsoneb9c9522012-10-08 22:49:35 -0600379static int iommu_init_device(struct device *dev)
380{
381 struct pci_dev *pdev = to_pci_dev(dev);
382 struct iommu_dev_data *dev_data;
383 u16 alias;
Alex Williamsoneb9c9522012-10-08 22:49:35 -0600384
385 if (dev->archdata.iommu)
386 return 0;
387
388 dev_data = find_dev_data(get_device_id(dev));
389 if (!dev_data)
390 return -ENOMEM;
391
Alex Williamsonc1931092014-07-03 09:51:24 -0600392 alias = get_alias(dev);
393
Alex Williamsoneb9c9522012-10-08 22:49:35 -0600394 if (alias != dev_data->devid) {
395 struct iommu_dev_data *alias_data;
396
397 alias_data = find_dev_data(alias);
398 if (alias_data == NULL) {
399 pr_err("AMD-Vi: Warning: Unhandled device %s\n",
400 dev_name(dev));
401 free_dev_data(dev_data);
402 return -ENOTSUPP;
403 }
404 dev_data->alias_data = alias_data;
Alex Williamsoneb9c9522012-10-08 22:49:35 -0600405
Joerg Roedelf251e182014-08-05 16:48:10 +0200406 /* Add device to the alias_list */
407 list_add(&dev_data->alias_list, &alias_data->alias_list);
Radmila Kompováe644a012013-05-02 17:24:25 +0200408 }
Alex Williamson9dcd6132012-05-30 14:19:07 -0600409
Joerg Roedel5abcdba2011-12-01 15:49:45 +0100410 if (pci_iommuv2_capable(pdev)) {
411 struct amd_iommu *iommu;
412
413 iommu = amd_iommu_rlookup_table[dev_data->devid];
414 dev_data->iommu_v2 = iommu->is_iommu_v2;
415 }
416
Joerg Roedel657cbb62009-11-23 15:26:46 +0100417 dev->archdata.iommu = dev_data;
418
Alex Williamson066f2e92014-06-12 16:12:37 -0600419 iommu_device_link(amd_iommu_rlookup_table[dev_data->devid]->iommu_dev,
420 dev);
421
Joerg Roedel657cbb62009-11-23 15:26:46 +0100422 return 0;
423}
424
Joerg Roedel26018872011-06-06 16:50:14 +0200425static void iommu_ignore_device(struct device *dev)
426{
427 u16 devid, alias;
428
429 devid = get_device_id(dev);
430 alias = amd_iommu_alias_table[devid];
431
432 memset(&amd_iommu_dev_table[devid], 0, sizeof(struct dev_table_entry));
433 memset(&amd_iommu_dev_table[alias], 0, sizeof(struct dev_table_entry));
434
435 amd_iommu_rlookup_table[devid] = NULL;
436 amd_iommu_rlookup_table[alias] = NULL;
437}
438
Joerg Roedel657cbb62009-11-23 15:26:46 +0100439static void iommu_uninit_device(struct device *dev)
440{
Alex Williamsonc1931092014-07-03 09:51:24 -0600441 struct iommu_dev_data *dev_data = search_dev_data(get_device_id(dev));
442
443 if (!dev_data)
444 return;
445
Alex Williamson066f2e92014-06-12 16:12:37 -0600446 iommu_device_unlink(amd_iommu_rlookup_table[dev_data->devid]->iommu_dev,
447 dev);
448
Alex Williamson9dcd6132012-05-30 14:19:07 -0600449 iommu_group_remove_device(dev);
450
Alex Williamsonc1931092014-07-03 09:51:24 -0600451 /* Unlink from alias, it may change if another device is re-plugged */
452 dev_data->alias_data = NULL;
453
Joerg Roedelaafd8ba2015-05-28 18:41:39 +0200454 /* Remove dma-ops */
455 dev->archdata.dma_ops = NULL;
456
Joerg Roedel8fa5f802011-06-09 12:24:45 +0200457 /*
Alex Williamsonc1931092014-07-03 09:51:24 -0600458 * We keep dev_data around for unplugged devices and reuse it when the
459 * device is re-plugged - not doing so would introduce a ton of races.
Joerg Roedel8fa5f802011-06-09 12:24:45 +0200460 */
Joerg Roedel657cbb62009-11-23 15:26:46 +0100461}
Joerg Roedelb7cc9552009-12-10 11:03:39 +0100462
Joerg Roedel7f265082008-12-12 13:50:21 +0100463#ifdef CONFIG_AMD_IOMMU_STATS
464
465/*
466 * Initialization code for statistics collection
467 */
468
Joerg Roedelda49f6d2008-12-12 14:59:58 +0100469DECLARE_STATS_COUNTER(compl_wait);
Joerg Roedel0f2a86f2008-12-12 15:05:16 +0100470DECLARE_STATS_COUNTER(cnt_map_single);
Joerg Roedel146a6912008-12-12 15:07:12 +0100471DECLARE_STATS_COUNTER(cnt_unmap_single);
Joerg Roedeld03f067a2008-12-12 15:09:48 +0100472DECLARE_STATS_COUNTER(cnt_map_sg);
Joerg Roedel55877a62008-12-12 15:12:14 +0100473DECLARE_STATS_COUNTER(cnt_unmap_sg);
Joerg Roedelc8f0fb32008-12-12 15:14:21 +0100474DECLARE_STATS_COUNTER(cnt_alloc_coherent);
Joerg Roedel5d31ee72008-12-12 15:16:38 +0100475DECLARE_STATS_COUNTER(cnt_free_coherent);
Joerg Roedelc1858972008-12-12 15:42:39 +0100476DECLARE_STATS_COUNTER(cross_page);
Joerg Roedelf57d98a2008-12-12 15:46:29 +0100477DECLARE_STATS_COUNTER(domain_flush_single);
Joerg Roedel18811f52008-12-12 15:48:28 +0100478DECLARE_STATS_COUNTER(domain_flush_all);
Joerg Roedel5774f7c2008-12-12 15:57:30 +0100479DECLARE_STATS_COUNTER(alloced_io_mem);
Joerg Roedel8ecaf8f2008-12-12 16:13:04 +0100480DECLARE_STATS_COUNTER(total_map_requests);
Joerg Roedel399be2f2011-12-01 16:53:47 +0100481DECLARE_STATS_COUNTER(complete_ppr);
482DECLARE_STATS_COUNTER(invalidate_iotlb);
483DECLARE_STATS_COUNTER(invalidate_iotlb_all);
484DECLARE_STATS_COUNTER(pri_requests);
485
Joerg Roedel7f265082008-12-12 13:50:21 +0100486static struct dentry *stats_dir;
Joerg Roedel7f265082008-12-12 13:50:21 +0100487static struct dentry *de_fflush;
488
489static void amd_iommu_stats_add(struct __iommu_counter *cnt)
490{
491 if (stats_dir == NULL)
492 return;
493
494 cnt->dent = debugfs_create_u64(cnt->name, 0444, stats_dir,
495 &cnt->value);
496}
497
498static void amd_iommu_stats_init(void)
499{
500 stats_dir = debugfs_create_dir("amd-iommu", NULL);
501 if (stats_dir == NULL)
502 return;
503
Joerg Roedel7f265082008-12-12 13:50:21 +0100504 de_fflush = debugfs_create_bool("fullflush", 0444, stats_dir,
Dan Carpenter3775d482012-06-27 12:09:18 +0300505 &amd_iommu_unmap_flush);
Joerg Roedelda49f6d2008-12-12 14:59:58 +0100506
507 amd_iommu_stats_add(&compl_wait);
Joerg Roedel0f2a86f2008-12-12 15:05:16 +0100508 amd_iommu_stats_add(&cnt_map_single);
Joerg Roedel146a6912008-12-12 15:07:12 +0100509 amd_iommu_stats_add(&cnt_unmap_single);
Joerg Roedeld03f067a2008-12-12 15:09:48 +0100510 amd_iommu_stats_add(&cnt_map_sg);
Joerg Roedel55877a62008-12-12 15:12:14 +0100511 amd_iommu_stats_add(&cnt_unmap_sg);
Joerg Roedelc8f0fb32008-12-12 15:14:21 +0100512 amd_iommu_stats_add(&cnt_alloc_coherent);
Joerg Roedel5d31ee72008-12-12 15:16:38 +0100513 amd_iommu_stats_add(&cnt_free_coherent);
Joerg Roedelc1858972008-12-12 15:42:39 +0100514 amd_iommu_stats_add(&cross_page);
Joerg Roedelf57d98a2008-12-12 15:46:29 +0100515 amd_iommu_stats_add(&domain_flush_single);
Joerg Roedel18811f52008-12-12 15:48:28 +0100516 amd_iommu_stats_add(&domain_flush_all);
Joerg Roedel5774f7c2008-12-12 15:57:30 +0100517 amd_iommu_stats_add(&alloced_io_mem);
Joerg Roedel8ecaf8f2008-12-12 16:13:04 +0100518 amd_iommu_stats_add(&total_map_requests);
Joerg Roedel399be2f2011-12-01 16:53:47 +0100519 amd_iommu_stats_add(&complete_ppr);
520 amd_iommu_stats_add(&invalidate_iotlb);
521 amd_iommu_stats_add(&invalidate_iotlb_all);
522 amd_iommu_stats_add(&pri_requests);
Joerg Roedel7f265082008-12-12 13:50:21 +0100523}
524
525#endif
526
Joerg Roedel431b2a22008-07-11 17:14:22 +0200527/****************************************************************************
528 *
Joerg Roedela80dc3e2008-09-11 16:51:41 +0200529 * Interrupt handling functions
530 *
531 ****************************************************************************/
532
Joerg Roedele3e59872009-09-03 14:02:10 +0200533static void dump_dte_entry(u16 devid)
534{
535 int i;
536
Joerg Roedelee6c2862011-11-09 12:06:03 +0100537 for (i = 0; i < 4; ++i)
538 pr_err("AMD-Vi: DTE[%d]: %016llx\n", i,
Joerg Roedele3e59872009-09-03 14:02:10 +0200539 amd_iommu_dev_table[devid].data[i]);
540}
541
Joerg Roedel945b4ac2009-09-03 14:25:02 +0200542static void dump_command(unsigned long phys_addr)
543{
544 struct iommu_cmd *cmd = phys_to_virt(phys_addr);
545 int i;
546
547 for (i = 0; i < 4; ++i)
548 pr_err("AMD-Vi: CMD[%d]: %08x\n", i, cmd->data[i]);
549}
550
Joerg Roedela345b232009-09-03 15:01:43 +0200551static void iommu_print_event(struct amd_iommu *iommu, void *__evt)
Joerg Roedel90008ee2008-09-09 16:41:05 +0200552{
Joerg Roedel3d06fca2012-04-12 14:12:00 +0200553 int type, devid, domid, flags;
554 volatile u32 *event = __evt;
555 int count = 0;
556 u64 address;
557
558retry:
559 type = (event[1] >> EVENT_TYPE_SHIFT) & EVENT_TYPE_MASK;
560 devid = (event[0] >> EVENT_DEVID_SHIFT) & EVENT_DEVID_MASK;
561 domid = (event[1] >> EVENT_DOMID_SHIFT) & EVENT_DOMID_MASK;
562 flags = (event[1] >> EVENT_FLAGS_SHIFT) & EVENT_FLAGS_MASK;
563 address = (u64)(((u64)event[3]) << 32) | event[2];
564
565 if (type == 0) {
566 /* Did we hit the erratum? */
567 if (++count == LOOP_TIMEOUT) {
568 pr_err("AMD-Vi: No event written to event log\n");
569 return;
570 }
571 udelay(1);
572 goto retry;
573 }
Joerg Roedel90008ee2008-09-09 16:41:05 +0200574
Joerg Roedel4c6f40d2009-09-01 16:43:58 +0200575 printk(KERN_ERR "AMD-Vi: Event logged [");
Joerg Roedel90008ee2008-09-09 16:41:05 +0200576
577 switch (type) {
578 case EVENT_TYPE_ILL_DEV:
579 printk("ILLEGAL_DEV_TABLE_ENTRY device=%02x:%02x.%x "
580 "address=0x%016llx flags=0x%04x]\n",
Shuah Khanc5081cd2013-02-27 17:07:19 -0700581 PCI_BUS_NUM(devid), PCI_SLOT(devid), PCI_FUNC(devid),
Joerg Roedel90008ee2008-09-09 16:41:05 +0200582 address, flags);
Joerg Roedele3e59872009-09-03 14:02:10 +0200583 dump_dte_entry(devid);
Joerg Roedel90008ee2008-09-09 16:41:05 +0200584 break;
585 case EVENT_TYPE_IO_FAULT:
586 printk("IO_PAGE_FAULT device=%02x:%02x.%x "
587 "domain=0x%04x address=0x%016llx flags=0x%04x]\n",
Shuah Khanc5081cd2013-02-27 17:07:19 -0700588 PCI_BUS_NUM(devid), PCI_SLOT(devid), PCI_FUNC(devid),
Joerg Roedel90008ee2008-09-09 16:41:05 +0200589 domid, address, flags);
590 break;
591 case EVENT_TYPE_DEV_TAB_ERR:
592 printk("DEV_TAB_HARDWARE_ERROR device=%02x:%02x.%x "
593 "address=0x%016llx flags=0x%04x]\n",
Shuah Khanc5081cd2013-02-27 17:07:19 -0700594 PCI_BUS_NUM(devid), PCI_SLOT(devid), PCI_FUNC(devid),
Joerg Roedel90008ee2008-09-09 16:41:05 +0200595 address, flags);
596 break;
597 case EVENT_TYPE_PAGE_TAB_ERR:
598 printk("PAGE_TAB_HARDWARE_ERROR device=%02x:%02x.%x "
599 "domain=0x%04x address=0x%016llx flags=0x%04x]\n",
Shuah Khanc5081cd2013-02-27 17:07:19 -0700600 PCI_BUS_NUM(devid), PCI_SLOT(devid), PCI_FUNC(devid),
Joerg Roedel90008ee2008-09-09 16:41:05 +0200601 domid, address, flags);
602 break;
603 case EVENT_TYPE_ILL_CMD:
604 printk("ILLEGAL_COMMAND_ERROR address=0x%016llx]\n", address);
Joerg Roedel945b4ac2009-09-03 14:25:02 +0200605 dump_command(address);
Joerg Roedel90008ee2008-09-09 16:41:05 +0200606 break;
607 case EVENT_TYPE_CMD_HARD_ERR:
608 printk("COMMAND_HARDWARE_ERROR address=0x%016llx "
609 "flags=0x%04x]\n", address, flags);
610 break;
611 case EVENT_TYPE_IOTLB_INV_TO:
612 printk("IOTLB_INV_TIMEOUT device=%02x:%02x.%x "
613 "address=0x%016llx]\n",
Shuah Khanc5081cd2013-02-27 17:07:19 -0700614 PCI_BUS_NUM(devid), PCI_SLOT(devid), PCI_FUNC(devid),
Joerg Roedel90008ee2008-09-09 16:41:05 +0200615 address);
616 break;
617 case EVENT_TYPE_INV_DEV_REQ:
618 printk("INVALID_DEVICE_REQUEST device=%02x:%02x.%x "
619 "address=0x%016llx flags=0x%04x]\n",
Shuah Khanc5081cd2013-02-27 17:07:19 -0700620 PCI_BUS_NUM(devid), PCI_SLOT(devid), PCI_FUNC(devid),
Joerg Roedel90008ee2008-09-09 16:41:05 +0200621 address, flags);
622 break;
623 default:
624 printk(KERN_ERR "UNKNOWN type=0x%02x]\n", type);
625 }
Joerg Roedel3d06fca2012-04-12 14:12:00 +0200626
627 memset(__evt, 0, 4 * sizeof(u32));
Joerg Roedel90008ee2008-09-09 16:41:05 +0200628}
629
630static void iommu_poll_events(struct amd_iommu *iommu)
631{
632 u32 head, tail;
Joerg Roedel90008ee2008-09-09 16:41:05 +0200633
634 head = readl(iommu->mmio_base + MMIO_EVT_HEAD_OFFSET);
635 tail = readl(iommu->mmio_base + MMIO_EVT_TAIL_OFFSET);
636
637 while (head != tail) {
Joerg Roedela345b232009-09-03 15:01:43 +0200638 iommu_print_event(iommu, iommu->evt_buf + head);
Joerg Roedel90008ee2008-09-09 16:41:05 +0200639 head = (head + EVENT_ENTRY_SIZE) % iommu->evt_buf_size;
640 }
641
642 writel(head, iommu->mmio_base + MMIO_EVT_HEAD_OFFSET);
Joerg Roedel90008ee2008-09-09 16:41:05 +0200643}
644
Joerg Roedeleee53532012-06-01 15:20:23 +0200645static void iommu_handle_ppr_entry(struct amd_iommu *iommu, u64 *raw)
Joerg Roedel72e1dcc2011-11-10 19:13:51 +0100646{
647 struct amd_iommu_fault fault;
Joerg Roedel72e1dcc2011-11-10 19:13:51 +0100648
Joerg Roedel399be2f2011-12-01 16:53:47 +0100649 INC_STATS_COUNTER(pri_requests);
650
Joerg Roedel72e1dcc2011-11-10 19:13:51 +0100651 if (PPR_REQ_TYPE(raw[0]) != PPR_REQ_FAULT) {
652 pr_err_ratelimited("AMD-Vi: Unknown PPR request received\n");
653 return;
654 }
655
656 fault.address = raw[1];
657 fault.pasid = PPR_PASID(raw[0]);
658 fault.device_id = PPR_DEVID(raw[0]);
659 fault.tag = PPR_TAG(raw[0]);
660 fault.flags = PPR_FLAGS(raw[0]);
661
Joerg Roedel72e1dcc2011-11-10 19:13:51 +0100662 atomic_notifier_call_chain(&ppr_notifier, 0, &fault);
663}
664
665static void iommu_poll_ppr_log(struct amd_iommu *iommu)
666{
Joerg Roedel72e1dcc2011-11-10 19:13:51 +0100667 u32 head, tail;
668
669 if (iommu->ppr_log == NULL)
670 return;
671
Joerg Roedel72e1dcc2011-11-10 19:13:51 +0100672 head = readl(iommu->mmio_base + MMIO_PPR_HEAD_OFFSET);
673 tail = readl(iommu->mmio_base + MMIO_PPR_TAIL_OFFSET);
674
675 while (head != tail) {
Joerg Roedeleee53532012-06-01 15:20:23 +0200676 volatile u64 *raw;
677 u64 entry[2];
678 int i;
Joerg Roedel72e1dcc2011-11-10 19:13:51 +0100679
Joerg Roedeleee53532012-06-01 15:20:23 +0200680 raw = (u64 *)(iommu->ppr_log + head);
Joerg Roedel72e1dcc2011-11-10 19:13:51 +0100681
Joerg Roedeleee53532012-06-01 15:20:23 +0200682 /*
683 * Hardware bug: Interrupt may arrive before the entry is
684 * written to memory. If this happens we need to wait for the
685 * entry to arrive.
686 */
687 for (i = 0; i < LOOP_TIMEOUT; ++i) {
688 if (PPR_REQ_TYPE(raw[0]) != 0)
689 break;
690 udelay(1);
691 }
692
693 /* Avoid memcpy function-call overhead */
694 entry[0] = raw[0];
695 entry[1] = raw[1];
696
697 /*
698 * To detect the hardware bug we need to clear the entry
699 * back to zero.
700 */
701 raw[0] = raw[1] = 0UL;
702
703 /* Update head pointer of hardware ring-buffer */
Joerg Roedel72e1dcc2011-11-10 19:13:51 +0100704 head = (head + PPR_ENTRY_SIZE) % PPR_LOG_SIZE;
705 writel(head, iommu->mmio_base + MMIO_PPR_HEAD_OFFSET);
Joerg Roedeleee53532012-06-01 15:20:23 +0200706
Joerg Roedeleee53532012-06-01 15:20:23 +0200707 /* Handle PPR entry */
708 iommu_handle_ppr_entry(iommu, entry);
709
Joerg Roedeleee53532012-06-01 15:20:23 +0200710 /* Refresh ring-buffer information */
711 head = readl(iommu->mmio_base + MMIO_PPR_HEAD_OFFSET);
Joerg Roedel72e1dcc2011-11-10 19:13:51 +0100712 tail = readl(iommu->mmio_base + MMIO_PPR_TAIL_OFFSET);
713 }
Joerg Roedel72e1dcc2011-11-10 19:13:51 +0100714}
715
Joerg Roedel72fe00f2011-05-10 10:50:42 +0200716irqreturn_t amd_iommu_int_thread(int irq, void *data)
Joerg Roedela80dc3e2008-09-11 16:51:41 +0200717{
Suravee Suthikulpanit3f398bc2013-04-22 16:32:34 -0500718 struct amd_iommu *iommu = (struct amd_iommu *) data;
719 u32 status = readl(iommu->mmio_base + MMIO_STATUS_OFFSET);
Joerg Roedel90008ee2008-09-09 16:41:05 +0200720
Suravee Suthikulpanit3f398bc2013-04-22 16:32:34 -0500721 while (status & (MMIO_STATUS_EVT_INT_MASK | MMIO_STATUS_PPR_INT_MASK)) {
722 /* Enable EVT and PPR interrupts again */
723 writel((MMIO_STATUS_EVT_INT_MASK | MMIO_STATUS_PPR_INT_MASK),
724 iommu->mmio_base + MMIO_STATUS_OFFSET);
725
726 if (status & MMIO_STATUS_EVT_INT_MASK) {
727 pr_devel("AMD-Vi: Processing IOMMU Event Log\n");
728 iommu_poll_events(iommu);
729 }
730
731 if (status & MMIO_STATUS_PPR_INT_MASK) {
732 pr_devel("AMD-Vi: Processing IOMMU PPR Log\n");
733 iommu_poll_ppr_log(iommu);
734 }
735
736 /*
737 * Hardware bug: ERBT1312
738 * When re-enabling interrupt (by writing 1
739 * to clear the bit), the hardware might also try to set
740 * the interrupt bit in the event status register.
741 * In this scenario, the bit will be set, and disable
742 * subsequent interrupts.
743 *
744 * Workaround: The IOMMU driver should read back the
745 * status register and check if the interrupt bits are cleared.
746 * If not, driver will need to go through the interrupt handler
747 * again and re-clear the bits
748 */
749 status = readl(iommu->mmio_base + MMIO_STATUS_OFFSET);
Joerg Roedel72e1dcc2011-11-10 19:13:51 +0100750 }
Joerg Roedel90008ee2008-09-09 16:41:05 +0200751 return IRQ_HANDLED;
Joerg Roedela80dc3e2008-09-11 16:51:41 +0200752}
753
Joerg Roedel72fe00f2011-05-10 10:50:42 +0200754irqreturn_t amd_iommu_int_handler(int irq, void *data)
755{
756 return IRQ_WAKE_THREAD;
757}
758
Joerg Roedela80dc3e2008-09-11 16:51:41 +0200759/****************************************************************************
760 *
Joerg Roedel431b2a22008-07-11 17:14:22 +0200761 * IOMMU command queuing functions
762 *
763 ****************************************************************************/
764
Joerg Roedelac0ea6e2011-04-06 18:38:20 +0200765static int wait_on_sem(volatile u64 *sem)
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200766{
Joerg Roedelac0ea6e2011-04-06 18:38:20 +0200767 int i = 0;
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200768
Joerg Roedelac0ea6e2011-04-06 18:38:20 +0200769 while (*sem == 0 && i < LOOP_TIMEOUT) {
770 udelay(1);
771 i += 1;
772 }
773
774 if (i == LOOP_TIMEOUT) {
775 pr_alert("AMD-Vi: Completion-Wait loop timed out\n");
776 return -EIO;
777 }
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200778
779 return 0;
780}
781
Joerg Roedelac0ea6e2011-04-06 18:38:20 +0200782static void copy_cmd_to_buffer(struct amd_iommu *iommu,
783 struct iommu_cmd *cmd,
784 u32 tail)
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200785{
Joerg Roedelac0ea6e2011-04-06 18:38:20 +0200786 u8 *target;
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200787
Joerg Roedelac0ea6e2011-04-06 18:38:20 +0200788 target = iommu->cmd_buf + tail;
789 tail = (tail + sizeof(*cmd)) % iommu->cmd_buf_size;
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200790
Joerg Roedelac0ea6e2011-04-06 18:38:20 +0200791 /* Copy command to buffer */
792 memcpy(target, cmd, sizeof(*cmd));
793
794 /* Tell the IOMMU about it */
795 writel(tail, iommu->mmio_base + MMIO_CMD_TAIL_OFFSET);
796}
797
Joerg Roedel815b33f2011-04-06 17:26:49 +0200798static void build_completion_wait(struct iommu_cmd *cmd, u64 address)
Joerg Roedelded46732011-04-06 10:53:48 +0200799{
Joerg Roedel815b33f2011-04-06 17:26:49 +0200800 WARN_ON(address & 0x7ULL);
801
Joerg Roedelded46732011-04-06 10:53:48 +0200802 memset(cmd, 0, sizeof(*cmd));
Joerg Roedel815b33f2011-04-06 17:26:49 +0200803 cmd->data[0] = lower_32_bits(__pa(address)) | CMD_COMPL_WAIT_STORE_MASK;
804 cmd->data[1] = upper_32_bits(__pa(address));
805 cmd->data[2] = 1;
Joerg Roedelded46732011-04-06 10:53:48 +0200806 CMD_SET_TYPE(cmd, CMD_COMPL_WAIT);
807}
808
Joerg Roedel94fe79e2011-04-06 11:07:21 +0200809static void build_inv_dte(struct iommu_cmd *cmd, u16 devid)
810{
811 memset(cmd, 0, sizeof(*cmd));
812 cmd->data[0] = devid;
813 CMD_SET_TYPE(cmd, CMD_INV_DEV_ENTRY);
814}
815
Joerg Roedel11b64022011-04-06 11:49:28 +0200816static void build_inv_iommu_pages(struct iommu_cmd *cmd, u64 address,
817 size_t size, u16 domid, int pde)
818{
819 u64 pages;
Quentin Lambertae0cbbb2015-02-04 11:40:07 +0100820 bool s;
Joerg Roedel11b64022011-04-06 11:49:28 +0200821
822 pages = iommu_num_pages(address, size, PAGE_SIZE);
Quentin Lambertae0cbbb2015-02-04 11:40:07 +0100823 s = false;
Joerg Roedel11b64022011-04-06 11:49:28 +0200824
825 if (pages > 1) {
826 /*
827 * If we have to flush more than one page, flush all
828 * TLB entries for this domain
829 */
830 address = CMD_INV_IOMMU_ALL_PAGES_ADDRESS;
Quentin Lambertae0cbbb2015-02-04 11:40:07 +0100831 s = true;
Joerg Roedel11b64022011-04-06 11:49:28 +0200832 }
833
834 address &= PAGE_MASK;
835
836 memset(cmd, 0, sizeof(*cmd));
837 cmd->data[1] |= domid;
838 cmd->data[2] = lower_32_bits(address);
839 cmd->data[3] = upper_32_bits(address);
840 CMD_SET_TYPE(cmd, CMD_INV_IOMMU_PAGES);
841 if (s) /* size bit - we flush more than one 4kb page */
842 cmd->data[2] |= CMD_INV_IOMMU_PAGES_SIZE_MASK;
Frank Arnolddf805ab2012-08-27 19:21:04 +0200843 if (pde) /* PDE bit - we want to flush everything, not only the PTEs */
Joerg Roedel11b64022011-04-06 11:49:28 +0200844 cmd->data[2] |= CMD_INV_IOMMU_PAGES_PDE_MASK;
845}
846
Joerg Roedelcb41ed82011-04-05 11:00:53 +0200847static void build_inv_iotlb_pages(struct iommu_cmd *cmd, u16 devid, int qdep,
848 u64 address, size_t size)
849{
850 u64 pages;
Quentin Lambertae0cbbb2015-02-04 11:40:07 +0100851 bool s;
Joerg Roedelcb41ed82011-04-05 11:00:53 +0200852
853 pages = iommu_num_pages(address, size, PAGE_SIZE);
Quentin Lambertae0cbbb2015-02-04 11:40:07 +0100854 s = false;
Joerg Roedelcb41ed82011-04-05 11:00:53 +0200855
856 if (pages > 1) {
857 /*
858 * If we have to flush more than one page, flush all
859 * TLB entries for this domain
860 */
861 address = CMD_INV_IOMMU_ALL_PAGES_ADDRESS;
Quentin Lambertae0cbbb2015-02-04 11:40:07 +0100862 s = true;
Joerg Roedelcb41ed82011-04-05 11:00:53 +0200863 }
864
865 address &= PAGE_MASK;
866
867 memset(cmd, 0, sizeof(*cmd));
868 cmd->data[0] = devid;
869 cmd->data[0] |= (qdep & 0xff) << 24;
870 cmd->data[1] = devid;
871 cmd->data[2] = lower_32_bits(address);
872 cmd->data[3] = upper_32_bits(address);
873 CMD_SET_TYPE(cmd, CMD_INV_IOTLB_PAGES);
874 if (s)
875 cmd->data[2] |= CMD_INV_IOMMU_PAGES_SIZE_MASK;
876}
877
Joerg Roedel22e266c2011-11-21 15:59:08 +0100878static void build_inv_iommu_pasid(struct iommu_cmd *cmd, u16 domid, int pasid,
879 u64 address, bool size)
880{
881 memset(cmd, 0, sizeof(*cmd));
882
883 address &= ~(0xfffULL);
884
Suravee Suthikulpanita919a012014-03-05 18:54:18 -0600885 cmd->data[0] = pasid;
Joerg Roedel22e266c2011-11-21 15:59:08 +0100886 cmd->data[1] = domid;
887 cmd->data[2] = lower_32_bits(address);
888 cmd->data[3] = upper_32_bits(address);
889 cmd->data[2] |= CMD_INV_IOMMU_PAGES_PDE_MASK;
890 cmd->data[2] |= CMD_INV_IOMMU_PAGES_GN_MASK;
891 if (size)
892 cmd->data[2] |= CMD_INV_IOMMU_PAGES_SIZE_MASK;
893 CMD_SET_TYPE(cmd, CMD_INV_IOMMU_PAGES);
894}
895
896static void build_inv_iotlb_pasid(struct iommu_cmd *cmd, u16 devid, int pasid,
897 int qdep, u64 address, bool size)
898{
899 memset(cmd, 0, sizeof(*cmd));
900
901 address &= ~(0xfffULL);
902
903 cmd->data[0] = devid;
Jay Cornwalle8d2d822014-02-26 15:49:31 -0600904 cmd->data[0] |= ((pasid >> 8) & 0xff) << 16;
Joerg Roedel22e266c2011-11-21 15:59:08 +0100905 cmd->data[0] |= (qdep & 0xff) << 24;
906 cmd->data[1] = devid;
Jay Cornwalle8d2d822014-02-26 15:49:31 -0600907 cmd->data[1] |= (pasid & 0xff) << 16;
Joerg Roedel22e266c2011-11-21 15:59:08 +0100908 cmd->data[2] = lower_32_bits(address);
909 cmd->data[2] |= CMD_INV_IOMMU_PAGES_GN_MASK;
910 cmd->data[3] = upper_32_bits(address);
911 if (size)
912 cmd->data[2] |= CMD_INV_IOMMU_PAGES_SIZE_MASK;
913 CMD_SET_TYPE(cmd, CMD_INV_IOTLB_PAGES);
914}
915
Joerg Roedelc99afa22011-11-21 18:19:25 +0100916static void build_complete_ppr(struct iommu_cmd *cmd, u16 devid, int pasid,
917 int status, int tag, bool gn)
918{
919 memset(cmd, 0, sizeof(*cmd));
920
921 cmd->data[0] = devid;
922 if (gn) {
Suravee Suthikulpanita919a012014-03-05 18:54:18 -0600923 cmd->data[1] = pasid;
Joerg Roedelc99afa22011-11-21 18:19:25 +0100924 cmd->data[2] = CMD_INV_IOMMU_PAGES_GN_MASK;
925 }
926 cmd->data[3] = tag & 0x1ff;
927 cmd->data[3] |= (status & PPR_STATUS_MASK) << PPR_STATUS_SHIFT;
928
929 CMD_SET_TYPE(cmd, CMD_COMPLETE_PPR);
930}
931
Joerg Roedel58fc7f12011-04-11 11:13:24 +0200932static void build_inv_all(struct iommu_cmd *cmd)
933{
934 memset(cmd, 0, sizeof(*cmd));
935 CMD_SET_TYPE(cmd, CMD_INV_ALL);
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200936}
937
Joerg Roedel7ef27982012-06-21 16:46:04 +0200938static void build_inv_irt(struct iommu_cmd *cmd, u16 devid)
939{
940 memset(cmd, 0, sizeof(*cmd));
941 cmd->data[0] = devid;
942 CMD_SET_TYPE(cmd, CMD_INV_IRT);
943}
944
Joerg Roedel431b2a22008-07-11 17:14:22 +0200945/*
Joerg Roedelb6c02712008-06-26 21:27:53 +0200946 * Writes the command to the IOMMUs command buffer and informs the
Joerg Roedelac0ea6e2011-04-06 18:38:20 +0200947 * hardware about the new command.
Joerg Roedel431b2a22008-07-11 17:14:22 +0200948 */
Joerg Roedelf1ca1512011-09-02 14:10:32 +0200949static int iommu_queue_command_sync(struct amd_iommu *iommu,
950 struct iommu_cmd *cmd,
951 bool sync)
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200952{
Joerg Roedelac0ea6e2011-04-06 18:38:20 +0200953 u32 left, tail, head, next_tail;
Joerg Roedel815b33f2011-04-06 17:26:49 +0200954 unsigned long flags;
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200955
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200956 WARN_ON(iommu->cmd_buf_size & CMD_BUFFER_UNINITIALIZED);
Joerg Roedelda49f6d2008-12-12 14:59:58 +0100957
Joerg Roedelac0ea6e2011-04-06 18:38:20 +0200958again:
Joerg Roedel815b33f2011-04-06 17:26:49 +0200959 spin_lock_irqsave(&iommu->lock, flags);
Joerg Roedelac0ea6e2011-04-06 18:38:20 +0200960
961 head = readl(iommu->mmio_base + MMIO_CMD_HEAD_OFFSET);
962 tail = readl(iommu->mmio_base + MMIO_CMD_TAIL_OFFSET);
963 next_tail = (tail + sizeof(*cmd)) % iommu->cmd_buf_size;
964 left = (head - next_tail) % iommu->cmd_buf_size;
965
966 if (left <= 2) {
967 struct iommu_cmd sync_cmd;
968 volatile u64 sem = 0;
969 int ret;
970
971 build_completion_wait(&sync_cmd, (u64)&sem);
972 copy_cmd_to_buffer(iommu, &sync_cmd, tail);
973
974 spin_unlock_irqrestore(&iommu->lock, flags);
975
976 if ((ret = wait_on_sem(&sem)) != 0)
977 return ret;
978
979 goto again;
Joerg Roedel136f78a2008-07-11 17:14:27 +0200980 }
981
Joerg Roedelac0ea6e2011-04-06 18:38:20 +0200982 copy_cmd_to_buffer(iommu, cmd, tail);
Joerg Roedel519c31b2008-08-14 19:55:15 +0200983
Joerg Roedelac0ea6e2011-04-06 18:38:20 +0200984 /* We need to sync now to make sure all commands are processed */
Joerg Roedelf1ca1512011-09-02 14:10:32 +0200985 iommu->need_sync = sync;
Joerg Roedelac0ea6e2011-04-06 18:38:20 +0200986
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200987 spin_unlock_irqrestore(&iommu->lock, flags);
988
Joerg Roedel815b33f2011-04-06 17:26:49 +0200989 return 0;
Joerg Roedel8d201962008-12-02 20:34:41 +0100990}
991
Joerg Roedelf1ca1512011-09-02 14:10:32 +0200992static int iommu_queue_command(struct amd_iommu *iommu, struct iommu_cmd *cmd)
993{
994 return iommu_queue_command_sync(iommu, cmd, true);
995}
996
Joerg Roedel8d201962008-12-02 20:34:41 +0100997/*
998 * This function queues a completion wait command into the command
999 * buffer of an IOMMU
1000 */
Joerg Roedel8d201962008-12-02 20:34:41 +01001001static int iommu_completion_wait(struct amd_iommu *iommu)
1002{
Joerg Roedel815b33f2011-04-06 17:26:49 +02001003 struct iommu_cmd cmd;
1004 volatile u64 sem = 0;
Joerg Roedelac0ea6e2011-04-06 18:38:20 +02001005 int ret;
Joerg Roedel8d201962008-12-02 20:34:41 +01001006
1007 if (!iommu->need_sync)
Joerg Roedel815b33f2011-04-06 17:26:49 +02001008 return 0;
Joerg Roedel8d201962008-12-02 20:34:41 +01001009
Joerg Roedel815b33f2011-04-06 17:26:49 +02001010 build_completion_wait(&cmd, (u64)&sem);
Joerg Roedel8d201962008-12-02 20:34:41 +01001011
Joerg Roedelf1ca1512011-09-02 14:10:32 +02001012 ret = iommu_queue_command_sync(iommu, &cmd, false);
Joerg Roedel8d201962008-12-02 20:34:41 +01001013 if (ret)
Joerg Roedel815b33f2011-04-06 17:26:49 +02001014 return ret;
Joerg Roedel8d201962008-12-02 20:34:41 +01001015
Joerg Roedelac0ea6e2011-04-06 18:38:20 +02001016 return wait_on_sem(&sem);
Joerg Roedela19ae1e2008-06-26 21:27:55 +02001017}
1018
Joerg Roedeld8c13082011-04-06 18:51:26 +02001019static int iommu_flush_dte(struct amd_iommu *iommu, u16 devid)
Joerg Roedela19ae1e2008-06-26 21:27:55 +02001020{
1021 struct iommu_cmd cmd;
1022
Joerg Roedeld8c13082011-04-06 18:51:26 +02001023 build_inv_dte(&cmd, devid);
Joerg Roedela19ae1e2008-06-26 21:27:55 +02001024
Joerg Roedeld8c13082011-04-06 18:51:26 +02001025 return iommu_queue_command(iommu, &cmd);
1026}
1027
Joerg Roedel7d0c5cc2011-04-07 08:16:10 +02001028static void iommu_flush_dte_all(struct amd_iommu *iommu)
1029{
1030 u32 devid;
1031
1032 for (devid = 0; devid <= 0xffff; ++devid)
1033 iommu_flush_dte(iommu, devid);
1034
1035 iommu_completion_wait(iommu);
Joerg Roedela19ae1e2008-06-26 21:27:55 +02001036}
1037
1038/*
Joerg Roedel7d0c5cc2011-04-07 08:16:10 +02001039 * This function uses heavy locking and may disable irqs for some time. But
1040 * this is no issue because it is only called during resume.
Joerg Roedela19ae1e2008-06-26 21:27:55 +02001041 */
Joerg Roedel7d0c5cc2011-04-07 08:16:10 +02001042static void iommu_flush_tlb_all(struct amd_iommu *iommu)
Joerg Roedela19ae1e2008-06-26 21:27:55 +02001043{
Joerg Roedel7d0c5cc2011-04-07 08:16:10 +02001044 u32 dom_id;
Joerg Roedela19ae1e2008-06-26 21:27:55 +02001045
Joerg Roedel7d0c5cc2011-04-07 08:16:10 +02001046 for (dom_id = 0; dom_id <= 0xffff; ++dom_id) {
1047 struct iommu_cmd cmd;
1048 build_inv_iommu_pages(&cmd, 0, CMD_INV_IOMMU_ALL_PAGES_ADDRESS,
1049 dom_id, 1);
1050 iommu_queue_command(iommu, &cmd);
1051 }
Joerg Roedel431b2a22008-07-11 17:14:22 +02001052
Joerg Roedel7d0c5cc2011-04-07 08:16:10 +02001053 iommu_completion_wait(iommu);
Joerg Roedela19ae1e2008-06-26 21:27:55 +02001054}
1055
Joerg Roedel58fc7f12011-04-11 11:13:24 +02001056static void iommu_flush_all(struct amd_iommu *iommu)
1057{
1058 struct iommu_cmd cmd;
1059
1060 build_inv_all(&cmd);
1061
1062 iommu_queue_command(iommu, &cmd);
1063 iommu_completion_wait(iommu);
1064}
1065
Joerg Roedel7ef27982012-06-21 16:46:04 +02001066static void iommu_flush_irt(struct amd_iommu *iommu, u16 devid)
1067{
1068 struct iommu_cmd cmd;
1069
1070 build_inv_irt(&cmd, devid);
1071
1072 iommu_queue_command(iommu, &cmd);
1073}
1074
1075static void iommu_flush_irt_all(struct amd_iommu *iommu)
1076{
1077 u32 devid;
1078
1079 for (devid = 0; devid <= MAX_DEV_TABLE_ENTRIES; devid++)
1080 iommu_flush_irt(iommu, devid);
1081
1082 iommu_completion_wait(iommu);
1083}
1084
Joerg Roedel7d0c5cc2011-04-07 08:16:10 +02001085void iommu_flush_all_caches(struct amd_iommu *iommu)
1086{
Joerg Roedel58fc7f12011-04-11 11:13:24 +02001087 if (iommu_feature(iommu, FEATURE_IA)) {
1088 iommu_flush_all(iommu);
1089 } else {
1090 iommu_flush_dte_all(iommu);
Joerg Roedel7ef27982012-06-21 16:46:04 +02001091 iommu_flush_irt_all(iommu);
Joerg Roedel58fc7f12011-04-11 11:13:24 +02001092 iommu_flush_tlb_all(iommu);
1093 }
Joerg Roedel7d0c5cc2011-04-07 08:16:10 +02001094}
1095
Joerg Roedel431b2a22008-07-11 17:14:22 +02001096/*
Joerg Roedelcb41ed82011-04-05 11:00:53 +02001097 * Command send function for flushing on-device TLB
1098 */
Joerg Roedel6c542042011-06-09 17:07:31 +02001099static int device_flush_iotlb(struct iommu_dev_data *dev_data,
1100 u64 address, size_t size)
Joerg Roedelcb41ed82011-04-05 11:00:53 +02001101{
Joerg Roedelcb41ed82011-04-05 11:00:53 +02001102 struct amd_iommu *iommu;
1103 struct iommu_cmd cmd;
Joerg Roedelcb41ed82011-04-05 11:00:53 +02001104 int qdep;
1105
Joerg Roedelea61cdd2011-06-09 12:56:30 +02001106 qdep = dev_data->ats.qdep;
1107 iommu = amd_iommu_rlookup_table[dev_data->devid];
Joerg Roedelcb41ed82011-04-05 11:00:53 +02001108
Joerg Roedelea61cdd2011-06-09 12:56:30 +02001109 build_inv_iotlb_pages(&cmd, dev_data->devid, qdep, address, size);
Joerg Roedelcb41ed82011-04-05 11:00:53 +02001110
1111 return iommu_queue_command(iommu, &cmd);
1112}
1113
1114/*
Joerg Roedel431b2a22008-07-11 17:14:22 +02001115 * Command send function for invalidating a device table entry
1116 */
Joerg Roedel6c542042011-06-09 17:07:31 +02001117static int device_flush_dte(struct iommu_dev_data *dev_data)
Joerg Roedel3fa43652009-11-26 15:04:38 +01001118{
1119 struct amd_iommu *iommu;
Joerg Roedelcb41ed82011-04-05 11:00:53 +02001120 int ret;
Joerg Roedel3fa43652009-11-26 15:04:38 +01001121
Joerg Roedel6c542042011-06-09 17:07:31 +02001122 iommu = amd_iommu_rlookup_table[dev_data->devid];
Joerg Roedel3fa43652009-11-26 15:04:38 +01001123
Joerg Roedelf62dda62011-06-09 12:55:35 +02001124 ret = iommu_flush_dte(iommu, dev_data->devid);
Joerg Roedelcb41ed82011-04-05 11:00:53 +02001125 if (ret)
1126 return ret;
1127
Joerg Roedelea61cdd2011-06-09 12:56:30 +02001128 if (dev_data->ats.enabled)
Joerg Roedel6c542042011-06-09 17:07:31 +02001129 ret = device_flush_iotlb(dev_data, 0, ~0UL);
Joerg Roedelcb41ed82011-04-05 11:00:53 +02001130
1131 return ret;
Joerg Roedel3fa43652009-11-26 15:04:38 +01001132}
1133
Joerg Roedel431b2a22008-07-11 17:14:22 +02001134/*
1135 * TLB invalidation function which is called from the mapping functions.
1136 * It invalidates a single PTE if the range to flush is within a single
1137 * page. Otherwise it flushes the whole TLB of the IOMMU.
1138 */
Joerg Roedel17b124b2011-04-06 18:01:35 +02001139static void __domain_flush_pages(struct protection_domain *domain,
1140 u64 address, size_t size, int pde)
Joerg Roedela19ae1e2008-06-26 21:27:55 +02001141{
Joerg Roedelcb41ed82011-04-05 11:00:53 +02001142 struct iommu_dev_data *dev_data;
Joerg Roedel11b64022011-04-06 11:49:28 +02001143 struct iommu_cmd cmd;
1144 int ret = 0, i;
Joerg Roedela19ae1e2008-06-26 21:27:55 +02001145
Joerg Roedel11b64022011-04-06 11:49:28 +02001146 build_inv_iommu_pages(&cmd, address, size, domain->id, pde);
Joerg Roedel999ba412008-07-03 19:35:08 +02001147
Joerg Roedel6de8ad92009-11-23 18:30:32 +01001148 for (i = 0; i < amd_iommus_present; ++i) {
1149 if (!domain->dev_iommu[i])
1150 continue;
1151
1152 /*
1153 * Devices of this domain are behind this IOMMU
1154 * We need a TLB flush
1155 */
Joerg Roedel11b64022011-04-06 11:49:28 +02001156 ret |= iommu_queue_command(amd_iommus[i], &cmd);
Joerg Roedel6de8ad92009-11-23 18:30:32 +01001157 }
1158
Joerg Roedelcb41ed82011-04-05 11:00:53 +02001159 list_for_each_entry(dev_data, &domain->dev_list, list) {
Joerg Roedelcb41ed82011-04-05 11:00:53 +02001160
Joerg Roedelea61cdd2011-06-09 12:56:30 +02001161 if (!dev_data->ats.enabled)
Joerg Roedelcb41ed82011-04-05 11:00:53 +02001162 continue;
1163
Joerg Roedel6c542042011-06-09 17:07:31 +02001164 ret |= device_flush_iotlb(dev_data, address, size);
Joerg Roedelcb41ed82011-04-05 11:00:53 +02001165 }
1166
Joerg Roedel11b64022011-04-06 11:49:28 +02001167 WARN_ON(ret);
Joerg Roedel6de8ad92009-11-23 18:30:32 +01001168}
1169
Joerg Roedel17b124b2011-04-06 18:01:35 +02001170static void domain_flush_pages(struct protection_domain *domain,
1171 u64 address, size_t size)
Joerg Roedel6de8ad92009-11-23 18:30:32 +01001172{
Joerg Roedel17b124b2011-04-06 18:01:35 +02001173 __domain_flush_pages(domain, address, size, 0);
Joerg Roedela19ae1e2008-06-26 21:27:55 +02001174}
Joerg Roedelb6c02712008-06-26 21:27:53 +02001175
Joerg Roedel1c655772008-09-04 18:40:05 +02001176/* Flush the whole IO/TLB for a given protection domain */
Joerg Roedel17b124b2011-04-06 18:01:35 +02001177static void domain_flush_tlb(struct protection_domain *domain)
Joerg Roedel1c655772008-09-04 18:40:05 +02001178{
Joerg Roedel17b124b2011-04-06 18:01:35 +02001179 __domain_flush_pages(domain, 0, CMD_INV_IOMMU_ALL_PAGES_ADDRESS, 0);
Joerg Roedel1c655772008-09-04 18:40:05 +02001180}
1181
Chris Wright42a49f92009-06-15 15:42:00 +02001182/* Flush the whole IO/TLB for a given protection domain - including PDE */
Joerg Roedel17b124b2011-04-06 18:01:35 +02001183static void domain_flush_tlb_pde(struct protection_domain *domain)
Chris Wright42a49f92009-06-15 15:42:00 +02001184{
Joerg Roedel17b124b2011-04-06 18:01:35 +02001185 __domain_flush_pages(domain, 0, CMD_INV_IOMMU_ALL_PAGES_ADDRESS, 1);
1186}
1187
1188static void domain_flush_complete(struct protection_domain *domain)
Joerg Roedelb6c02712008-06-26 21:27:53 +02001189{
1190 int i;
1191
1192 for (i = 0; i < amd_iommus_present; ++i) {
1193 if (!domain->dev_iommu[i])
1194 continue;
1195
1196 /*
1197 * Devices of this domain are behind this IOMMU
1198 * We need to wait for completion of all commands.
1199 */
1200 iommu_completion_wait(amd_iommus[i]);
1201 }
1202}
1203
Joerg Roedelb00d3bc2009-11-26 15:35:33 +01001204
Joerg Roedel43f49602008-12-02 21:01:12 +01001205/*
Joerg Roedelb00d3bc2009-11-26 15:35:33 +01001206 * This function flushes the DTEs for all devices in domain
Joerg Roedel43f49602008-12-02 21:01:12 +01001207 */
Joerg Roedel17b124b2011-04-06 18:01:35 +02001208static void domain_flush_devices(struct protection_domain *domain)
Joerg Roedelbfd1be12009-05-05 15:33:57 +02001209{
Joerg Roedelb00d3bc2009-11-26 15:35:33 +01001210 struct iommu_dev_data *dev_data;
Joerg Roedelb00d3bc2009-11-26 15:35:33 +01001211
1212 list_for_each_entry(dev_data, &domain->dev_list, list)
Joerg Roedel6c542042011-06-09 17:07:31 +02001213 device_flush_dte(dev_data);
Joerg Roedelb00d3bc2009-11-26 15:35:33 +01001214}
1215
Joerg Roedel431b2a22008-07-11 17:14:22 +02001216/****************************************************************************
1217 *
1218 * The functions below are used the create the page table mappings for
1219 * unity mapped regions.
1220 *
1221 ****************************************************************************/
1222
1223/*
Joerg Roedel308973d2009-11-24 17:43:32 +01001224 * This function is used to add another level to an IO page table. Adding
1225 * another level increases the size of the address space by 9 bits to a size up
1226 * to 64 bits.
1227 */
1228static bool increase_address_space(struct protection_domain *domain,
1229 gfp_t gfp)
1230{
1231 u64 *pte;
1232
1233 if (domain->mode == PAGE_MODE_6_LEVEL)
1234 /* address space already 64 bit large */
1235 return false;
1236
1237 pte = (void *)get_zeroed_page(gfp);
1238 if (!pte)
1239 return false;
1240
1241 *pte = PM_LEVEL_PDE(domain->mode,
1242 virt_to_phys(domain->pt_root));
1243 domain->pt_root = pte;
1244 domain->mode += 1;
1245 domain->updated = true;
1246
1247 return true;
1248}
1249
1250static u64 *alloc_pte(struct protection_domain *domain,
1251 unsigned long address,
Joerg Roedelcbb9d722010-01-15 14:41:15 +01001252 unsigned long page_size,
Joerg Roedel308973d2009-11-24 17:43:32 +01001253 u64 **pte_page,
1254 gfp_t gfp)
1255{
Joerg Roedelcbb9d722010-01-15 14:41:15 +01001256 int level, end_lvl;
Joerg Roedel308973d2009-11-24 17:43:32 +01001257 u64 *pte, *page;
Joerg Roedelcbb9d722010-01-15 14:41:15 +01001258
1259 BUG_ON(!is_power_of_2(page_size));
Joerg Roedel308973d2009-11-24 17:43:32 +01001260
1261 while (address > PM_LEVEL_SIZE(domain->mode))
1262 increase_address_space(domain, gfp);
1263
Joerg Roedelcbb9d722010-01-15 14:41:15 +01001264 level = domain->mode - 1;
1265 pte = &domain->pt_root[PM_LEVEL_INDEX(level, address)];
1266 address = PAGE_SIZE_ALIGN(address, page_size);
1267 end_lvl = PAGE_SIZE_LEVEL(page_size);
Joerg Roedel308973d2009-11-24 17:43:32 +01001268
1269 while (level > end_lvl) {
1270 if (!IOMMU_PTE_PRESENT(*pte)) {
1271 page = (u64 *)get_zeroed_page(gfp);
1272 if (!page)
1273 return NULL;
1274 *pte = PM_LEVEL_PDE(level, virt_to_phys(page));
1275 }
1276
Joerg Roedelcbb9d722010-01-15 14:41:15 +01001277 /* No level skipping support yet */
1278 if (PM_PTE_LEVEL(*pte) != level)
1279 return NULL;
1280
Joerg Roedel308973d2009-11-24 17:43:32 +01001281 level -= 1;
1282
1283 pte = IOMMU_PTE_PAGE(*pte);
1284
1285 if (pte_page && level == end_lvl)
1286 *pte_page = pte;
1287
1288 pte = &pte[PM_LEVEL_INDEX(level, address)];
1289 }
1290
1291 return pte;
1292}
1293
1294/*
1295 * This function checks if there is a PTE for a given dma address. If
1296 * there is one, it returns the pointer to it.
1297 */
Joerg Roedel3039ca12015-04-01 14:58:48 +02001298static u64 *fetch_pte(struct protection_domain *domain,
1299 unsigned long address,
1300 unsigned long *page_size)
Joerg Roedel308973d2009-11-24 17:43:32 +01001301{
1302 int level;
1303 u64 *pte;
1304
Joerg Roedel24cd7722010-01-19 17:27:39 +01001305 if (address > PM_LEVEL_SIZE(domain->mode))
1306 return NULL;
Joerg Roedel308973d2009-11-24 17:43:32 +01001307
Joerg Roedel3039ca12015-04-01 14:58:48 +02001308 level = domain->mode - 1;
1309 pte = &domain->pt_root[PM_LEVEL_INDEX(level, address)];
1310 *page_size = PTE_LEVEL_PAGE_SIZE(level);
Joerg Roedel24cd7722010-01-19 17:27:39 +01001311
1312 while (level > 0) {
1313
1314 /* Not Present */
Joerg Roedel308973d2009-11-24 17:43:32 +01001315 if (!IOMMU_PTE_PRESENT(*pte))
1316 return NULL;
1317
Joerg Roedel24cd7722010-01-19 17:27:39 +01001318 /* Large PTE */
Joerg Roedel3039ca12015-04-01 14:58:48 +02001319 if (PM_PTE_LEVEL(*pte) == 7 ||
1320 PM_PTE_LEVEL(*pte) == 0)
1321 break;
Joerg Roedel24cd7722010-01-19 17:27:39 +01001322
1323 /* No level skipping support yet */
1324 if (PM_PTE_LEVEL(*pte) != level)
1325 return NULL;
1326
Joerg Roedel308973d2009-11-24 17:43:32 +01001327 level -= 1;
1328
Joerg Roedel24cd7722010-01-19 17:27:39 +01001329 /* Walk to the next level */
Joerg Roedel3039ca12015-04-01 14:58:48 +02001330 pte = IOMMU_PTE_PAGE(*pte);
1331 pte = &pte[PM_LEVEL_INDEX(level, address)];
1332 *page_size = PTE_LEVEL_PAGE_SIZE(level);
1333 }
1334
1335 if (PM_PTE_LEVEL(*pte) == 0x07) {
1336 unsigned long pte_mask;
1337
1338 /*
1339 * If we have a series of large PTEs, make
1340 * sure to return a pointer to the first one.
1341 */
1342 *page_size = pte_mask = PTE_PAGE_SIZE(*pte);
1343 pte_mask = ~((PAGE_SIZE_PTE_COUNT(pte_mask) << 3) - 1);
1344 pte = (u64 *)(((unsigned long)pte) & pte_mask);
Joerg Roedel308973d2009-11-24 17:43:32 +01001345 }
1346
1347 return pte;
1348}
1349
1350/*
Joerg Roedel431b2a22008-07-11 17:14:22 +02001351 * Generic mapping functions. It maps a physical address into a DMA
1352 * address space. It allocates the page table pages if necessary.
1353 * In the future it can be extended to a generic mapping function
1354 * supporting all features of AMD IOMMU page tables like level skipping
1355 * and full 64 bit address spaces.
1356 */
Joerg Roedel38e817f2008-12-02 17:27:52 +01001357static int iommu_map_page(struct protection_domain *dom,
1358 unsigned long bus_addr,
1359 unsigned long phys_addr,
Joerg Roedelabdc5eb2009-09-03 11:33:51 +02001360 int prot,
Joerg Roedelcbb9d722010-01-15 14:41:15 +01001361 unsigned long page_size)
Joerg Roedelbd0e5212008-06-26 21:27:56 +02001362{
Joerg Roedel8bda3092009-05-12 12:02:46 +02001363 u64 __pte, *pte;
Joerg Roedelcbb9d722010-01-15 14:41:15 +01001364 int i, count;
Joerg Roedelabdc5eb2009-09-03 11:33:51 +02001365
Joerg Roedeld4b03662015-04-01 14:58:52 +02001366 BUG_ON(!IS_ALIGNED(bus_addr, page_size));
1367 BUG_ON(!IS_ALIGNED(phys_addr, page_size));
1368
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 Roedeld4b03662015-04-01 14:58:52 +02001372 count = PAGE_SIZE_PTE_COUNT(page_size);
1373 pte = alloc_pte(dom, bus_addr, page_size, NULL, GFP_KERNEL);
Joerg Roedelbd0e5212008-06-26 21:27:56 +02001374
Maurizio Lombardi63eaa752014-09-11 12:28:03 +02001375 if (!pte)
1376 return -ENOMEM;
1377
Joerg Roedelcbb9d722010-01-15 14:41:15 +01001378 for (i = 0; i < count; ++i)
1379 if (IOMMU_PTE_PRESENT(pte[i]))
1380 return -EBUSY;
Joerg Roedelbd0e5212008-06-26 21:27:56 +02001381
Joerg Roedeld4b03662015-04-01 14:58:52 +02001382 if (count > 1) {
Joerg Roedelcbb9d722010-01-15 14:41:15 +01001383 __pte = PAGE_SIZE_PTE(phys_addr, page_size);
1384 __pte |= PM_LEVEL_ENC(7) | IOMMU_PTE_P | IOMMU_PTE_FC;
1385 } else
1386 __pte = phys_addr | IOMMU_PTE_P | IOMMU_PTE_FC;
1387
Joerg Roedelbd0e5212008-06-26 21:27:56 +02001388 if (prot & IOMMU_PROT_IR)
1389 __pte |= IOMMU_PTE_IR;
1390 if (prot & IOMMU_PROT_IW)
1391 __pte |= IOMMU_PTE_IW;
1392
Joerg Roedelcbb9d722010-01-15 14:41:15 +01001393 for (i = 0; i < count; ++i)
1394 pte[i] = __pte;
Joerg Roedelbd0e5212008-06-26 21:27:56 +02001395
Joerg Roedel04bfdd82009-09-02 16:00:23 +02001396 update_domain(dom);
1397
Joerg Roedelbd0e5212008-06-26 21:27:56 +02001398 return 0;
1399}
1400
Joerg Roedel24cd7722010-01-19 17:27:39 +01001401static unsigned long iommu_unmap_page(struct protection_domain *dom,
1402 unsigned long bus_addr,
1403 unsigned long page_size)
Joerg Roedeleb74ff62008-12-02 19:59:10 +01001404{
Joerg Roedel71b390e2015-04-01 14:58:49 +02001405 unsigned long long unmapped;
1406 unsigned long unmap_size;
Joerg Roedel24cd7722010-01-19 17:27:39 +01001407 u64 *pte;
Joerg Roedeleb74ff62008-12-02 19:59:10 +01001408
Joerg Roedel24cd7722010-01-19 17:27:39 +01001409 BUG_ON(!is_power_of_2(page_size));
1410
1411 unmapped = 0;
1412
1413 while (unmapped < page_size) {
1414
Joerg Roedel71b390e2015-04-01 14:58:49 +02001415 pte = fetch_pte(dom, bus_addr, &unmap_size);
Joerg Roedel24cd7722010-01-19 17:27:39 +01001416
Joerg Roedel71b390e2015-04-01 14:58:49 +02001417 if (pte) {
1418 int i, count;
Joerg Roedel24cd7722010-01-19 17:27:39 +01001419
Joerg Roedel71b390e2015-04-01 14:58:49 +02001420 count = PAGE_SIZE_PTE_COUNT(unmap_size);
Joerg Roedel24cd7722010-01-19 17:27:39 +01001421 for (i = 0; i < count; i++)
1422 pte[i] = 0ULL;
1423 }
1424
1425 bus_addr = (bus_addr & ~(unmap_size - 1)) + unmap_size;
1426 unmapped += unmap_size;
1427 }
1428
Alex Williamson60d0ca32013-06-21 14:33:19 -06001429 BUG_ON(unmapped && !is_power_of_2(unmapped));
Joerg Roedel24cd7722010-01-19 17:27:39 +01001430
1431 return unmapped;
Joerg Roedeleb74ff62008-12-02 19:59:10 +01001432}
Joerg Roedeleb74ff62008-12-02 19:59:10 +01001433
Joerg Roedel431b2a22008-07-11 17:14:22 +02001434/****************************************************************************
1435 *
1436 * The next functions belong to the address allocator for the dma_ops
1437 * interface functions. They work like the allocators in the other IOMMU
1438 * drivers. Its basically a bitmap which marks the allocated pages in
1439 * the aperture. Maybe it could be enhanced in the future to a more
1440 * efficient allocator.
1441 *
1442 ****************************************************************************/
Joerg Roedeld3086442008-06-26 21:27:57 +02001443
Joerg Roedel431b2a22008-07-11 17:14:22 +02001444/*
Joerg Roedel384de722009-05-15 12:30:05 +02001445 * The address allocator core functions.
Joerg Roedel431b2a22008-07-11 17:14:22 +02001446 *
1447 * called with domain->lock held
1448 */
Joerg Roedel384de722009-05-15 12:30:05 +02001449
Joerg Roedel9cabe892009-05-18 16:38:55 +02001450/*
Joerg Roedel171e7b32009-11-24 17:47:56 +01001451 * Used to reserve address ranges in the aperture (e.g. for exclusion
1452 * ranges.
1453 */
1454static void dma_ops_reserve_addresses(struct dma_ops_domain *dom,
1455 unsigned long start_page,
1456 unsigned int pages)
1457{
1458 unsigned int i, last_page = dom->aperture_size >> PAGE_SHIFT;
1459
1460 if (start_page + pages > last_page)
1461 pages = last_page - start_page;
1462
1463 for (i = start_page; i < start_page + pages; ++i) {
1464 int index = i / APERTURE_RANGE_PAGES;
1465 int page = i % APERTURE_RANGE_PAGES;
1466 __set_bit(page, dom->aperture[index]->bitmap);
1467 }
1468}
1469
1470/*
Joerg Roedel9cabe892009-05-18 16:38:55 +02001471 * This function is used to add a new aperture range to an existing
1472 * aperture in case of dma_ops domain allocation or address allocation
1473 * failure.
1474 */
Joerg Roedel576175c2009-11-23 19:08:46 +01001475static int alloc_new_range(struct dma_ops_domain *dma_dom,
Joerg Roedel9cabe892009-05-18 16:38:55 +02001476 bool populate, gfp_t gfp)
1477{
1478 int index = dma_dom->aperture_size >> APERTURE_RANGE_SHIFT;
Joerg Roedel576175c2009-11-23 19:08:46 +01001479 struct amd_iommu *iommu;
Joerg Roedel5d7c94c2015-04-01 14:58:50 +02001480 unsigned long i, old_size, pte_pgsize;
Joerg Roedel9cabe892009-05-18 16:38:55 +02001481
Joerg Roedelf5e97052009-05-22 12:31:53 +02001482#ifdef CONFIG_IOMMU_STRESS
1483 populate = false;
1484#endif
1485
Joerg Roedel9cabe892009-05-18 16:38:55 +02001486 if (index >= APERTURE_MAX_RANGES)
1487 return -ENOMEM;
1488
1489 dma_dom->aperture[index] = kzalloc(sizeof(struct aperture_range), gfp);
1490 if (!dma_dom->aperture[index])
1491 return -ENOMEM;
1492
1493 dma_dom->aperture[index]->bitmap = (void *)get_zeroed_page(gfp);
1494 if (!dma_dom->aperture[index]->bitmap)
1495 goto out_free;
1496
1497 dma_dom->aperture[index]->offset = dma_dom->aperture_size;
1498
1499 if (populate) {
1500 unsigned long address = dma_dom->aperture_size;
1501 int i, num_ptes = APERTURE_RANGE_PAGES / 512;
1502 u64 *pte, *pte_page;
1503
1504 for (i = 0; i < num_ptes; ++i) {
Joerg Roedelcbb9d722010-01-15 14:41:15 +01001505 pte = alloc_pte(&dma_dom->domain, address, PAGE_SIZE,
Joerg Roedel9cabe892009-05-18 16:38:55 +02001506 &pte_page, gfp);
1507 if (!pte)
1508 goto out_free;
1509
1510 dma_dom->aperture[index]->pte_pages[i] = pte_page;
1511
1512 address += APERTURE_RANGE_SIZE / 64;
1513 }
1514 }
1515
Joerg Roedel17f5b562011-07-06 17:14:44 +02001516 old_size = dma_dom->aperture_size;
Joerg Roedel9cabe892009-05-18 16:38:55 +02001517 dma_dom->aperture_size += APERTURE_RANGE_SIZE;
1518
Joerg Roedel17f5b562011-07-06 17:14:44 +02001519 /* Reserve address range used for MSI messages */
1520 if (old_size < MSI_ADDR_BASE_LO &&
1521 dma_dom->aperture_size > MSI_ADDR_BASE_LO) {
1522 unsigned long spage;
1523 int pages;
1524
1525 pages = iommu_num_pages(MSI_ADDR_BASE_LO, 0x10000, PAGE_SIZE);
1526 spage = MSI_ADDR_BASE_LO >> PAGE_SHIFT;
1527
1528 dma_ops_reserve_addresses(dma_dom, spage, pages);
1529 }
1530
Uwe Kleine-Königb5950762010-11-01 15:38:34 -04001531 /* Initialize the exclusion range if necessary */
Joerg Roedel576175c2009-11-23 19:08:46 +01001532 for_each_iommu(iommu) {
1533 if (iommu->exclusion_start &&
1534 iommu->exclusion_start >= dma_dom->aperture[index]->offset
1535 && iommu->exclusion_start < dma_dom->aperture_size) {
1536 unsigned long startpage;
1537 int pages = iommu_num_pages(iommu->exclusion_start,
1538 iommu->exclusion_length,
1539 PAGE_SIZE);
1540 startpage = iommu->exclusion_start >> PAGE_SHIFT;
1541 dma_ops_reserve_addresses(dma_dom, startpage, pages);
1542 }
Joerg Roedel00cd1222009-05-19 09:52:40 +02001543 }
1544
1545 /*
1546 * Check for areas already mapped as present in the new aperture
1547 * range and mark those pages as reserved in the allocator. Such
1548 * mappings may already exist as a result of requested unity
1549 * mappings for devices.
1550 */
1551 for (i = dma_dom->aperture[index]->offset;
1552 i < dma_dom->aperture_size;
Joerg Roedel5d7c94c2015-04-01 14:58:50 +02001553 i += pte_pgsize) {
Joerg Roedel3039ca12015-04-01 14:58:48 +02001554 u64 *pte = fetch_pte(&dma_dom->domain, i, &pte_pgsize);
Joerg Roedel00cd1222009-05-19 09:52:40 +02001555 if (!pte || !IOMMU_PTE_PRESENT(*pte))
1556 continue;
1557
Joerg Roedel5d7c94c2015-04-01 14:58:50 +02001558 dma_ops_reserve_addresses(dma_dom, i >> PAGE_SHIFT,
1559 pte_pgsize >> 12);
Joerg Roedel00cd1222009-05-19 09:52:40 +02001560 }
1561
Joerg Roedel04bfdd82009-09-02 16:00:23 +02001562 update_domain(&dma_dom->domain);
1563
Joerg Roedel9cabe892009-05-18 16:38:55 +02001564 return 0;
1565
1566out_free:
Joerg Roedel04bfdd82009-09-02 16:00:23 +02001567 update_domain(&dma_dom->domain);
1568
Joerg Roedel9cabe892009-05-18 16:38:55 +02001569 free_page((unsigned long)dma_dom->aperture[index]->bitmap);
1570
1571 kfree(dma_dom->aperture[index]);
1572 dma_dom->aperture[index] = NULL;
1573
1574 return -ENOMEM;
1575}
1576
Joerg Roedel384de722009-05-15 12:30:05 +02001577static unsigned long dma_ops_area_alloc(struct device *dev,
1578 struct dma_ops_domain *dom,
1579 unsigned int pages,
1580 unsigned long align_mask,
1581 u64 dma_mask,
1582 unsigned long start)
1583{
Joerg Roedel803b8cb2009-05-18 15:32:48 +02001584 unsigned long next_bit = dom->next_address % APERTURE_RANGE_SIZE;
Joerg Roedel384de722009-05-15 12:30:05 +02001585 int max_index = dom->aperture_size >> APERTURE_RANGE_SHIFT;
1586 int i = start >> APERTURE_RANGE_SHIFT;
Joerg Roedele6aabee2015-05-27 09:26:09 +02001587 unsigned long boundary_size, mask;
Joerg Roedel384de722009-05-15 12:30:05 +02001588 unsigned long address = -1;
1589 unsigned long limit;
1590
Joerg Roedel803b8cb2009-05-18 15:32:48 +02001591 next_bit >>= PAGE_SHIFT;
1592
Joerg Roedele6aabee2015-05-27 09:26:09 +02001593 mask = dma_get_seg_boundary(dev);
1594
1595 boundary_size = mask + 1 ? ALIGN(mask + 1, PAGE_SIZE) >> PAGE_SHIFT :
1596 1UL << (BITS_PER_LONG - PAGE_SHIFT);
Joerg Roedel384de722009-05-15 12:30:05 +02001597
1598 for (;i < max_index; ++i) {
1599 unsigned long offset = dom->aperture[i]->offset >> PAGE_SHIFT;
1600
1601 if (dom->aperture[i]->offset >= dma_mask)
1602 break;
1603
1604 limit = iommu_device_max_index(APERTURE_RANGE_PAGES, offset,
1605 dma_mask >> PAGE_SHIFT);
1606
1607 address = iommu_area_alloc(dom->aperture[i]->bitmap,
1608 limit, next_bit, pages, 0,
1609 boundary_size, align_mask);
1610 if (address != -1) {
1611 address = dom->aperture[i]->offset +
1612 (address << PAGE_SHIFT);
Joerg Roedel803b8cb2009-05-18 15:32:48 +02001613 dom->next_address = address + (pages << PAGE_SHIFT);
Joerg Roedel384de722009-05-15 12:30:05 +02001614 break;
1615 }
1616
1617 next_bit = 0;
1618 }
1619
1620 return address;
1621}
1622
Joerg Roedeld3086442008-06-26 21:27:57 +02001623static unsigned long dma_ops_alloc_addresses(struct device *dev,
1624 struct dma_ops_domain *dom,
Joerg Roedel6d4f3432008-09-04 19:18:02 +02001625 unsigned int pages,
Joerg Roedel832a90c2008-09-18 15:54:23 +02001626 unsigned long align_mask,
1627 u64 dma_mask)
Joerg Roedeld3086442008-06-26 21:27:57 +02001628{
Joerg Roedeld3086442008-06-26 21:27:57 +02001629 unsigned long address;
Joerg Roedeld3086442008-06-26 21:27:57 +02001630
Joerg Roedelfe16f082009-05-22 12:27:53 +02001631#ifdef CONFIG_IOMMU_STRESS
1632 dom->next_address = 0;
1633 dom->need_flush = true;
1634#endif
Joerg Roedeld3086442008-06-26 21:27:57 +02001635
Joerg Roedel384de722009-05-15 12:30:05 +02001636 address = dma_ops_area_alloc(dev, dom, pages, align_mask,
Joerg Roedel803b8cb2009-05-18 15:32:48 +02001637 dma_mask, dom->next_address);
Joerg Roedeld3086442008-06-26 21:27:57 +02001638
Joerg Roedel1c655772008-09-04 18:40:05 +02001639 if (address == -1) {
Joerg Roedel803b8cb2009-05-18 15:32:48 +02001640 dom->next_address = 0;
Joerg Roedel384de722009-05-15 12:30:05 +02001641 address = dma_ops_area_alloc(dev, dom, pages, align_mask,
1642 dma_mask, 0);
Joerg Roedel1c655772008-09-04 18:40:05 +02001643 dom->need_flush = true;
1644 }
Joerg Roedeld3086442008-06-26 21:27:57 +02001645
Joerg Roedel384de722009-05-15 12:30:05 +02001646 if (unlikely(address == -1))
FUJITA Tomonori8fd524b2009-11-15 21:19:53 +09001647 address = DMA_ERROR_CODE;
Joerg Roedeld3086442008-06-26 21:27:57 +02001648
1649 WARN_ON((address + (PAGE_SIZE*pages)) > dom->aperture_size);
1650
1651 return address;
1652}
1653
Joerg Roedel431b2a22008-07-11 17:14:22 +02001654/*
1655 * The address free function.
1656 *
1657 * called with domain->lock held
1658 */
Joerg Roedeld3086442008-06-26 21:27:57 +02001659static void dma_ops_free_addresses(struct dma_ops_domain *dom,
1660 unsigned long address,
1661 unsigned int pages)
1662{
Joerg Roedel384de722009-05-15 12:30:05 +02001663 unsigned i = address >> APERTURE_RANGE_SHIFT;
1664 struct aperture_range *range = dom->aperture[i];
Joerg Roedel80be3082008-11-06 14:59:05 +01001665
Joerg Roedel384de722009-05-15 12:30:05 +02001666 BUG_ON(i >= APERTURE_MAX_RANGES || range == NULL);
1667
Joerg Roedel47bccd62009-05-22 12:40:54 +02001668#ifdef CONFIG_IOMMU_STRESS
1669 if (i < 4)
1670 return;
1671#endif
1672
Joerg Roedel803b8cb2009-05-18 15:32:48 +02001673 if (address >= dom->next_address)
Joerg Roedel80be3082008-11-06 14:59:05 +01001674 dom->need_flush = true;
Joerg Roedel384de722009-05-15 12:30:05 +02001675
1676 address = (address % APERTURE_RANGE_SIZE) >> PAGE_SHIFT;
Joerg Roedel803b8cb2009-05-18 15:32:48 +02001677
Akinobu Mitaa66022c2009-12-15 16:48:28 -08001678 bitmap_clear(range->bitmap, address, pages);
Joerg Roedel384de722009-05-15 12:30:05 +02001679
Joerg Roedeld3086442008-06-26 21:27:57 +02001680}
1681
Joerg Roedel431b2a22008-07-11 17:14:22 +02001682/****************************************************************************
1683 *
1684 * The next functions belong to the domain allocation. A domain is
1685 * allocated for every IOMMU as the default domain. If device isolation
1686 * is enabled, every device get its own domain. The most important thing
1687 * about domains is the page table mapping the DMA address space they
1688 * contain.
1689 *
1690 ****************************************************************************/
1691
Joerg Roedelaeb26f52009-11-20 16:44:01 +01001692/*
1693 * This function adds a protection domain to the global protection domain list
1694 */
1695static void add_domain_to_list(struct protection_domain *domain)
1696{
1697 unsigned long flags;
1698
1699 spin_lock_irqsave(&amd_iommu_pd_lock, flags);
1700 list_add(&domain->list, &amd_iommu_pd_list);
1701 spin_unlock_irqrestore(&amd_iommu_pd_lock, flags);
1702}
1703
1704/*
1705 * This function removes a protection domain to the global
1706 * protection domain list
1707 */
1708static void del_domain_from_list(struct protection_domain *domain)
1709{
1710 unsigned long flags;
1711
1712 spin_lock_irqsave(&amd_iommu_pd_lock, flags);
1713 list_del(&domain->list);
1714 spin_unlock_irqrestore(&amd_iommu_pd_lock, flags);
1715}
1716
Joerg Roedelec487d12008-06-26 21:27:58 +02001717static u16 domain_id_alloc(void)
1718{
1719 unsigned long flags;
1720 int id;
1721
1722 write_lock_irqsave(&amd_iommu_devtable_lock, flags);
1723 id = find_first_zero_bit(amd_iommu_pd_alloc_bitmap, MAX_DOMAIN_ID);
1724 BUG_ON(id == 0);
1725 if (id > 0 && id < MAX_DOMAIN_ID)
1726 __set_bit(id, amd_iommu_pd_alloc_bitmap);
1727 else
1728 id = 0;
1729 write_unlock_irqrestore(&amd_iommu_devtable_lock, flags);
1730
1731 return id;
1732}
1733
Joerg Roedela2acfb72008-12-02 18:28:53 +01001734static void domain_id_free(int id)
1735{
1736 unsigned long flags;
1737
1738 write_lock_irqsave(&amd_iommu_devtable_lock, flags);
1739 if (id > 0 && id < MAX_DOMAIN_ID)
1740 __clear_bit(id, amd_iommu_pd_alloc_bitmap);
1741 write_unlock_irqrestore(&amd_iommu_devtable_lock, flags);
1742}
Joerg Roedela2acfb72008-12-02 18:28:53 +01001743
Joerg Roedel5c34c402013-06-20 20:22:58 +02001744#define DEFINE_FREE_PT_FN(LVL, FN) \
1745static void free_pt_##LVL (unsigned long __pt) \
1746{ \
1747 unsigned long p; \
1748 u64 *pt; \
1749 int i; \
1750 \
1751 pt = (u64 *)__pt; \
1752 \
1753 for (i = 0; i < 512; ++i) { \
Joerg Roedel0b3fff52015-06-18 10:48:34 +02001754 /* PTE present? */ \
Joerg Roedel5c34c402013-06-20 20:22:58 +02001755 if (!IOMMU_PTE_PRESENT(pt[i])) \
1756 continue; \
1757 \
Joerg Roedel0b3fff52015-06-18 10:48:34 +02001758 /* Large PTE? */ \
1759 if (PM_PTE_LEVEL(pt[i]) == 0 || \
1760 PM_PTE_LEVEL(pt[i]) == 7) \
1761 continue; \
1762 \
Joerg Roedel5c34c402013-06-20 20:22:58 +02001763 p = (unsigned long)IOMMU_PTE_PAGE(pt[i]); \
1764 FN(p); \
1765 } \
1766 free_page((unsigned long)pt); \
1767}
1768
1769DEFINE_FREE_PT_FN(l2, free_page)
1770DEFINE_FREE_PT_FN(l3, free_pt_l2)
1771DEFINE_FREE_PT_FN(l4, free_pt_l3)
1772DEFINE_FREE_PT_FN(l5, free_pt_l4)
1773DEFINE_FREE_PT_FN(l6, free_pt_l5)
1774
Joerg Roedel86db2e52008-12-02 18:20:21 +01001775static void free_pagetable(struct protection_domain *domain)
Joerg Roedelec487d12008-06-26 21:27:58 +02001776{
Joerg Roedel5c34c402013-06-20 20:22:58 +02001777 unsigned long root = (unsigned long)domain->pt_root;
Joerg Roedelec487d12008-06-26 21:27:58 +02001778
Joerg Roedel5c34c402013-06-20 20:22:58 +02001779 switch (domain->mode) {
1780 case PAGE_MODE_NONE:
1781 break;
1782 case PAGE_MODE_1_LEVEL:
1783 free_page(root);
1784 break;
1785 case PAGE_MODE_2_LEVEL:
1786 free_pt_l2(root);
1787 break;
1788 case PAGE_MODE_3_LEVEL:
1789 free_pt_l3(root);
1790 break;
1791 case PAGE_MODE_4_LEVEL:
1792 free_pt_l4(root);
1793 break;
1794 case PAGE_MODE_5_LEVEL:
1795 free_pt_l5(root);
1796 break;
1797 case PAGE_MODE_6_LEVEL:
1798 free_pt_l6(root);
1799 break;
1800 default:
1801 BUG();
Joerg Roedelec487d12008-06-26 21:27:58 +02001802 }
Joerg Roedelec487d12008-06-26 21:27:58 +02001803}
1804
Joerg Roedelb16137b2011-11-21 16:50:23 +01001805static void free_gcr3_tbl_level1(u64 *tbl)
1806{
1807 u64 *ptr;
1808 int i;
1809
1810 for (i = 0; i < 512; ++i) {
1811 if (!(tbl[i] & GCR3_VALID))
1812 continue;
1813
1814 ptr = __va(tbl[i] & PAGE_MASK);
1815
1816 free_page((unsigned long)ptr);
1817 }
1818}
1819
1820static void free_gcr3_tbl_level2(u64 *tbl)
1821{
1822 u64 *ptr;
1823 int i;
1824
1825 for (i = 0; i < 512; ++i) {
1826 if (!(tbl[i] & GCR3_VALID))
1827 continue;
1828
1829 ptr = __va(tbl[i] & PAGE_MASK);
1830
1831 free_gcr3_tbl_level1(ptr);
1832 }
1833}
1834
Joerg Roedel52815b72011-11-17 17:24:28 +01001835static void free_gcr3_table(struct protection_domain *domain)
1836{
Joerg Roedelb16137b2011-11-21 16:50:23 +01001837 if (domain->glx == 2)
1838 free_gcr3_tbl_level2(domain->gcr3_tbl);
1839 else if (domain->glx == 1)
1840 free_gcr3_tbl_level1(domain->gcr3_tbl);
1841 else if (domain->glx != 0)
1842 BUG();
1843
Joerg Roedel52815b72011-11-17 17:24:28 +01001844 free_page((unsigned long)domain->gcr3_tbl);
1845}
1846
Joerg Roedel431b2a22008-07-11 17:14:22 +02001847/*
1848 * Free a domain, only used if something went wrong in the
1849 * allocation path and we need to free an already allocated page table
1850 */
Joerg Roedelec487d12008-06-26 21:27:58 +02001851static void dma_ops_domain_free(struct dma_ops_domain *dom)
1852{
Joerg Roedel384de722009-05-15 12:30:05 +02001853 int i;
1854
Joerg Roedelec487d12008-06-26 21:27:58 +02001855 if (!dom)
1856 return;
1857
Joerg Roedelaeb26f52009-11-20 16:44:01 +01001858 del_domain_from_list(&dom->domain);
1859
Joerg Roedel86db2e52008-12-02 18:20:21 +01001860 free_pagetable(&dom->domain);
Joerg Roedelec487d12008-06-26 21:27:58 +02001861
Joerg Roedel384de722009-05-15 12:30:05 +02001862 for (i = 0; i < APERTURE_MAX_RANGES; ++i) {
1863 if (!dom->aperture[i])
1864 continue;
1865 free_page((unsigned long)dom->aperture[i]->bitmap);
1866 kfree(dom->aperture[i]);
1867 }
Joerg Roedelec487d12008-06-26 21:27:58 +02001868
1869 kfree(dom);
1870}
1871
Joerg Roedel431b2a22008-07-11 17:14:22 +02001872/*
1873 * Allocates a new protection domain usable for the dma_ops functions.
Uwe Kleine-Königb5950762010-11-01 15:38:34 -04001874 * It also initializes the page table and the address allocator data
Joerg Roedel431b2a22008-07-11 17:14:22 +02001875 * structures required for the dma_ops interface
1876 */
Joerg Roedel87a64d52009-11-24 17:26:43 +01001877static struct dma_ops_domain *dma_ops_domain_alloc(void)
Joerg Roedelec487d12008-06-26 21:27:58 +02001878{
1879 struct dma_ops_domain *dma_dom;
Joerg Roedelec487d12008-06-26 21:27:58 +02001880
1881 dma_dom = kzalloc(sizeof(struct dma_ops_domain), GFP_KERNEL);
1882 if (!dma_dom)
1883 return NULL;
1884
Joerg Roedel7a5a5662015-06-30 08:56:11 +02001885 if (protection_domain_init(&dma_dom->domain))
Joerg Roedelec487d12008-06-26 21:27:58 +02001886 goto free_dma_dom;
Joerg Roedel7a5a5662015-06-30 08:56:11 +02001887
Joerg Roedel8f7a0172009-09-02 16:55:24 +02001888 dma_dom->domain.mode = PAGE_MODE_2_LEVEL;
Joerg Roedelec487d12008-06-26 21:27:58 +02001889 dma_dom->domain.pt_root = (void *)get_zeroed_page(GFP_KERNEL);
Joerg Roedel9fdb19d2008-12-02 17:46:25 +01001890 dma_dom->domain.flags = PD_DMA_OPS_MASK;
Joerg Roedelec487d12008-06-26 21:27:58 +02001891 dma_dom->domain.priv = dma_dom;
1892 if (!dma_dom->domain.pt_root)
1893 goto free_dma_dom;
Joerg Roedelec487d12008-06-26 21:27:58 +02001894
Joerg Roedel1c655772008-09-04 18:40:05 +02001895 dma_dom->need_flush = false;
1896
Joerg Roedelaeb26f52009-11-20 16:44:01 +01001897 add_domain_to_list(&dma_dom->domain);
1898
Joerg Roedel576175c2009-11-23 19:08:46 +01001899 if (alloc_new_range(dma_dom, true, GFP_KERNEL))
Joerg Roedelec487d12008-06-26 21:27:58 +02001900 goto free_dma_dom;
Joerg Roedelec487d12008-06-26 21:27:58 +02001901
Joerg Roedel431b2a22008-07-11 17:14:22 +02001902 /*
Joerg Roedelec487d12008-06-26 21:27:58 +02001903 * mark the first page as allocated so we never return 0 as
1904 * a valid dma-address. So we can use 0 as error value
Joerg Roedel431b2a22008-07-11 17:14:22 +02001905 */
Joerg Roedel384de722009-05-15 12:30:05 +02001906 dma_dom->aperture[0]->bitmap[0] = 1;
Joerg Roedel803b8cb2009-05-18 15:32:48 +02001907 dma_dom->next_address = 0;
Joerg Roedelec487d12008-06-26 21:27:58 +02001908
Joerg Roedelec487d12008-06-26 21:27:58 +02001909
1910 return dma_dom;
1911
1912free_dma_dom:
1913 dma_ops_domain_free(dma_dom);
1914
1915 return NULL;
1916}
1917
Joerg Roedel431b2a22008-07-11 17:14:22 +02001918/*
Joerg Roedel5b28df62008-12-02 17:49:42 +01001919 * little helper function to check whether a given protection domain is a
1920 * dma_ops domain
1921 */
1922static bool dma_ops_domain(struct protection_domain *domain)
1923{
1924 return domain->flags & PD_DMA_OPS_MASK;
1925}
1926
Joerg Roedelfd7b5532011-04-05 15:31:08 +02001927static void set_dte_entry(u16 devid, struct protection_domain *domain, bool ats)
Joerg Roedelb20ac0d2008-06-26 21:27:59 +02001928{
Joerg Roedel132bd682011-11-17 14:18:46 +01001929 u64 pte_root = 0;
Joerg Roedelee6c2862011-11-09 12:06:03 +01001930 u64 flags = 0;
Joerg Roedel863c74e2008-12-02 17:56:36 +01001931
Joerg Roedel132bd682011-11-17 14:18:46 +01001932 if (domain->mode != PAGE_MODE_NONE)
1933 pte_root = virt_to_phys(domain->pt_root);
1934
Joerg Roedel38ddf412008-09-11 10:38:32 +02001935 pte_root |= (domain->mode & DEV_ENTRY_MODE_MASK)
1936 << DEV_ENTRY_MODE_SHIFT;
1937 pte_root |= IOMMU_PTE_IR | IOMMU_PTE_IW | IOMMU_PTE_P | IOMMU_PTE_TV;
Joerg Roedelb20ac0d2008-06-26 21:27:59 +02001938
Joerg Roedelee6c2862011-11-09 12:06:03 +01001939 flags = amd_iommu_dev_table[devid].data[1];
1940
Joerg Roedelfd7b5532011-04-05 15:31:08 +02001941 if (ats)
1942 flags |= DTE_FLAG_IOTLB;
1943
Joerg Roedel52815b72011-11-17 17:24:28 +01001944 if (domain->flags & PD_IOMMUV2_MASK) {
1945 u64 gcr3 = __pa(domain->gcr3_tbl);
1946 u64 glx = domain->glx;
1947 u64 tmp;
1948
1949 pte_root |= DTE_FLAG_GV;
1950 pte_root |= (glx & DTE_GLX_MASK) << DTE_GLX_SHIFT;
1951
1952 /* First mask out possible old values for GCR3 table */
1953 tmp = DTE_GCR3_VAL_B(~0ULL) << DTE_GCR3_SHIFT_B;
1954 flags &= ~tmp;
1955
1956 tmp = DTE_GCR3_VAL_C(~0ULL) << DTE_GCR3_SHIFT_C;
1957 flags &= ~tmp;
1958
1959 /* Encode GCR3 table into DTE */
1960 tmp = DTE_GCR3_VAL_A(gcr3) << DTE_GCR3_SHIFT_A;
1961 pte_root |= tmp;
1962
1963 tmp = DTE_GCR3_VAL_B(gcr3) << DTE_GCR3_SHIFT_B;
1964 flags |= tmp;
1965
1966 tmp = DTE_GCR3_VAL_C(gcr3) << DTE_GCR3_SHIFT_C;
1967 flags |= tmp;
1968 }
1969
Joerg Roedelee6c2862011-11-09 12:06:03 +01001970 flags &= ~(0xffffUL);
1971 flags |= domain->id;
1972
1973 amd_iommu_dev_table[devid].data[1] = flags;
1974 amd_iommu_dev_table[devid].data[0] = pte_root;
Joerg Roedelb20ac0d2008-06-26 21:27:59 +02001975}
1976
Joerg Roedel15898bb2009-11-24 15:39:42 +01001977static void clear_dte_entry(u16 devid)
Joerg Roedel355bf552008-12-08 12:02:41 +01001978{
Joerg Roedel355bf552008-12-08 12:02:41 +01001979 /* remove entry from the device table seen by the hardware */
1980 amd_iommu_dev_table[devid].data[0] = IOMMU_PTE_P | IOMMU_PTE_TV;
1981 amd_iommu_dev_table[devid].data[1] = 0;
Joerg Roedel355bf552008-12-08 12:02:41 +01001982
Joerg Roedelc5cca142009-10-09 18:31:20 +02001983 amd_iommu_apply_erratum_63(devid);
Joerg Roedel7f760dd2009-11-26 14:49:59 +01001984}
1985
Joerg Roedelec9e79e2011-06-09 17:25:50 +02001986static void do_attach(struct iommu_dev_data *dev_data,
1987 struct protection_domain *domain)
Joerg Roedel7f760dd2009-11-26 14:49:59 +01001988{
Joerg Roedel7f760dd2009-11-26 14:49:59 +01001989 struct amd_iommu *iommu;
Joerg Roedelec9e79e2011-06-09 17:25:50 +02001990 bool ats;
Joerg Roedel7f760dd2009-11-26 14:49:59 +01001991
Joerg Roedelec9e79e2011-06-09 17:25:50 +02001992 iommu = amd_iommu_rlookup_table[dev_data->devid];
1993 ats = dev_data->ats.enabled;
Joerg Roedel7f760dd2009-11-26 14:49:59 +01001994
1995 /* Update data structures */
1996 dev_data->domain = domain;
1997 list_add(&dev_data->list, &domain->dev_list);
Joerg Roedelf62dda62011-06-09 12:55:35 +02001998 set_dte_entry(dev_data->devid, domain, ats);
Joerg Roedel7f760dd2009-11-26 14:49:59 +01001999
2000 /* Do reference counting */
2001 domain->dev_iommu[iommu->index] += 1;
2002 domain->dev_cnt += 1;
2003
2004 /* Flush the DTE entry */
Joerg Roedel6c542042011-06-09 17:07:31 +02002005 device_flush_dte(dev_data);
Joerg Roedel7f760dd2009-11-26 14:49:59 +01002006}
2007
Joerg Roedelec9e79e2011-06-09 17:25:50 +02002008static void do_detach(struct iommu_dev_data *dev_data)
Joerg Roedel7f760dd2009-11-26 14:49:59 +01002009{
Joerg Roedel7f760dd2009-11-26 14:49:59 +01002010 struct amd_iommu *iommu;
Joerg Roedel7f760dd2009-11-26 14:49:59 +01002011
Joerg Roedelec9e79e2011-06-09 17:25:50 +02002012 iommu = amd_iommu_rlookup_table[dev_data->devid];
Joerg Roedelc5cca142009-10-09 18:31:20 +02002013
Joerg Roedelc4596112009-11-20 14:57:32 +01002014 /* decrease reference counters */
Joerg Roedel7f760dd2009-11-26 14:49:59 +01002015 dev_data->domain->dev_iommu[iommu->index] -= 1;
2016 dev_data->domain->dev_cnt -= 1;
Joerg Roedel355bf552008-12-08 12:02:41 +01002017
Joerg Roedel7f760dd2009-11-26 14:49:59 +01002018 /* Update data structures */
2019 dev_data->domain = NULL;
2020 list_del(&dev_data->list);
Joerg Roedelf62dda62011-06-09 12:55:35 +02002021 clear_dte_entry(dev_data->devid);
Joerg Roedel7f760dd2009-11-26 14:49:59 +01002022
2023 /* Flush the DTE entry */
Joerg Roedel6c542042011-06-09 17:07:31 +02002024 device_flush_dte(dev_data);
Joerg Roedel15898bb2009-11-24 15:39:42 +01002025}
2026
2027/*
2028 * If a device is not yet associated with a domain, this function does
2029 * assigns it visible for the hardware
2030 */
Joerg Roedelec9e79e2011-06-09 17:25:50 +02002031static int __attach_device(struct iommu_dev_data *dev_data,
Joerg Roedel15898bb2009-11-24 15:39:42 +01002032 struct protection_domain *domain)
2033{
Joerg Roedel397111a2014-08-05 17:31:51 +02002034 struct iommu_dev_data *head, *entry;
Julia Lawall84fe6c12010-05-27 12:31:51 +02002035 int ret;
Joerg Roedel657cbb62009-11-23 15:26:46 +01002036
Joerg Roedel15898bb2009-11-24 15:39:42 +01002037 /* lock domain */
2038 spin_lock(&domain->lock);
2039
Joerg Roedel397111a2014-08-05 17:31:51 +02002040 head = dev_data;
Joerg Roedel15898bb2009-11-24 15:39:42 +01002041
Joerg Roedel397111a2014-08-05 17:31:51 +02002042 if (head->alias_data != NULL)
2043 head = head->alias_data;
Joerg Roedel15898bb2009-11-24 15:39:42 +01002044
Joerg Roedel397111a2014-08-05 17:31:51 +02002045 /* Now we have the root of the alias group, if any */
Joerg Roedel2b02b092011-06-09 17:48:39 +02002046
Joerg Roedel397111a2014-08-05 17:31:51 +02002047 ret = -EBUSY;
2048 if (head->domain != NULL)
2049 goto out_unlock;
Joerg Roedel24100052009-11-25 15:59:57 +01002050
Joerg Roedel397111a2014-08-05 17:31:51 +02002051 /* Attach alias group root */
2052 do_attach(head, domain);
Joerg Roedel15898bb2009-11-24 15:39:42 +01002053
Joerg Roedel397111a2014-08-05 17:31:51 +02002054 /* Attach other devices in the alias group */
2055 list_for_each_entry(entry, &head->alias_list, alias_list)
2056 do_attach(entry, domain);
Joerg Roedel24100052009-11-25 15:59:57 +01002057
Julia Lawall84fe6c12010-05-27 12:31:51 +02002058 ret = 0;
2059
2060out_unlock:
2061
Joerg Roedel355bf552008-12-08 12:02:41 +01002062 /* ready */
2063 spin_unlock(&domain->lock);
Joerg Roedel21129f72009-09-01 11:59:42 +02002064
Julia Lawall84fe6c12010-05-27 12:31:51 +02002065 return ret;
Joerg Roedel15898bb2009-11-24 15:39:42 +01002066}
2067
Joerg Roedel52815b72011-11-17 17:24:28 +01002068
2069static void pdev_iommuv2_disable(struct pci_dev *pdev)
2070{
2071 pci_disable_ats(pdev);
2072 pci_disable_pri(pdev);
2073 pci_disable_pasid(pdev);
2074}
2075
Joerg Roedel6a113dd2011-12-01 12:04:58 +01002076/* FIXME: Change generic reset-function to do the same */
2077static int pri_reset_while_enabled(struct pci_dev *pdev)
2078{
2079 u16 control;
2080 int pos;
2081
Joerg Roedel46277b72011-12-07 14:34:02 +01002082 pos = pci_find_ext_capability(pdev, PCI_EXT_CAP_ID_PRI);
Joerg Roedel6a113dd2011-12-01 12:04:58 +01002083 if (!pos)
2084 return -EINVAL;
2085
Joerg Roedel46277b72011-12-07 14:34:02 +01002086 pci_read_config_word(pdev, pos + PCI_PRI_CTRL, &control);
2087 control |= PCI_PRI_CTRL_RESET;
2088 pci_write_config_word(pdev, pos + PCI_PRI_CTRL, control);
Joerg Roedel6a113dd2011-12-01 12:04:58 +01002089
2090 return 0;
2091}
2092
Joerg Roedel52815b72011-11-17 17:24:28 +01002093static int pdev_iommuv2_enable(struct pci_dev *pdev)
2094{
Joerg Roedel6a113dd2011-12-01 12:04:58 +01002095 bool reset_enable;
2096 int reqs, ret;
2097
2098 /* FIXME: Hardcode number of outstanding requests for now */
2099 reqs = 32;
2100 if (pdev_pri_erratum(pdev, AMD_PRI_DEV_ERRATUM_LIMIT_REQ_ONE))
2101 reqs = 1;
2102 reset_enable = pdev_pri_erratum(pdev, AMD_PRI_DEV_ERRATUM_ENABLE_RESET);
Joerg Roedel52815b72011-11-17 17:24:28 +01002103
2104 /* Only allow access to user-accessible pages */
2105 ret = pci_enable_pasid(pdev, 0);
2106 if (ret)
2107 goto out_err;
2108
2109 /* First reset the PRI state of the device */
2110 ret = pci_reset_pri(pdev);
2111 if (ret)
2112 goto out_err;
2113
Joerg Roedel6a113dd2011-12-01 12:04:58 +01002114 /* Enable PRI */
2115 ret = pci_enable_pri(pdev, reqs);
Joerg Roedel52815b72011-11-17 17:24:28 +01002116 if (ret)
2117 goto out_err;
2118
Joerg Roedel6a113dd2011-12-01 12:04:58 +01002119 if (reset_enable) {
2120 ret = pri_reset_while_enabled(pdev);
2121 if (ret)
2122 goto out_err;
2123 }
2124
Joerg Roedel52815b72011-11-17 17:24:28 +01002125 ret = pci_enable_ats(pdev, PAGE_SHIFT);
2126 if (ret)
2127 goto out_err;
2128
2129 return 0;
2130
2131out_err:
2132 pci_disable_pri(pdev);
2133 pci_disable_pasid(pdev);
2134
2135 return ret;
2136}
2137
Joerg Roedelc99afa22011-11-21 18:19:25 +01002138/* FIXME: Move this to PCI code */
Joerg Roedela3b93122012-04-12 12:49:26 +02002139#define PCI_PRI_TLP_OFF (1 << 15)
Joerg Roedelc99afa22011-11-21 18:19:25 +01002140
Joerg Roedel98f1ad22012-07-06 13:28:37 +02002141static bool pci_pri_tlp_required(struct pci_dev *pdev)
Joerg Roedelc99afa22011-11-21 18:19:25 +01002142{
Joerg Roedela3b93122012-04-12 12:49:26 +02002143 u16 status;
Joerg Roedelc99afa22011-11-21 18:19:25 +01002144 int pos;
2145
Joerg Roedel46277b72011-12-07 14:34:02 +01002146 pos = pci_find_ext_capability(pdev, PCI_EXT_CAP_ID_PRI);
Joerg Roedelc99afa22011-11-21 18:19:25 +01002147 if (!pos)
2148 return false;
2149
Joerg Roedela3b93122012-04-12 12:49:26 +02002150 pci_read_config_word(pdev, pos + PCI_PRI_STATUS, &status);
Joerg Roedelc99afa22011-11-21 18:19:25 +01002151
Joerg Roedela3b93122012-04-12 12:49:26 +02002152 return (status & PCI_PRI_TLP_OFF) ? true : false;
Joerg Roedelc99afa22011-11-21 18:19:25 +01002153}
2154
Joerg Roedel15898bb2009-11-24 15:39:42 +01002155/*
Frank Arnolddf805ab2012-08-27 19:21:04 +02002156 * If a device is not yet associated with a domain, this function
Joerg Roedel15898bb2009-11-24 15:39:42 +01002157 * assigns it visible for the hardware
2158 */
2159static int attach_device(struct device *dev,
2160 struct protection_domain *domain)
2161{
Joerg Roedelfd7b5532011-04-05 15:31:08 +02002162 struct pci_dev *pdev = to_pci_dev(dev);
Joerg Roedelea61cdd2011-06-09 12:56:30 +02002163 struct iommu_dev_data *dev_data;
Joerg Roedel15898bb2009-11-24 15:39:42 +01002164 unsigned long flags;
2165 int ret;
2166
Joerg Roedelea61cdd2011-06-09 12:56:30 +02002167 dev_data = get_dev_data(dev);
2168
Joerg Roedel52815b72011-11-17 17:24:28 +01002169 if (domain->flags & PD_IOMMUV2_MASK) {
2170 if (!dev_data->iommu_v2 || !dev_data->passthrough)
2171 return -EINVAL;
2172
2173 if (pdev_iommuv2_enable(pdev) != 0)
2174 return -EINVAL;
2175
2176 dev_data->ats.enabled = true;
2177 dev_data->ats.qdep = pci_ats_queue_depth(pdev);
Joerg Roedelc99afa22011-11-21 18:19:25 +01002178 dev_data->pri_tlp = pci_pri_tlp_required(pdev);
Joerg Roedel52815b72011-11-17 17:24:28 +01002179 } else if (amd_iommu_iotlb_sup &&
2180 pci_enable_ats(pdev, PAGE_SHIFT) == 0) {
Joerg Roedelea61cdd2011-06-09 12:56:30 +02002181 dev_data->ats.enabled = true;
2182 dev_data->ats.qdep = pci_ats_queue_depth(pdev);
2183 }
Joerg Roedelfd7b5532011-04-05 15:31:08 +02002184
Joerg Roedel15898bb2009-11-24 15:39:42 +01002185 write_lock_irqsave(&amd_iommu_devtable_lock, flags);
Joerg Roedelec9e79e2011-06-09 17:25:50 +02002186 ret = __attach_device(dev_data, domain);
Joerg Roedel15898bb2009-11-24 15:39:42 +01002187 write_unlock_irqrestore(&amd_iommu_devtable_lock, flags);
2188
2189 /*
2190 * We might boot into a crash-kernel here. The crashed kernel
2191 * left the caches in the IOMMU dirty. So we have to flush
2192 * here to evict all dirty stuff.
2193 */
Joerg Roedel17b124b2011-04-06 18:01:35 +02002194 domain_flush_tlb_pde(domain);
Joerg Roedel15898bb2009-11-24 15:39:42 +01002195
2196 return ret;
2197}
2198
2199/*
2200 * Removes a device from a protection domain (unlocked)
2201 */
Joerg Roedelec9e79e2011-06-09 17:25:50 +02002202static void __detach_device(struct iommu_dev_data *dev_data)
Joerg Roedel15898bb2009-11-24 15:39:42 +01002203{
Joerg Roedel397111a2014-08-05 17:31:51 +02002204 struct iommu_dev_data *head, *entry;
Joerg Roedel2ca76272010-01-22 16:45:31 +01002205 struct protection_domain *domain;
Joerg Roedel7c392cb2009-11-26 11:13:32 +01002206 unsigned long flags;
Joerg Roedel15898bb2009-11-24 15:39:42 +01002207
Joerg Roedel7f760dd2009-11-26 14:49:59 +01002208 BUG_ON(!dev_data->domain);
Joerg Roedel15898bb2009-11-24 15:39:42 +01002209
Joerg Roedel2ca76272010-01-22 16:45:31 +01002210 domain = dev_data->domain;
2211
2212 spin_lock_irqsave(&domain->lock, flags);
Joerg Roedel24100052009-11-25 15:59:57 +01002213
Joerg Roedel397111a2014-08-05 17:31:51 +02002214 head = dev_data;
2215 if (head->alias_data != NULL)
2216 head = head->alias_data;
Joerg Roedel71f77582011-06-09 19:03:15 +02002217
Joerg Roedel397111a2014-08-05 17:31:51 +02002218 list_for_each_entry(entry, &head->alias_list, alias_list)
2219 do_detach(entry);
Joerg Roedel24100052009-11-25 15:59:57 +01002220
Joerg Roedel397111a2014-08-05 17:31:51 +02002221 do_detach(head);
Joerg Roedel7f760dd2009-11-26 14:49:59 +01002222
Joerg Roedel2ca76272010-01-22 16:45:31 +01002223 spin_unlock_irqrestore(&domain->lock, flags);
Joerg Roedel15898bb2009-11-24 15:39:42 +01002224
Joerg Roedel21129f72009-09-01 11:59:42 +02002225 /*
2226 * If we run in passthrough mode the device must be assigned to the
Joerg Roedeld3ad9372010-01-22 17:55:27 +01002227 * passthrough domain if it is detached from any other domain.
2228 * Make sure we can deassign from the pt_domain itself.
Joerg Roedel21129f72009-09-01 11:59:42 +02002229 */
Joerg Roedel5abcdba2011-12-01 15:49:45 +01002230 if (dev_data->passthrough &&
Joerg Roedeld3ad9372010-01-22 17:55:27 +01002231 (dev_data->domain == NULL && domain != pt_domain))
Joerg Roedelec9e79e2011-06-09 17:25:50 +02002232 __attach_device(dev_data, pt_domain);
Joerg Roedel355bf552008-12-08 12:02:41 +01002233}
2234
2235/*
2236 * Removes a device from a protection domain (with devtable_lock held)
2237 */
Joerg Roedel15898bb2009-11-24 15:39:42 +01002238static void detach_device(struct device *dev)
Joerg Roedel355bf552008-12-08 12:02:41 +01002239{
Joerg Roedel52815b72011-11-17 17:24:28 +01002240 struct protection_domain *domain;
Joerg Roedelea61cdd2011-06-09 12:56:30 +02002241 struct iommu_dev_data *dev_data;
Joerg Roedel355bf552008-12-08 12:02:41 +01002242 unsigned long flags;
2243
Joerg Roedelec9e79e2011-06-09 17:25:50 +02002244 dev_data = get_dev_data(dev);
Joerg Roedel52815b72011-11-17 17:24:28 +01002245 domain = dev_data->domain;
Joerg Roedelec9e79e2011-06-09 17:25:50 +02002246
Joerg Roedel355bf552008-12-08 12:02:41 +01002247 /* lock device table */
2248 write_lock_irqsave(&amd_iommu_devtable_lock, flags);
Joerg Roedelec9e79e2011-06-09 17:25:50 +02002249 __detach_device(dev_data);
Joerg Roedel355bf552008-12-08 12:02:41 +01002250 write_unlock_irqrestore(&amd_iommu_devtable_lock, flags);
Joerg Roedelfd7b5532011-04-05 15:31:08 +02002251
Joerg Roedel52815b72011-11-17 17:24:28 +01002252 if (domain->flags & PD_IOMMUV2_MASK)
2253 pdev_iommuv2_disable(to_pci_dev(dev));
2254 else if (dev_data->ats.enabled)
Joerg Roedelea61cdd2011-06-09 12:56:30 +02002255 pci_disable_ats(to_pci_dev(dev));
Joerg Roedel52815b72011-11-17 17:24:28 +01002256
2257 dev_data->ats.enabled = false;
Joerg Roedel355bf552008-12-08 12:02:41 +01002258}
Joerg Roedele275a2a2008-12-10 18:27:25 +01002259
Joerg Roedelaafd8ba2015-05-28 18:41:39 +02002260static int amd_iommu_add_device(struct device *dev)
Joerg Roedel15898bb2009-11-24 15:39:42 +01002261{
Joerg Roedel71f77582011-06-09 19:03:15 +02002262 struct iommu_dev_data *dev_data;
Joerg Roedel07ee8692015-05-28 18:41:42 +02002263 struct iommu_domain *domain;
Joerg Roedele275a2a2008-12-10 18:27:25 +01002264 struct amd_iommu *iommu;
Joerg Roedel5abcdba2011-12-01 15:49:45 +01002265 u16 devid;
Joerg Roedelaafd8ba2015-05-28 18:41:39 +02002266 int ret;
Joerg Roedele275a2a2008-12-10 18:27:25 +01002267
Joerg Roedelaafd8ba2015-05-28 18:41:39 +02002268 if (!check_device(dev) || get_dev_data(dev))
Joerg Roedel98fc5a62009-11-24 17:19:23 +01002269 return 0;
Joerg Roedele275a2a2008-12-10 18:27:25 +01002270
Joerg Roedelaafd8ba2015-05-28 18:41:39 +02002271 devid = get_device_id(dev);
2272 iommu = amd_iommu_rlookup_table[devid];
Joerg Roedele275a2a2008-12-10 18:27:25 +01002273
Joerg Roedelaafd8ba2015-05-28 18:41:39 +02002274 ret = iommu_init_device(dev);
Joerg Roedel4d58b8a2015-06-11 09:21:39 +02002275 if (ret) {
2276 if (ret != -ENOTSUPP)
2277 pr_err("Failed to initialize device %s - trying to proceed anyway\n",
2278 dev_name(dev));
Joerg Roedel657cbb62009-11-23 15:26:46 +01002279
Joerg Roedelaafd8ba2015-05-28 18:41:39 +02002280 iommu_ignore_device(dev);
Joerg Roedel343e9ca2015-05-28 18:41:43 +02002281 dev->archdata.dma_ops = &nommu_dma_ops;
Joerg Roedele275a2a2008-12-10 18:27:25 +01002282 goto out;
2283 }
Joerg Roedelaafd8ba2015-05-28 18:41:39 +02002284 init_iommu_group(dev);
Joerg Roedele275a2a2008-12-10 18:27:25 +01002285
Joerg Roedel07ee8692015-05-28 18:41:42 +02002286 dev_data = get_dev_data(dev);
Joerg Roedel4d58b8a2015-06-11 09:21:39 +02002287
2288 BUG_ON(!dev_data);
2289
2290 if (dev_data->iommu_v2)
Joerg Roedel07ee8692015-05-28 18:41:42 +02002291 iommu_request_dm_for_dev(dev);
2292
2293 /* Domains are initialized for this device - have a look what we ended up with */
2294 domain = iommu_get_domain_for_dev(dev);
2295 if (domain->type == IOMMU_DOMAIN_IDENTITY) {
2296 dev_data->passthrough = true;
2297 dev->archdata.dma_ops = &nommu_dma_ops;
2298 } else {
2299 dev->archdata.dma_ops = &amd_iommu_dma_ops;
2300 }
Joerg Roedele275a2a2008-12-10 18:27:25 +01002301
2302out:
Joerg Roedelaafd8ba2015-05-28 18:41:39 +02002303 iommu_completion_wait(iommu);
2304
Joerg Roedele275a2a2008-12-10 18:27:25 +01002305 return 0;
2306}
2307
Joerg Roedelaafd8ba2015-05-28 18:41:39 +02002308static void amd_iommu_remove_device(struct device *dev)
Joerg Roedel8638c492009-12-10 11:12:25 +01002309{
Joerg Roedelaafd8ba2015-05-28 18:41:39 +02002310 struct amd_iommu *iommu;
2311 u16 devid;
2312
2313 if (!check_device(dev))
2314 return;
2315
2316 devid = get_device_id(dev);
2317 iommu = amd_iommu_rlookup_table[devid];
2318
2319 iommu_uninit_device(dev);
2320 iommu_completion_wait(iommu);
Joerg Roedel8638c492009-12-10 11:12:25 +01002321}
2322
Joerg Roedel431b2a22008-07-11 17:14:22 +02002323/*****************************************************************************
2324 *
2325 * The next functions belong to the dma_ops mapping/unmapping code.
2326 *
2327 *****************************************************************************/
2328
2329/*
2330 * In the dma_ops path we only have the struct device. This function
2331 * finds the corresponding IOMMU, the protection domain and the
2332 * requestor id for a given device.
2333 * If the device is not yet associated with a domain this is also done
2334 * in this function.
2335 */
Joerg Roedel94f6d192009-11-24 16:40:02 +01002336static struct protection_domain *get_domain(struct device *dev)
Joerg Roedelb20ac0d2008-06-26 21:27:59 +02002337{
Joerg Roedel94f6d192009-11-24 16:40:02 +01002338 struct protection_domain *domain;
Joerg Roedel063071d2015-05-28 18:41:38 +02002339 struct iommu_domain *io_domain;
Joerg Roedelb20ac0d2008-06-26 21:27:59 +02002340
Joerg Roedelf99c0f12009-11-23 16:52:56 +01002341 if (!check_device(dev))
Joerg Roedel94f6d192009-11-24 16:40:02 +01002342 return ERR_PTR(-EINVAL);
Joerg Roedeldbcc1122008-09-04 15:04:26 +02002343
Joerg Roedel063071d2015-05-28 18:41:38 +02002344 io_domain = iommu_get_domain_for_dev(dev);
Joerg Roedel0bb6e242015-05-28 18:41:40 +02002345 if (!io_domain)
2346 return NULL;
Joerg Roedel063071d2015-05-28 18:41:38 +02002347
Joerg Roedel0bb6e242015-05-28 18:41:40 +02002348 domain = to_pdomain(io_domain);
2349 if (!dma_ops_domain(domain))
Joerg Roedel94f6d192009-11-24 16:40:02 +01002350 return ERR_PTR(-EBUSY);
Joerg Roedelf99c0f12009-11-23 16:52:56 +01002351
Joerg Roedel0bb6e242015-05-28 18:41:40 +02002352 return domain;
Joerg Roedelb20ac0d2008-06-26 21:27:59 +02002353}
2354
Joerg Roedel04bfdd82009-09-02 16:00:23 +02002355static void update_device_table(struct protection_domain *domain)
2356{
Joerg Roedel492667d2009-11-27 13:25:47 +01002357 struct iommu_dev_data *dev_data;
Joerg Roedel04bfdd82009-09-02 16:00:23 +02002358
Joerg Roedelea61cdd2011-06-09 12:56:30 +02002359 list_for_each_entry(dev_data, &domain->dev_list, list)
2360 set_dte_entry(dev_data->devid, domain, dev_data->ats.enabled);
Joerg Roedel04bfdd82009-09-02 16:00:23 +02002361}
2362
2363static void update_domain(struct protection_domain *domain)
2364{
2365 if (!domain->updated)
2366 return;
2367
2368 update_device_table(domain);
Joerg Roedel17b124b2011-04-06 18:01:35 +02002369
2370 domain_flush_devices(domain);
2371 domain_flush_tlb_pde(domain);
Joerg Roedel04bfdd82009-09-02 16:00:23 +02002372
2373 domain->updated = false;
2374}
2375
Joerg Roedel431b2a22008-07-11 17:14:22 +02002376/*
Joerg Roedel8bda3092009-05-12 12:02:46 +02002377 * This function fetches the PTE for a given address in the aperture
2378 */
2379static u64* dma_ops_get_pte(struct dma_ops_domain *dom,
2380 unsigned long address)
2381{
Joerg Roedel384de722009-05-15 12:30:05 +02002382 struct aperture_range *aperture;
Joerg Roedel8bda3092009-05-12 12:02:46 +02002383 u64 *pte, *pte_page;
2384
Joerg Roedel384de722009-05-15 12:30:05 +02002385 aperture = dom->aperture[APERTURE_RANGE_INDEX(address)];
2386 if (!aperture)
2387 return NULL;
2388
2389 pte = aperture->pte_pages[APERTURE_PAGE_INDEX(address)];
Joerg Roedel8bda3092009-05-12 12:02:46 +02002390 if (!pte) {
Joerg Roedelcbb9d722010-01-15 14:41:15 +01002391 pte = alloc_pte(&dom->domain, address, PAGE_SIZE, &pte_page,
Joerg Roedelabdc5eb2009-09-03 11:33:51 +02002392 GFP_ATOMIC);
Joerg Roedel384de722009-05-15 12:30:05 +02002393 aperture->pte_pages[APERTURE_PAGE_INDEX(address)] = pte_page;
2394 } else
Joerg Roedel8c8c1432009-09-02 17:30:00 +02002395 pte += PM_LEVEL_INDEX(0, address);
Joerg Roedel8bda3092009-05-12 12:02:46 +02002396
Joerg Roedel04bfdd82009-09-02 16:00:23 +02002397 update_domain(&dom->domain);
Joerg Roedel8bda3092009-05-12 12:02:46 +02002398
2399 return pte;
2400}
2401
2402/*
Joerg Roedel431b2a22008-07-11 17:14:22 +02002403 * This is the generic map function. It maps one 4kb page at paddr to
2404 * the given address in the DMA address space for the domain.
2405 */
Joerg Roedel680525e2009-11-23 18:44:42 +01002406static dma_addr_t dma_ops_domain_map(struct dma_ops_domain *dom,
Joerg Roedelcb76c322008-06-26 21:28:00 +02002407 unsigned long address,
2408 phys_addr_t paddr,
2409 int direction)
2410{
2411 u64 *pte, __pte;
2412
2413 WARN_ON(address > dom->aperture_size);
2414
2415 paddr &= PAGE_MASK;
2416
Joerg Roedel8bda3092009-05-12 12:02:46 +02002417 pte = dma_ops_get_pte(dom, address);
Joerg Roedel53812c12009-05-12 12:17:38 +02002418 if (!pte)
FUJITA Tomonori8fd524b2009-11-15 21:19:53 +09002419 return DMA_ERROR_CODE;
Joerg Roedelcb76c322008-06-26 21:28:00 +02002420
2421 __pte = paddr | IOMMU_PTE_P | IOMMU_PTE_FC;
2422
2423 if (direction == DMA_TO_DEVICE)
2424 __pte |= IOMMU_PTE_IR;
2425 else if (direction == DMA_FROM_DEVICE)
2426 __pte |= IOMMU_PTE_IW;
2427 else if (direction == DMA_BIDIRECTIONAL)
2428 __pte |= IOMMU_PTE_IR | IOMMU_PTE_IW;
2429
2430 WARN_ON(*pte);
2431
2432 *pte = __pte;
2433
2434 return (dma_addr_t)address;
2435}
2436
Joerg Roedel431b2a22008-07-11 17:14:22 +02002437/*
2438 * The generic unmapping function for on page in the DMA address space.
2439 */
Joerg Roedel680525e2009-11-23 18:44:42 +01002440static void dma_ops_domain_unmap(struct dma_ops_domain *dom,
Joerg Roedelcb76c322008-06-26 21:28:00 +02002441 unsigned long address)
2442{
Joerg Roedel384de722009-05-15 12:30:05 +02002443 struct aperture_range *aperture;
Joerg Roedelcb76c322008-06-26 21:28:00 +02002444 u64 *pte;
2445
2446 if (address >= dom->aperture_size)
2447 return;
2448
Joerg Roedel384de722009-05-15 12:30:05 +02002449 aperture = dom->aperture[APERTURE_RANGE_INDEX(address)];
2450 if (!aperture)
2451 return;
Joerg Roedelcb76c322008-06-26 21:28:00 +02002452
Joerg Roedel384de722009-05-15 12:30:05 +02002453 pte = aperture->pte_pages[APERTURE_PAGE_INDEX(address)];
2454 if (!pte)
2455 return;
2456
Joerg Roedel8c8c1432009-09-02 17:30:00 +02002457 pte += PM_LEVEL_INDEX(0, address);
Joerg Roedelcb76c322008-06-26 21:28:00 +02002458
2459 WARN_ON(!*pte);
2460
2461 *pte = 0ULL;
2462}
2463
Joerg Roedel431b2a22008-07-11 17:14:22 +02002464/*
2465 * This function contains common code for mapping of a physically
Joerg Roedel24f81162008-12-08 14:25:39 +01002466 * contiguous memory region into DMA address space. It is used by all
2467 * mapping functions provided with this IOMMU driver.
Joerg Roedel431b2a22008-07-11 17:14:22 +02002468 * Must be called with the domain lock held.
2469 */
Joerg Roedelcb76c322008-06-26 21:28:00 +02002470static dma_addr_t __map_single(struct device *dev,
Joerg Roedelcb76c322008-06-26 21:28:00 +02002471 struct dma_ops_domain *dma_dom,
2472 phys_addr_t paddr,
2473 size_t size,
Joerg Roedel6d4f3432008-09-04 19:18:02 +02002474 int dir,
Joerg Roedel832a90c2008-09-18 15:54:23 +02002475 bool align,
2476 u64 dma_mask)
Joerg Roedelcb76c322008-06-26 21:28:00 +02002477{
2478 dma_addr_t offset = paddr & ~PAGE_MASK;
Joerg Roedel53812c12009-05-12 12:17:38 +02002479 dma_addr_t address, start, ret;
Joerg Roedelcb76c322008-06-26 21:28:00 +02002480 unsigned int pages;
Joerg Roedel6d4f3432008-09-04 19:18:02 +02002481 unsigned long align_mask = 0;
Joerg Roedelcb76c322008-06-26 21:28:00 +02002482 int i;
2483
Joerg Roedele3c449f2008-10-15 22:02:11 -07002484 pages = iommu_num_pages(paddr, size, PAGE_SIZE);
Joerg Roedelcb76c322008-06-26 21:28:00 +02002485 paddr &= PAGE_MASK;
2486
Joerg Roedel8ecaf8f2008-12-12 16:13:04 +01002487 INC_STATS_COUNTER(total_map_requests);
2488
Joerg Roedelc1858972008-12-12 15:42:39 +01002489 if (pages > 1)
2490 INC_STATS_COUNTER(cross_page);
2491
Joerg Roedel6d4f3432008-09-04 19:18:02 +02002492 if (align)
2493 align_mask = (1UL << get_order(size)) - 1;
2494
Joerg Roedel11b83882009-05-19 10:23:15 +02002495retry:
Joerg Roedel832a90c2008-09-18 15:54:23 +02002496 address = dma_ops_alloc_addresses(dev, dma_dom, pages, align_mask,
2497 dma_mask);
FUJITA Tomonori8fd524b2009-11-15 21:19:53 +09002498 if (unlikely(address == DMA_ERROR_CODE)) {
Joerg Roedel11b83882009-05-19 10:23:15 +02002499 /*
2500 * setting next_address here will let the address
2501 * allocator only scan the new allocated range in the
2502 * first run. This is a small optimization.
2503 */
2504 dma_dom->next_address = dma_dom->aperture_size;
2505
Joerg Roedel576175c2009-11-23 19:08:46 +01002506 if (alloc_new_range(dma_dom, false, GFP_ATOMIC))
Joerg Roedel11b83882009-05-19 10:23:15 +02002507 goto out;
2508
2509 /*
André Goddard Rosaaf901ca2009-11-14 13:09:05 -02002510 * aperture was successfully enlarged by 128 MB, try
Joerg Roedel11b83882009-05-19 10:23:15 +02002511 * allocation again
2512 */
2513 goto retry;
2514 }
Joerg Roedelcb76c322008-06-26 21:28:00 +02002515
2516 start = address;
2517 for (i = 0; i < pages; ++i) {
Joerg Roedel680525e2009-11-23 18:44:42 +01002518 ret = dma_ops_domain_map(dma_dom, start, paddr, dir);
FUJITA Tomonori8fd524b2009-11-15 21:19:53 +09002519 if (ret == DMA_ERROR_CODE)
Joerg Roedel53812c12009-05-12 12:17:38 +02002520 goto out_unmap;
2521
Joerg Roedelcb76c322008-06-26 21:28:00 +02002522 paddr += PAGE_SIZE;
2523 start += PAGE_SIZE;
2524 }
2525 address += offset;
2526
Joerg Roedel5774f7c2008-12-12 15:57:30 +01002527 ADD_STATS_COUNTER(alloced_io_mem, size);
2528
FUJITA Tomonoriafa9fdc2008-09-20 01:23:30 +09002529 if (unlikely(dma_dom->need_flush && !amd_iommu_unmap_flush)) {
Joerg Roedel17b124b2011-04-06 18:01:35 +02002530 domain_flush_tlb(&dma_dom->domain);
Joerg Roedel1c655772008-09-04 18:40:05 +02002531 dma_dom->need_flush = false;
Joerg Roedel318afd42009-11-23 18:32:38 +01002532 } else if (unlikely(amd_iommu_np_cache))
Joerg Roedel17b124b2011-04-06 18:01:35 +02002533 domain_flush_pages(&dma_dom->domain, address, size);
Joerg Roedel270cab242008-09-04 15:49:46 +02002534
Joerg Roedelcb76c322008-06-26 21:28:00 +02002535out:
2536 return address;
Joerg Roedel53812c12009-05-12 12:17:38 +02002537
2538out_unmap:
2539
2540 for (--i; i >= 0; --i) {
2541 start -= PAGE_SIZE;
Joerg Roedel680525e2009-11-23 18:44:42 +01002542 dma_ops_domain_unmap(dma_dom, start);
Joerg Roedel53812c12009-05-12 12:17:38 +02002543 }
2544
2545 dma_ops_free_addresses(dma_dom, address, pages);
2546
FUJITA Tomonori8fd524b2009-11-15 21:19:53 +09002547 return DMA_ERROR_CODE;
Joerg Roedelcb76c322008-06-26 21:28:00 +02002548}
2549
Joerg Roedel431b2a22008-07-11 17:14:22 +02002550/*
2551 * Does the reverse of the __map_single function. Must be called with
2552 * the domain lock held too
2553 */
Joerg Roedelcd8c82e2009-11-23 19:33:56 +01002554static void __unmap_single(struct dma_ops_domain *dma_dom,
Joerg Roedelcb76c322008-06-26 21:28:00 +02002555 dma_addr_t dma_addr,
2556 size_t size,
2557 int dir)
2558{
Joerg Roedel04e04632010-09-23 16:12:48 +02002559 dma_addr_t flush_addr;
Joerg Roedelcb76c322008-06-26 21:28:00 +02002560 dma_addr_t i, start;
2561 unsigned int pages;
2562
FUJITA Tomonori8fd524b2009-11-15 21:19:53 +09002563 if ((dma_addr == DMA_ERROR_CODE) ||
Joerg Roedelb8d99052008-12-08 14:40:26 +01002564 (dma_addr + size > dma_dom->aperture_size))
Joerg Roedelcb76c322008-06-26 21:28:00 +02002565 return;
2566
Joerg Roedel04e04632010-09-23 16:12:48 +02002567 flush_addr = dma_addr;
Joerg Roedele3c449f2008-10-15 22:02:11 -07002568 pages = iommu_num_pages(dma_addr, size, PAGE_SIZE);
Joerg Roedelcb76c322008-06-26 21:28:00 +02002569 dma_addr &= PAGE_MASK;
2570 start = dma_addr;
2571
2572 for (i = 0; i < pages; ++i) {
Joerg Roedel680525e2009-11-23 18:44:42 +01002573 dma_ops_domain_unmap(dma_dom, start);
Joerg Roedelcb76c322008-06-26 21:28:00 +02002574 start += PAGE_SIZE;
2575 }
2576
Joerg Roedel5774f7c2008-12-12 15:57:30 +01002577 SUB_STATS_COUNTER(alloced_io_mem, size);
2578
Joerg Roedelcb76c322008-06-26 21:28:00 +02002579 dma_ops_free_addresses(dma_dom, dma_addr, pages);
Joerg Roedel270cab242008-09-04 15:49:46 +02002580
Joerg Roedel80be3082008-11-06 14:59:05 +01002581 if (amd_iommu_unmap_flush || dma_dom->need_flush) {
Joerg Roedel17b124b2011-04-06 18:01:35 +02002582 domain_flush_pages(&dma_dom->domain, flush_addr, size);
Joerg Roedel80be3082008-11-06 14:59:05 +01002583 dma_dom->need_flush = false;
2584 }
Joerg Roedelcb76c322008-06-26 21:28:00 +02002585}
2586
Joerg Roedel431b2a22008-07-11 17:14:22 +02002587/*
2588 * The exported map_single function for dma_ops.
2589 */
FUJITA Tomonori51491362009-01-05 23:47:25 +09002590static dma_addr_t map_page(struct device *dev, struct page *page,
2591 unsigned long offset, size_t size,
2592 enum dma_data_direction dir,
2593 struct dma_attrs *attrs)
Joerg Roedel4da70b92008-06-26 21:28:01 +02002594{
2595 unsigned long flags;
Joerg Roedel4da70b92008-06-26 21:28:01 +02002596 struct protection_domain *domain;
Joerg Roedel4da70b92008-06-26 21:28:01 +02002597 dma_addr_t addr;
Joerg Roedel832a90c2008-09-18 15:54:23 +02002598 u64 dma_mask;
FUJITA Tomonori51491362009-01-05 23:47:25 +09002599 phys_addr_t paddr = page_to_phys(page) + offset;
Joerg Roedel4da70b92008-06-26 21:28:01 +02002600
Joerg Roedel0f2a86f2008-12-12 15:05:16 +01002601 INC_STATS_COUNTER(cnt_map_single);
2602
Joerg Roedel94f6d192009-11-24 16:40:02 +01002603 domain = get_domain(dev);
2604 if (PTR_ERR(domain) == -EINVAL)
Joerg Roedel4da70b92008-06-26 21:28:01 +02002605 return (dma_addr_t)paddr;
Joerg Roedel94f6d192009-11-24 16:40:02 +01002606 else if (IS_ERR(domain))
2607 return DMA_ERROR_CODE;
Joerg Roedel4da70b92008-06-26 21:28:01 +02002608
Joerg Roedelf99c0f12009-11-23 16:52:56 +01002609 dma_mask = *dev->dma_mask;
2610
Joerg Roedel4da70b92008-06-26 21:28:01 +02002611 spin_lock_irqsave(&domain->lock, flags);
Joerg Roedel94f6d192009-11-24 16:40:02 +01002612
Joerg Roedelcd8c82e2009-11-23 19:33:56 +01002613 addr = __map_single(dev, domain->priv, paddr, size, dir, false,
Joerg Roedel832a90c2008-09-18 15:54:23 +02002614 dma_mask);
FUJITA Tomonori8fd524b2009-11-15 21:19:53 +09002615 if (addr == DMA_ERROR_CODE)
Joerg Roedel4da70b92008-06-26 21:28:01 +02002616 goto out;
2617
Joerg Roedel17b124b2011-04-06 18:01:35 +02002618 domain_flush_complete(domain);
Joerg Roedel4da70b92008-06-26 21:28:01 +02002619
2620out:
2621 spin_unlock_irqrestore(&domain->lock, flags);
2622
2623 return addr;
2624}
2625
Joerg Roedel431b2a22008-07-11 17:14:22 +02002626/*
2627 * The exported unmap_single function for dma_ops.
2628 */
FUJITA Tomonori51491362009-01-05 23:47:25 +09002629static void unmap_page(struct device *dev, dma_addr_t dma_addr, size_t size,
2630 enum dma_data_direction dir, struct dma_attrs *attrs)
Joerg Roedel4da70b92008-06-26 21:28:01 +02002631{
2632 unsigned long flags;
Joerg Roedel4da70b92008-06-26 21:28:01 +02002633 struct protection_domain *domain;
Joerg Roedel4da70b92008-06-26 21:28:01 +02002634
Joerg Roedel146a6912008-12-12 15:07:12 +01002635 INC_STATS_COUNTER(cnt_unmap_single);
2636
Joerg Roedel94f6d192009-11-24 16:40:02 +01002637 domain = get_domain(dev);
2638 if (IS_ERR(domain))
Joerg Roedel5b28df62008-12-02 17:49:42 +01002639 return;
2640
Joerg Roedel4da70b92008-06-26 21:28:01 +02002641 spin_lock_irqsave(&domain->lock, flags);
2642
Joerg Roedelcd8c82e2009-11-23 19:33:56 +01002643 __unmap_single(domain->priv, dma_addr, size, dir);
Joerg Roedel4da70b92008-06-26 21:28:01 +02002644
Joerg Roedel17b124b2011-04-06 18:01:35 +02002645 domain_flush_complete(domain);
Joerg Roedel4da70b92008-06-26 21:28:01 +02002646
2647 spin_unlock_irqrestore(&domain->lock, flags);
2648}
2649
Joerg Roedel431b2a22008-07-11 17:14:22 +02002650/*
Joerg Roedel431b2a22008-07-11 17:14:22 +02002651 * The exported map_sg function for dma_ops (handles scatter-gather
2652 * lists).
2653 */
Joerg Roedel65b050a2008-06-26 21:28:02 +02002654static int map_sg(struct device *dev, struct scatterlist *sglist,
FUJITA Tomonori160c1d82009-01-05 23:59:02 +09002655 int nelems, enum dma_data_direction dir,
2656 struct dma_attrs *attrs)
Joerg Roedel65b050a2008-06-26 21:28:02 +02002657{
2658 unsigned long flags;
Joerg Roedel65b050a2008-06-26 21:28:02 +02002659 struct protection_domain *domain;
Joerg Roedel65b050a2008-06-26 21:28:02 +02002660 int i;
2661 struct scatterlist *s;
2662 phys_addr_t paddr;
2663 int mapped_elems = 0;
Joerg Roedel832a90c2008-09-18 15:54:23 +02002664 u64 dma_mask;
Joerg Roedel65b050a2008-06-26 21:28:02 +02002665
Joerg Roedeld03f067a2008-12-12 15:09:48 +01002666 INC_STATS_COUNTER(cnt_map_sg);
2667
Joerg Roedel94f6d192009-11-24 16:40:02 +01002668 domain = get_domain(dev);
Joerg Roedela0e191b2013-04-09 15:04:36 +02002669 if (IS_ERR(domain))
Joerg Roedel94f6d192009-11-24 16:40:02 +01002670 return 0;
Joerg Roedeldbcc1122008-09-04 15:04:26 +02002671
Joerg Roedel832a90c2008-09-18 15:54:23 +02002672 dma_mask = *dev->dma_mask;
Joerg Roedel65b050a2008-06-26 21:28:02 +02002673
Joerg Roedel65b050a2008-06-26 21:28:02 +02002674 spin_lock_irqsave(&domain->lock, flags);
2675
2676 for_each_sg(sglist, s, nelems, i) {
2677 paddr = sg_phys(s);
2678
Joerg Roedelcd8c82e2009-11-23 19:33:56 +01002679 s->dma_address = __map_single(dev, domain->priv,
Joerg Roedel832a90c2008-09-18 15:54:23 +02002680 paddr, s->length, dir, false,
2681 dma_mask);
Joerg Roedel65b050a2008-06-26 21:28:02 +02002682
2683 if (s->dma_address) {
2684 s->dma_length = s->length;
2685 mapped_elems++;
2686 } else
2687 goto unmap;
Joerg Roedel65b050a2008-06-26 21:28:02 +02002688 }
2689
Joerg Roedel17b124b2011-04-06 18:01:35 +02002690 domain_flush_complete(domain);
Joerg Roedel65b050a2008-06-26 21:28:02 +02002691
2692out:
2693 spin_unlock_irqrestore(&domain->lock, flags);
2694
2695 return mapped_elems;
2696unmap:
2697 for_each_sg(sglist, s, mapped_elems, i) {
2698 if (s->dma_address)
Joerg Roedelcd8c82e2009-11-23 19:33:56 +01002699 __unmap_single(domain->priv, s->dma_address,
Joerg Roedel65b050a2008-06-26 21:28:02 +02002700 s->dma_length, dir);
2701 s->dma_address = s->dma_length = 0;
2702 }
2703
2704 mapped_elems = 0;
2705
2706 goto out;
2707}
2708
Joerg Roedel431b2a22008-07-11 17:14:22 +02002709/*
2710 * The exported map_sg function for dma_ops (handles scatter-gather
2711 * lists).
2712 */
Joerg Roedel65b050a2008-06-26 21:28:02 +02002713static void unmap_sg(struct device *dev, struct scatterlist *sglist,
FUJITA Tomonori160c1d82009-01-05 23:59:02 +09002714 int nelems, enum dma_data_direction dir,
2715 struct dma_attrs *attrs)
Joerg Roedel65b050a2008-06-26 21:28:02 +02002716{
2717 unsigned long flags;
Joerg Roedel65b050a2008-06-26 21:28:02 +02002718 struct protection_domain *domain;
2719 struct scatterlist *s;
Joerg Roedel65b050a2008-06-26 21:28:02 +02002720 int i;
2721
Joerg Roedel55877a62008-12-12 15:12:14 +01002722 INC_STATS_COUNTER(cnt_unmap_sg);
2723
Joerg Roedel94f6d192009-11-24 16:40:02 +01002724 domain = get_domain(dev);
2725 if (IS_ERR(domain))
Joerg Roedel5b28df62008-12-02 17:49:42 +01002726 return;
2727
Joerg Roedel65b050a2008-06-26 21:28:02 +02002728 spin_lock_irqsave(&domain->lock, flags);
2729
2730 for_each_sg(sglist, s, nelems, i) {
Joerg Roedelcd8c82e2009-11-23 19:33:56 +01002731 __unmap_single(domain->priv, s->dma_address,
Joerg Roedel65b050a2008-06-26 21:28:02 +02002732 s->dma_length, dir);
Joerg Roedel65b050a2008-06-26 21:28:02 +02002733 s->dma_address = s->dma_length = 0;
2734 }
2735
Joerg Roedel17b124b2011-04-06 18:01:35 +02002736 domain_flush_complete(domain);
Joerg Roedel65b050a2008-06-26 21:28:02 +02002737
2738 spin_unlock_irqrestore(&domain->lock, flags);
2739}
2740
Joerg Roedel431b2a22008-07-11 17:14:22 +02002741/*
2742 * The exported alloc_coherent function for dma_ops.
2743 */
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002744static void *alloc_coherent(struct device *dev, size_t size,
Andrzej Pietrasiewiczbaa676f2012-03-27 14:28:18 +02002745 dma_addr_t *dma_addr, gfp_t flag,
2746 struct dma_attrs *attrs)
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002747{
Joerg Roedel832a90c2008-09-18 15:54:23 +02002748 u64 dma_mask = dev->coherent_dma_mask;
Joerg Roedel3b839a52015-04-01 14:58:47 +02002749 struct protection_domain *domain;
2750 unsigned long flags;
2751 struct page *page;
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002752
Joerg Roedelc8f0fb32008-12-12 15:14:21 +01002753 INC_STATS_COUNTER(cnt_alloc_coherent);
2754
Joerg Roedel94f6d192009-11-24 16:40:02 +01002755 domain = get_domain(dev);
2756 if (PTR_ERR(domain) == -EINVAL) {
Joerg Roedel3b839a52015-04-01 14:58:47 +02002757 page = alloc_pages(flag, get_order(size));
2758 *dma_addr = page_to_phys(page);
2759 return page_address(page);
Joerg Roedel94f6d192009-11-24 16:40:02 +01002760 } else if (IS_ERR(domain))
2761 return NULL;
Joerg Roedeldbcc1122008-09-04 15:04:26 +02002762
Joerg Roedel3b839a52015-04-01 14:58:47 +02002763 size = PAGE_ALIGN(size);
Joerg Roedelf99c0f12009-11-23 16:52:56 +01002764 dma_mask = dev->coherent_dma_mask;
2765 flag &= ~(__GFP_DMA | __GFP_HIGHMEM | __GFP_DMA32);
Joerg Roedel2d0ec7a2015-06-01 17:30:57 +02002766 flag |= __GFP_ZERO;
FUJITA Tomonori13d9fea2008-09-10 20:19:40 +09002767
Joerg Roedel3b839a52015-04-01 14:58:47 +02002768 page = alloc_pages(flag | __GFP_NOWARN, get_order(size));
2769 if (!page) {
2770 if (!(flag & __GFP_WAIT))
2771 return NULL;
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002772
Joerg Roedel3b839a52015-04-01 14:58:47 +02002773 page = dma_alloc_from_contiguous(dev, size >> PAGE_SHIFT,
2774 get_order(size));
2775 if (!page)
2776 return NULL;
2777 }
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002778
Joerg Roedel832a90c2008-09-18 15:54:23 +02002779 if (!dma_mask)
2780 dma_mask = *dev->dma_mask;
2781
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002782 spin_lock_irqsave(&domain->lock, flags);
2783
Joerg Roedel3b839a52015-04-01 14:58:47 +02002784 *dma_addr = __map_single(dev, domain->priv, page_to_phys(page),
Joerg Roedel832a90c2008-09-18 15:54:23 +02002785 size, DMA_BIDIRECTIONAL, true, dma_mask);
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002786
FUJITA Tomonori8fd524b2009-11-15 21:19:53 +09002787 if (*dma_addr == DMA_ERROR_CODE) {
Jiri Slaby367d04c2009-05-28 09:54:48 +02002788 spin_unlock_irqrestore(&domain->lock, flags);
Joerg Roedel5b28df62008-12-02 17:49:42 +01002789 goto out_free;
Jiri Slaby367d04c2009-05-28 09:54:48 +02002790 }
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002791
Joerg Roedel17b124b2011-04-06 18:01:35 +02002792 domain_flush_complete(domain);
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002793
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002794 spin_unlock_irqrestore(&domain->lock, flags);
2795
Joerg Roedel3b839a52015-04-01 14:58:47 +02002796 return page_address(page);
Joerg Roedel5b28df62008-12-02 17:49:42 +01002797
2798out_free:
2799
Joerg Roedel3b839a52015-04-01 14:58:47 +02002800 if (!dma_release_from_contiguous(dev, page, size >> PAGE_SHIFT))
2801 __free_pages(page, get_order(size));
Joerg Roedel5b28df62008-12-02 17:49:42 +01002802
2803 return NULL;
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002804}
2805
Joerg Roedel431b2a22008-07-11 17:14:22 +02002806/*
2807 * The exported free_coherent function for dma_ops.
Joerg Roedel431b2a22008-07-11 17:14:22 +02002808 */
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002809static void free_coherent(struct device *dev, size_t size,
Andrzej Pietrasiewiczbaa676f2012-03-27 14:28:18 +02002810 void *virt_addr, dma_addr_t dma_addr,
2811 struct dma_attrs *attrs)
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002812{
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002813 struct protection_domain *domain;
Joerg Roedel3b839a52015-04-01 14:58:47 +02002814 unsigned long flags;
2815 struct page *page;
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002816
Joerg Roedel5d31ee72008-12-12 15:16:38 +01002817 INC_STATS_COUNTER(cnt_free_coherent);
2818
Joerg Roedel3b839a52015-04-01 14:58:47 +02002819 page = virt_to_page(virt_addr);
2820 size = PAGE_ALIGN(size);
2821
Joerg Roedel94f6d192009-11-24 16:40:02 +01002822 domain = get_domain(dev);
2823 if (IS_ERR(domain))
Joerg Roedel5b28df62008-12-02 17:49:42 +01002824 goto free_mem;
2825
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002826 spin_lock_irqsave(&domain->lock, flags);
2827
Joerg Roedelcd8c82e2009-11-23 19:33:56 +01002828 __unmap_single(domain->priv, dma_addr, size, DMA_BIDIRECTIONAL);
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002829
Joerg Roedel17b124b2011-04-06 18:01:35 +02002830 domain_flush_complete(domain);
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002831
2832 spin_unlock_irqrestore(&domain->lock, flags);
2833
2834free_mem:
Joerg Roedel3b839a52015-04-01 14:58:47 +02002835 if (!dma_release_from_contiguous(dev, page, size >> PAGE_SHIFT))
2836 __free_pages(page, get_order(size));
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002837}
2838
Joerg Roedelc432f3d2008-06-26 21:28:04 +02002839/*
Joerg Roedelb39ba6a2008-09-09 18:40:46 +02002840 * This function is called by the DMA layer to find out if we can handle a
2841 * particular device. It is part of the dma_ops.
2842 */
2843static int amd_iommu_dma_supported(struct device *dev, u64 mask)
2844{
Joerg Roedel420aef82009-11-23 16:14:57 +01002845 return check_device(dev);
Joerg Roedelb39ba6a2008-09-09 18:40:46 +02002846}
2847
FUJITA Tomonori160c1d82009-01-05 23:59:02 +09002848static struct dma_map_ops amd_iommu_dma_ops = {
Andrzej Pietrasiewiczbaa676f2012-03-27 14:28:18 +02002849 .alloc = alloc_coherent,
2850 .free = free_coherent,
FUJITA Tomonori51491362009-01-05 23:47:25 +09002851 .map_page = map_page,
2852 .unmap_page = unmap_page,
Joerg Roedel6631ee92008-06-26 21:28:05 +02002853 .map_sg = map_sg,
2854 .unmap_sg = unmap_sg,
Joerg Roedelb39ba6a2008-09-09 18:40:46 +02002855 .dma_supported = amd_iommu_dma_supported,
Joerg Roedel6631ee92008-06-26 21:28:05 +02002856};
2857
Joerg Roedel3a18404c2015-05-28 18:41:45 +02002858int __init amd_iommu_init_api(void)
Joerg Roedel27c21272011-05-30 15:56:24 +02002859{
Joerg Roedel3a18404c2015-05-28 18:41:45 +02002860 return bus_set_iommu(&pci_bus_type, &amd_iommu_ops);
Joerg Roedelf5325092010-01-22 17:44:35 +01002861}
2862
Joerg Roedel6631ee92008-06-26 21:28:05 +02002863int __init amd_iommu_init_dma_ops(void)
2864{
Joerg Roedel6631ee92008-06-26 21:28:05 +02002865 iommu_detected = 1;
FUJITA Tomonori75f1cdf2009-11-10 19:46:20 +09002866 swiotlb = 0;
Joerg Roedel6631ee92008-06-26 21:28:05 +02002867
Joerg Roedel7f265082008-12-12 13:50:21 +01002868 amd_iommu_stats_init();
2869
Joerg Roedel62410ee2012-06-12 16:42:43 +02002870 if (amd_iommu_unmap_flush)
2871 pr_info("AMD-Vi: IO/TLB flush on unmap enabled\n");
2872 else
2873 pr_info("AMD-Vi: Lazy IO/TLB flushing enabled\n");
2874
Joerg Roedel6631ee92008-06-26 21:28:05 +02002875 return 0;
Joerg Roedel6631ee92008-06-26 21:28:05 +02002876}
Joerg Roedel6d98cd82008-12-08 12:05:55 +01002877
2878/*****************************************************************************
2879 *
2880 * The following functions belong to the exported interface of AMD IOMMU
2881 *
2882 * This interface allows access to lower level functions of the IOMMU
2883 * like protection domain handling and assignement of devices to domains
2884 * which is not possible with the dma_ops interface.
2885 *
2886 *****************************************************************************/
2887
Joerg Roedel6d98cd82008-12-08 12:05:55 +01002888static void cleanup_domain(struct protection_domain *domain)
2889{
Joerg Roedel9b29d3c2014-08-05 17:50:15 +02002890 struct iommu_dev_data *entry;
Joerg Roedel6d98cd82008-12-08 12:05:55 +01002891 unsigned long flags;
Joerg Roedel6d98cd82008-12-08 12:05:55 +01002892
2893 write_lock_irqsave(&amd_iommu_devtable_lock, flags);
2894
Joerg Roedel9b29d3c2014-08-05 17:50:15 +02002895 while (!list_empty(&domain->dev_list)) {
2896 entry = list_first_entry(&domain->dev_list,
2897 struct iommu_dev_data, list);
2898 __detach_device(entry);
Joerg Roedel492667d2009-11-27 13:25:47 +01002899 }
Joerg Roedel6d98cd82008-12-08 12:05:55 +01002900
2901 write_unlock_irqrestore(&amd_iommu_devtable_lock, flags);
2902}
2903
Joerg Roedel26508152009-08-26 16:52:40 +02002904static void protection_domain_free(struct protection_domain *domain)
2905{
2906 if (!domain)
2907 return;
2908
Joerg Roedelaeb26f52009-11-20 16:44:01 +01002909 del_domain_from_list(domain);
2910
Joerg Roedel26508152009-08-26 16:52:40 +02002911 if (domain->id)
2912 domain_id_free(domain->id);
2913
2914 kfree(domain);
2915}
2916
Joerg Roedel7a5a5662015-06-30 08:56:11 +02002917static int protection_domain_init(struct protection_domain *domain)
2918{
2919 spin_lock_init(&domain->lock);
2920 mutex_init(&domain->api_lock);
2921 domain->id = domain_id_alloc();
2922 if (!domain->id)
2923 return -ENOMEM;
2924 INIT_LIST_HEAD(&domain->dev_list);
2925
2926 return 0;
2927}
2928
Joerg Roedel26508152009-08-26 16:52:40 +02002929static struct protection_domain *protection_domain_alloc(void)
Joerg Roedelc156e342008-12-02 18:13:27 +01002930{
2931 struct protection_domain *domain;
2932
2933 domain = kzalloc(sizeof(*domain), GFP_KERNEL);
2934 if (!domain)
Joerg Roedel26508152009-08-26 16:52:40 +02002935 return NULL;
Joerg Roedelc156e342008-12-02 18:13:27 +01002936
Joerg Roedel7a5a5662015-06-30 08:56:11 +02002937 if (protection_domain_init(domain))
Joerg Roedel26508152009-08-26 16:52:40 +02002938 goto out_err;
2939
Joerg Roedelaeb26f52009-11-20 16:44:01 +01002940 add_domain_to_list(domain);
2941
Joerg Roedel26508152009-08-26 16:52:40 +02002942 return domain;
2943
2944out_err:
2945 kfree(domain);
2946
2947 return NULL;
2948}
2949
Joerg Roedelaafd8ba2015-05-28 18:41:39 +02002950static int alloc_passthrough_domain(void)
Joerg Roedel5abcdba2011-12-01 15:49:45 +01002951{
2952 if (pt_domain != NULL)
2953 return 0;
2954
2955 /* allocate passthrough domain */
2956 pt_domain = protection_domain_alloc();
2957 if (!pt_domain)
2958 return -ENOMEM;
2959
2960 pt_domain->mode = PAGE_MODE_NONE;
2961
2962 return 0;
2963}
Joerg Roedel3f4b87b2015-03-26 13:43:07 +01002964
2965static struct iommu_domain *amd_iommu_domain_alloc(unsigned type)
2966{
2967 struct protection_domain *pdomain;
Joerg Roedel0bb6e242015-05-28 18:41:40 +02002968 struct dma_ops_domain *dma_domain;
Joerg Roedel3f4b87b2015-03-26 13:43:07 +01002969
Joerg Roedel0bb6e242015-05-28 18:41:40 +02002970 switch (type) {
2971 case IOMMU_DOMAIN_UNMANAGED:
2972 pdomain = protection_domain_alloc();
2973 if (!pdomain)
2974 return NULL;
2975
2976 pdomain->mode = PAGE_MODE_3_LEVEL;
2977 pdomain->pt_root = (void *)get_zeroed_page(GFP_KERNEL);
2978 if (!pdomain->pt_root) {
2979 protection_domain_free(pdomain);
2980 return NULL;
2981 }
2982
2983 pdomain->domain.geometry.aperture_start = 0;
2984 pdomain->domain.geometry.aperture_end = ~0ULL;
2985 pdomain->domain.geometry.force_aperture = true;
2986
2987 break;
2988 case IOMMU_DOMAIN_DMA:
2989 dma_domain = dma_ops_domain_alloc();
2990 if (!dma_domain) {
2991 pr_err("AMD-Vi: Failed to allocate\n");
2992 return NULL;
2993 }
2994 pdomain = &dma_domain->domain;
2995 break;
Joerg Roedel07f643a2015-05-28 18:41:41 +02002996 case IOMMU_DOMAIN_IDENTITY:
2997 pdomain = protection_domain_alloc();
2998 if (!pdomain)
2999 return NULL;
3000
3001 pdomain->mode = PAGE_MODE_NONE;
3002 break;
Joerg Roedel0bb6e242015-05-28 18:41:40 +02003003 default:
Joerg Roedel3f4b87b2015-03-26 13:43:07 +01003004 return NULL;
Joerg Roedel0bb6e242015-05-28 18:41:40 +02003005 }
Joerg Roedel3f4b87b2015-03-26 13:43:07 +01003006
3007 return &pdomain->domain;
Joerg Roedel3f4b87b2015-03-26 13:43:07 +01003008}
3009
3010static void amd_iommu_domain_free(struct iommu_domain *dom)
Joerg Roedel26508152009-08-26 16:52:40 +02003011{
3012 struct protection_domain *domain;
3013
Joerg Roedel3f4b87b2015-03-26 13:43:07 +01003014 if (!dom)
Joerg Roedel98383fc2008-12-02 18:34:12 +01003015 return;
3016
Joerg Roedel3f4b87b2015-03-26 13:43:07 +01003017 domain = to_pdomain(dom);
3018
Joerg Roedel98383fc2008-12-02 18:34:12 +01003019 if (domain->dev_cnt > 0)
3020 cleanup_domain(domain);
3021
3022 BUG_ON(domain->dev_cnt != 0);
3023
Joerg Roedel132bd682011-11-17 14:18:46 +01003024 if (domain->mode != PAGE_MODE_NONE)
3025 free_pagetable(domain);
Joerg Roedel98383fc2008-12-02 18:34:12 +01003026
Joerg Roedel52815b72011-11-17 17:24:28 +01003027 if (domain->flags & PD_IOMMUV2_MASK)
3028 free_gcr3_table(domain);
3029
Joerg Roedel8b408fe2010-03-08 14:20:07 +01003030 protection_domain_free(domain);
Joerg Roedel98383fc2008-12-02 18:34:12 +01003031}
3032
Joerg Roedel684f2882008-12-08 12:07:44 +01003033static void amd_iommu_detach_device(struct iommu_domain *dom,
3034 struct device *dev)
3035{
Joerg Roedel657cbb62009-11-23 15:26:46 +01003036 struct iommu_dev_data *dev_data = dev->archdata.iommu;
Joerg Roedel684f2882008-12-08 12:07:44 +01003037 struct amd_iommu *iommu;
Joerg Roedel684f2882008-12-08 12:07:44 +01003038 u16 devid;
3039
Joerg Roedel98fc5a62009-11-24 17:19:23 +01003040 if (!check_device(dev))
Joerg Roedel684f2882008-12-08 12:07:44 +01003041 return;
3042
Joerg Roedel98fc5a62009-11-24 17:19:23 +01003043 devid = get_device_id(dev);
Joerg Roedel684f2882008-12-08 12:07:44 +01003044
Joerg Roedel657cbb62009-11-23 15:26:46 +01003045 if (dev_data->domain != NULL)
Joerg Roedel15898bb2009-11-24 15:39:42 +01003046 detach_device(dev);
Joerg Roedel684f2882008-12-08 12:07:44 +01003047
3048 iommu = amd_iommu_rlookup_table[devid];
3049 if (!iommu)
3050 return;
3051
Joerg Roedel684f2882008-12-08 12:07:44 +01003052 iommu_completion_wait(iommu);
3053}
3054
Joerg Roedel01106062008-12-02 19:34:11 +01003055static int amd_iommu_attach_device(struct iommu_domain *dom,
3056 struct device *dev)
3057{
Joerg Roedel3f4b87b2015-03-26 13:43:07 +01003058 struct protection_domain *domain = to_pdomain(dom);
Joerg Roedel657cbb62009-11-23 15:26:46 +01003059 struct iommu_dev_data *dev_data;
Joerg Roedel01106062008-12-02 19:34:11 +01003060 struct amd_iommu *iommu;
Joerg Roedel15898bb2009-11-24 15:39:42 +01003061 int ret;
Joerg Roedel01106062008-12-02 19:34:11 +01003062
Joerg Roedel98fc5a62009-11-24 17:19:23 +01003063 if (!check_device(dev))
Joerg Roedel01106062008-12-02 19:34:11 +01003064 return -EINVAL;
3065
Joerg Roedel657cbb62009-11-23 15:26:46 +01003066 dev_data = dev->archdata.iommu;
3067
Joerg Roedelf62dda62011-06-09 12:55:35 +02003068 iommu = amd_iommu_rlookup_table[dev_data->devid];
Joerg Roedel01106062008-12-02 19:34:11 +01003069 if (!iommu)
3070 return -EINVAL;
3071
Joerg Roedel657cbb62009-11-23 15:26:46 +01003072 if (dev_data->domain)
Joerg Roedel15898bb2009-11-24 15:39:42 +01003073 detach_device(dev);
Joerg Roedel01106062008-12-02 19:34:11 +01003074
Joerg Roedel15898bb2009-11-24 15:39:42 +01003075 ret = attach_device(dev, domain);
Joerg Roedel01106062008-12-02 19:34:11 +01003076
3077 iommu_completion_wait(iommu);
3078
Joerg Roedel15898bb2009-11-24 15:39:42 +01003079 return ret;
Joerg Roedel01106062008-12-02 19:34:11 +01003080}
3081
Joerg Roedel468e2362010-01-21 16:37:36 +01003082static int amd_iommu_map(struct iommu_domain *dom, unsigned long iova,
Ohad Ben-Cohen50090652011-11-10 11:32:25 +02003083 phys_addr_t paddr, size_t page_size, int iommu_prot)
Joerg Roedelc6229ca2008-12-02 19:48:43 +01003084{
Joerg Roedel3f4b87b2015-03-26 13:43:07 +01003085 struct protection_domain *domain = to_pdomain(dom);
Joerg Roedelc6229ca2008-12-02 19:48:43 +01003086 int prot = 0;
3087 int ret;
3088
Joerg Roedel132bd682011-11-17 14:18:46 +01003089 if (domain->mode == PAGE_MODE_NONE)
3090 return -EINVAL;
3091
Joerg Roedelc6229ca2008-12-02 19:48:43 +01003092 if (iommu_prot & IOMMU_READ)
3093 prot |= IOMMU_PROT_IR;
3094 if (iommu_prot & IOMMU_WRITE)
3095 prot |= IOMMU_PROT_IW;
3096
Joerg Roedel5d214fe2010-02-08 14:44:49 +01003097 mutex_lock(&domain->api_lock);
Joerg Roedel795e74f2010-05-11 17:40:57 +02003098 ret = iommu_map_page(domain, iova, paddr, prot, page_size);
Joerg Roedel5d214fe2010-02-08 14:44:49 +01003099 mutex_unlock(&domain->api_lock);
3100
Joerg Roedel795e74f2010-05-11 17:40:57 +02003101 return ret;
Joerg Roedelc6229ca2008-12-02 19:48:43 +01003102}
3103
Ohad Ben-Cohen50090652011-11-10 11:32:25 +02003104static size_t amd_iommu_unmap(struct iommu_domain *dom, unsigned long iova,
3105 size_t page_size)
Joerg Roedeleb74ff62008-12-02 19:59:10 +01003106{
Joerg Roedel3f4b87b2015-03-26 13:43:07 +01003107 struct protection_domain *domain = to_pdomain(dom);
Ohad Ben-Cohen50090652011-11-10 11:32:25 +02003108 size_t unmap_size;
Joerg Roedeleb74ff62008-12-02 19:59:10 +01003109
Joerg Roedel132bd682011-11-17 14:18:46 +01003110 if (domain->mode == PAGE_MODE_NONE)
3111 return -EINVAL;
3112
Joerg Roedel5d214fe2010-02-08 14:44:49 +01003113 mutex_lock(&domain->api_lock);
Joerg Roedel468e2362010-01-21 16:37:36 +01003114 unmap_size = iommu_unmap_page(domain, iova, page_size);
Joerg Roedel795e74f2010-05-11 17:40:57 +02003115 mutex_unlock(&domain->api_lock);
Joerg Roedeleb74ff62008-12-02 19:59:10 +01003116
Joerg Roedel17b124b2011-04-06 18:01:35 +02003117 domain_flush_tlb_pde(domain);
Joerg Roedel5d214fe2010-02-08 14:44:49 +01003118
Ohad Ben-Cohen50090652011-11-10 11:32:25 +02003119 return unmap_size;
Joerg Roedeleb74ff62008-12-02 19:59:10 +01003120}
3121
Joerg Roedel645c4c82008-12-02 20:05:50 +01003122static phys_addr_t amd_iommu_iova_to_phys(struct iommu_domain *dom,
Varun Sethibb5547ac2013-03-29 01:23:58 +05303123 dma_addr_t iova)
Joerg Roedel645c4c82008-12-02 20:05:50 +01003124{
Joerg Roedel3f4b87b2015-03-26 13:43:07 +01003125 struct protection_domain *domain = to_pdomain(dom);
Joerg Roedel3039ca12015-04-01 14:58:48 +02003126 unsigned long offset_mask, pte_pgsize;
Joerg Roedelf03152b2010-01-21 16:15:24 +01003127 u64 *pte, __pte;
Joerg Roedel645c4c82008-12-02 20:05:50 +01003128
Joerg Roedel132bd682011-11-17 14:18:46 +01003129 if (domain->mode == PAGE_MODE_NONE)
3130 return iova;
3131
Joerg Roedel3039ca12015-04-01 14:58:48 +02003132 pte = fetch_pte(domain, iova, &pte_pgsize);
Joerg Roedel645c4c82008-12-02 20:05:50 +01003133
Joerg Roedela6d41a42009-09-02 17:08:55 +02003134 if (!pte || !IOMMU_PTE_PRESENT(*pte))
Joerg Roedel645c4c82008-12-02 20:05:50 +01003135 return 0;
3136
Joerg Roedelb24b1b62015-04-01 14:58:51 +02003137 offset_mask = pte_pgsize - 1;
3138 __pte = *pte & PM_ADDR_MASK;
Joerg Roedelf03152b2010-01-21 16:15:24 +01003139
Joerg Roedelb24b1b62015-04-01 14:58:51 +02003140 return (__pte & ~offset_mask) | (iova & offset_mask);
Joerg Roedel645c4c82008-12-02 20:05:50 +01003141}
3142
Joerg Roedelab636482014-09-05 10:48:21 +02003143static bool amd_iommu_capable(enum iommu_cap cap)
Sheng Yangdbb9fd82009-03-18 15:33:06 +08003144{
Joerg Roedel80a506b2010-07-27 17:14:24 +02003145 switch (cap) {
3146 case IOMMU_CAP_CACHE_COHERENCY:
Joerg Roedelab636482014-09-05 10:48:21 +02003147 return true;
Joerg Roedelbdddadc2012-07-02 18:38:13 +02003148 case IOMMU_CAP_INTR_REMAP:
Joerg Roedelab636482014-09-05 10:48:21 +02003149 return (irq_remapping_enabled == 1);
Will Deaconcfdeec22014-10-27 11:24:48 +00003150 case IOMMU_CAP_NOEXEC:
3151 return false;
Joerg Roedel80a506b2010-07-27 17:14:24 +02003152 }
3153
Joerg Roedelab636482014-09-05 10:48:21 +02003154 return false;
Sheng Yangdbb9fd82009-03-18 15:33:06 +08003155}
3156
Joerg Roedel35cf2482015-05-28 18:41:37 +02003157static void amd_iommu_get_dm_regions(struct device *dev,
3158 struct list_head *head)
3159{
3160 struct unity_map_entry *entry;
3161 u16 devid;
3162
3163 devid = get_device_id(dev);
3164
3165 list_for_each_entry(entry, &amd_iommu_unity_map, list) {
3166 struct iommu_dm_region *region;
3167
3168 if (devid < entry->devid_start || devid > entry->devid_end)
3169 continue;
3170
3171 region = kzalloc(sizeof(*region), GFP_KERNEL);
3172 if (!region) {
3173 pr_err("Out of memory allocating dm-regions for %s\n",
3174 dev_name(dev));
3175 return;
3176 }
3177
3178 region->start = entry->address_start;
3179 region->length = entry->address_end - entry->address_start;
3180 if (entry->prot & IOMMU_PROT_IR)
3181 region->prot |= IOMMU_READ;
3182 if (entry->prot & IOMMU_PROT_IW)
3183 region->prot |= IOMMU_WRITE;
3184
3185 list_add_tail(&region->list, head);
3186 }
3187}
3188
3189static void amd_iommu_put_dm_regions(struct device *dev,
3190 struct list_head *head)
3191{
3192 struct iommu_dm_region *entry, *next;
3193
3194 list_for_each_entry_safe(entry, next, head, list)
3195 kfree(entry);
3196}
3197
Thierry Redingb22f6432014-06-27 09:03:12 +02003198static const struct iommu_ops amd_iommu_ops = {
Joerg Roedelab636482014-09-05 10:48:21 +02003199 .capable = amd_iommu_capable,
Joerg Roedel3f4b87b2015-03-26 13:43:07 +01003200 .domain_alloc = amd_iommu_domain_alloc,
3201 .domain_free = amd_iommu_domain_free,
Joerg Roedel26961ef2008-12-03 17:00:17 +01003202 .attach_dev = amd_iommu_attach_device,
3203 .detach_dev = amd_iommu_detach_device,
Joerg Roedel468e2362010-01-21 16:37:36 +01003204 .map = amd_iommu_map,
3205 .unmap = amd_iommu_unmap,
Olav Haugan315786e2014-10-25 09:55:16 -07003206 .map_sg = default_iommu_map_sg,
Joerg Roedel26961ef2008-12-03 17:00:17 +01003207 .iova_to_phys = amd_iommu_iova_to_phys,
Joerg Roedelaafd8ba2015-05-28 18:41:39 +02003208 .add_device = amd_iommu_add_device,
3209 .remove_device = amd_iommu_remove_device,
Joerg Roedel35cf2482015-05-28 18:41:37 +02003210 .get_dm_regions = amd_iommu_get_dm_regions,
3211 .put_dm_regions = amd_iommu_put_dm_regions,
Ohad Ben-Cohenaa3de9c2011-11-10 11:32:29 +02003212 .pgsize_bitmap = AMD_IOMMU_PGSIZES,
Joerg Roedel26961ef2008-12-03 17:00:17 +01003213};
3214
Joerg Roedel0feae532009-08-26 15:26:30 +02003215/*****************************************************************************
3216 *
3217 * The next functions do a basic initialization of IOMMU for pass through
3218 * mode
3219 *
3220 * In passthrough mode the IOMMU is initialized and enabled but not used for
3221 * DMA-API translation.
3222 *
3223 *****************************************************************************/
3224
3225int __init amd_iommu_init_passthrough(void)
3226{
Joerg Roedel5abcdba2011-12-01 15:49:45 +01003227 struct iommu_dev_data *dev_data;
Joerg Roedel0feae532009-08-26 15:26:30 +02003228 struct pci_dev *dev = NULL;
Joerg Roedel5abcdba2011-12-01 15:49:45 +01003229 int ret;
Joerg Roedel0feae532009-08-26 15:26:30 +02003230
Joerg Roedel5abcdba2011-12-01 15:49:45 +01003231 ret = alloc_passthrough_domain();
3232 if (ret)
3233 return ret;
Joerg Roedel0feae532009-08-26 15:26:30 +02003234
Kulikov Vasiliy6c54aab2010-07-03 12:03:51 -04003235 for_each_pci_dev(dev) {
Joerg Roedel98fc5a62009-11-24 17:19:23 +01003236 if (!check_device(&dev->dev))
Joerg Roedel0feae532009-08-26 15:26:30 +02003237 continue;
3238
Joerg Roedel5abcdba2011-12-01 15:49:45 +01003239 dev_data = get_dev_data(&dev->dev);
3240 dev_data->passthrough = true;
3241
Joerg Roedel15898bb2009-11-24 15:39:42 +01003242 attach_device(&dev->dev, pt_domain);
Joerg Roedel0feae532009-08-26 15:26:30 +02003243 }
3244
Joerg Roedel2655d7a2011-12-22 12:35:38 +01003245 amd_iommu_stats_init();
3246
Joerg Roedel0feae532009-08-26 15:26:30 +02003247 pr_info("AMD-Vi: Initialized for Passthrough Mode\n");
3248
3249 return 0;
3250}
Joerg Roedel72e1dcc2011-11-10 19:13:51 +01003251
3252/* IOMMUv2 specific functions */
3253int amd_iommu_register_ppr_notifier(struct notifier_block *nb)
3254{
3255 return atomic_notifier_chain_register(&ppr_notifier, nb);
3256}
3257EXPORT_SYMBOL(amd_iommu_register_ppr_notifier);
3258
3259int amd_iommu_unregister_ppr_notifier(struct notifier_block *nb)
3260{
3261 return atomic_notifier_chain_unregister(&ppr_notifier, nb);
3262}
3263EXPORT_SYMBOL(amd_iommu_unregister_ppr_notifier);
Joerg Roedel132bd682011-11-17 14:18:46 +01003264
3265void amd_iommu_domain_direct_map(struct iommu_domain *dom)
3266{
Joerg Roedel3f4b87b2015-03-26 13:43:07 +01003267 struct protection_domain *domain = to_pdomain(dom);
Joerg Roedel132bd682011-11-17 14:18:46 +01003268 unsigned long flags;
3269
3270 spin_lock_irqsave(&domain->lock, flags);
3271
3272 /* Update data structure */
3273 domain->mode = PAGE_MODE_NONE;
3274 domain->updated = true;
3275
3276 /* Make changes visible to IOMMUs */
3277 update_domain(domain);
3278
3279 /* Page-table is not visible to IOMMU anymore, so free it */
3280 free_pagetable(domain);
3281
3282 spin_unlock_irqrestore(&domain->lock, flags);
3283}
3284EXPORT_SYMBOL(amd_iommu_domain_direct_map);
Joerg Roedel52815b72011-11-17 17:24:28 +01003285
3286int amd_iommu_domain_enable_v2(struct iommu_domain *dom, int pasids)
3287{
Joerg Roedel3f4b87b2015-03-26 13:43:07 +01003288 struct protection_domain *domain = to_pdomain(dom);
Joerg Roedel52815b72011-11-17 17:24:28 +01003289 unsigned long flags;
3290 int levels, ret;
3291
3292 if (pasids <= 0 || pasids > (PASID_MASK + 1))
3293 return -EINVAL;
3294
3295 /* Number of GCR3 table levels required */
3296 for (levels = 0; (pasids - 1) & ~0x1ff; pasids >>= 9)
3297 levels += 1;
3298
3299 if (levels > amd_iommu_max_glx_val)
3300 return -EINVAL;
3301
3302 spin_lock_irqsave(&domain->lock, flags);
3303
3304 /*
3305 * Save us all sanity checks whether devices already in the
3306 * domain support IOMMUv2. Just force that the domain has no
3307 * devices attached when it is switched into IOMMUv2 mode.
3308 */
3309 ret = -EBUSY;
3310 if (domain->dev_cnt > 0 || domain->flags & PD_IOMMUV2_MASK)
3311 goto out;
3312
3313 ret = -ENOMEM;
3314 domain->gcr3_tbl = (void *)get_zeroed_page(GFP_ATOMIC);
3315 if (domain->gcr3_tbl == NULL)
3316 goto out;
3317
3318 domain->glx = levels;
3319 domain->flags |= PD_IOMMUV2_MASK;
3320 domain->updated = true;
3321
3322 update_domain(domain);
3323
3324 ret = 0;
3325
3326out:
3327 spin_unlock_irqrestore(&domain->lock, flags);
3328
3329 return ret;
3330}
3331EXPORT_SYMBOL(amd_iommu_domain_enable_v2);
Joerg Roedel22e266c2011-11-21 15:59:08 +01003332
3333static int __flush_pasid(struct protection_domain *domain, int pasid,
3334 u64 address, bool size)
3335{
3336 struct iommu_dev_data *dev_data;
3337 struct iommu_cmd cmd;
3338 int i, ret;
3339
3340 if (!(domain->flags & PD_IOMMUV2_MASK))
3341 return -EINVAL;
3342
3343 build_inv_iommu_pasid(&cmd, domain->id, pasid, address, size);
3344
3345 /*
3346 * IOMMU TLB needs to be flushed before Device TLB to
3347 * prevent device TLB refill from IOMMU TLB
3348 */
3349 for (i = 0; i < amd_iommus_present; ++i) {
3350 if (domain->dev_iommu[i] == 0)
3351 continue;
3352
3353 ret = iommu_queue_command(amd_iommus[i], &cmd);
3354 if (ret != 0)
3355 goto out;
3356 }
3357
3358 /* Wait until IOMMU TLB flushes are complete */
3359 domain_flush_complete(domain);
3360
3361 /* Now flush device TLBs */
3362 list_for_each_entry(dev_data, &domain->dev_list, list) {
3363 struct amd_iommu *iommu;
3364 int qdep;
3365
3366 BUG_ON(!dev_data->ats.enabled);
3367
3368 qdep = dev_data->ats.qdep;
3369 iommu = amd_iommu_rlookup_table[dev_data->devid];
3370
3371 build_inv_iotlb_pasid(&cmd, dev_data->devid, pasid,
3372 qdep, address, size);
3373
3374 ret = iommu_queue_command(iommu, &cmd);
3375 if (ret != 0)
3376 goto out;
3377 }
3378
3379 /* Wait until all device TLBs are flushed */
3380 domain_flush_complete(domain);
3381
3382 ret = 0;
3383
3384out:
3385
3386 return ret;
3387}
3388
3389static int __amd_iommu_flush_page(struct protection_domain *domain, int pasid,
3390 u64 address)
3391{
Joerg Roedel399be2f2011-12-01 16:53:47 +01003392 INC_STATS_COUNTER(invalidate_iotlb);
3393
Joerg Roedel22e266c2011-11-21 15:59:08 +01003394 return __flush_pasid(domain, pasid, address, false);
3395}
3396
3397int amd_iommu_flush_page(struct iommu_domain *dom, int pasid,
3398 u64 address)
3399{
Joerg Roedel3f4b87b2015-03-26 13:43:07 +01003400 struct protection_domain *domain = to_pdomain(dom);
Joerg Roedel22e266c2011-11-21 15:59:08 +01003401 unsigned long flags;
3402 int ret;
3403
3404 spin_lock_irqsave(&domain->lock, flags);
3405 ret = __amd_iommu_flush_page(domain, pasid, address);
3406 spin_unlock_irqrestore(&domain->lock, flags);
3407
3408 return ret;
3409}
3410EXPORT_SYMBOL(amd_iommu_flush_page);
3411
3412static int __amd_iommu_flush_tlb(struct protection_domain *domain, int pasid)
3413{
Joerg Roedel399be2f2011-12-01 16:53:47 +01003414 INC_STATS_COUNTER(invalidate_iotlb_all);
3415
Joerg Roedel22e266c2011-11-21 15:59:08 +01003416 return __flush_pasid(domain, pasid, CMD_INV_IOMMU_ALL_PAGES_ADDRESS,
3417 true);
3418}
3419
3420int amd_iommu_flush_tlb(struct iommu_domain *dom, int pasid)
3421{
Joerg Roedel3f4b87b2015-03-26 13:43:07 +01003422 struct protection_domain *domain = to_pdomain(dom);
Joerg Roedel22e266c2011-11-21 15:59:08 +01003423 unsigned long flags;
3424 int ret;
3425
3426 spin_lock_irqsave(&domain->lock, flags);
3427 ret = __amd_iommu_flush_tlb(domain, pasid);
3428 spin_unlock_irqrestore(&domain->lock, flags);
3429
3430 return ret;
3431}
3432EXPORT_SYMBOL(amd_iommu_flush_tlb);
3433
Joerg Roedelb16137b2011-11-21 16:50:23 +01003434static u64 *__get_gcr3_pte(u64 *root, int level, int pasid, bool alloc)
3435{
3436 int index;
3437 u64 *pte;
3438
3439 while (true) {
3440
3441 index = (pasid >> (9 * level)) & 0x1ff;
3442 pte = &root[index];
3443
3444 if (level == 0)
3445 break;
3446
3447 if (!(*pte & GCR3_VALID)) {
3448 if (!alloc)
3449 return NULL;
3450
3451 root = (void *)get_zeroed_page(GFP_ATOMIC);
3452 if (root == NULL)
3453 return NULL;
3454
3455 *pte = __pa(root) | GCR3_VALID;
3456 }
3457
3458 root = __va(*pte & PAGE_MASK);
3459
3460 level -= 1;
3461 }
3462
3463 return pte;
3464}
3465
3466static int __set_gcr3(struct protection_domain *domain, int pasid,
3467 unsigned long cr3)
3468{
3469 u64 *pte;
3470
3471 if (domain->mode != PAGE_MODE_NONE)
3472 return -EINVAL;
3473
3474 pte = __get_gcr3_pte(domain->gcr3_tbl, domain->glx, pasid, true);
3475 if (pte == NULL)
3476 return -ENOMEM;
3477
3478 *pte = (cr3 & PAGE_MASK) | GCR3_VALID;
3479
3480 return __amd_iommu_flush_tlb(domain, pasid);
3481}
3482
3483static int __clear_gcr3(struct protection_domain *domain, int pasid)
3484{
3485 u64 *pte;
3486
3487 if (domain->mode != PAGE_MODE_NONE)
3488 return -EINVAL;
3489
3490 pte = __get_gcr3_pte(domain->gcr3_tbl, domain->glx, pasid, false);
3491 if (pte == NULL)
3492 return 0;
3493
3494 *pte = 0;
3495
3496 return __amd_iommu_flush_tlb(domain, pasid);
3497}
3498
3499int amd_iommu_domain_set_gcr3(struct iommu_domain *dom, int pasid,
3500 unsigned long cr3)
3501{
Joerg Roedel3f4b87b2015-03-26 13:43:07 +01003502 struct protection_domain *domain = to_pdomain(dom);
Joerg Roedelb16137b2011-11-21 16:50:23 +01003503 unsigned long flags;
3504 int ret;
3505
3506 spin_lock_irqsave(&domain->lock, flags);
3507 ret = __set_gcr3(domain, pasid, cr3);
3508 spin_unlock_irqrestore(&domain->lock, flags);
3509
3510 return ret;
3511}
3512EXPORT_SYMBOL(amd_iommu_domain_set_gcr3);
3513
3514int amd_iommu_domain_clear_gcr3(struct iommu_domain *dom, int pasid)
3515{
Joerg Roedel3f4b87b2015-03-26 13:43:07 +01003516 struct protection_domain *domain = to_pdomain(dom);
Joerg Roedelb16137b2011-11-21 16:50:23 +01003517 unsigned long flags;
3518 int ret;
3519
3520 spin_lock_irqsave(&domain->lock, flags);
3521 ret = __clear_gcr3(domain, pasid);
3522 spin_unlock_irqrestore(&domain->lock, flags);
3523
3524 return ret;
3525}
3526EXPORT_SYMBOL(amd_iommu_domain_clear_gcr3);
Joerg Roedelc99afa22011-11-21 18:19:25 +01003527
3528int amd_iommu_complete_ppr(struct pci_dev *pdev, int pasid,
3529 int status, int tag)
3530{
3531 struct iommu_dev_data *dev_data;
3532 struct amd_iommu *iommu;
3533 struct iommu_cmd cmd;
3534
Joerg Roedel399be2f2011-12-01 16:53:47 +01003535 INC_STATS_COUNTER(complete_ppr);
3536
Joerg Roedelc99afa22011-11-21 18:19:25 +01003537 dev_data = get_dev_data(&pdev->dev);
3538 iommu = amd_iommu_rlookup_table[dev_data->devid];
3539
3540 build_complete_ppr(&cmd, dev_data->devid, pasid, status,
3541 tag, dev_data->pri_tlp);
3542
3543 return iommu_queue_command(iommu, &cmd);
3544}
3545EXPORT_SYMBOL(amd_iommu_complete_ppr);
Joerg Roedelf3572db2011-11-23 12:36:25 +01003546
3547struct iommu_domain *amd_iommu_get_v2_domain(struct pci_dev *pdev)
3548{
Joerg Roedel3f4b87b2015-03-26 13:43:07 +01003549 struct protection_domain *pdomain;
Joerg Roedelf3572db2011-11-23 12:36:25 +01003550
Joerg Roedel3f4b87b2015-03-26 13:43:07 +01003551 pdomain = get_domain(&pdev->dev);
3552 if (IS_ERR(pdomain))
Joerg Roedelf3572db2011-11-23 12:36:25 +01003553 return NULL;
3554
3555 /* Only return IOMMUv2 domains */
Joerg Roedel3f4b87b2015-03-26 13:43:07 +01003556 if (!(pdomain->flags & PD_IOMMUV2_MASK))
Joerg Roedelf3572db2011-11-23 12:36:25 +01003557 return NULL;
3558
Joerg Roedel3f4b87b2015-03-26 13:43:07 +01003559 return &pdomain->domain;
Joerg Roedelf3572db2011-11-23 12:36:25 +01003560}
3561EXPORT_SYMBOL(amd_iommu_get_v2_domain);
Joerg Roedel6a113dd2011-12-01 12:04:58 +01003562
3563void amd_iommu_enable_device_erratum(struct pci_dev *pdev, u32 erratum)
3564{
3565 struct iommu_dev_data *dev_data;
3566
3567 if (!amd_iommu_v2_supported())
3568 return;
3569
3570 dev_data = get_dev_data(&pdev->dev);
3571 dev_data->errata |= (1 << erratum);
3572}
3573EXPORT_SYMBOL(amd_iommu_enable_device_erratum);
Joerg Roedel52efdb82011-12-07 12:01:36 +01003574
3575int amd_iommu_device_info(struct pci_dev *pdev,
3576 struct amd_iommu_device_info *info)
3577{
3578 int max_pasids;
3579 int pos;
3580
3581 if (pdev == NULL || info == NULL)
3582 return -EINVAL;
3583
3584 if (!amd_iommu_v2_supported())
3585 return -EINVAL;
3586
3587 memset(info, 0, sizeof(*info));
3588
3589 pos = pci_find_ext_capability(pdev, PCI_EXT_CAP_ID_ATS);
3590 if (pos)
3591 info->flags |= AMD_IOMMU_DEVICE_FLAG_ATS_SUP;
3592
3593 pos = pci_find_ext_capability(pdev, PCI_EXT_CAP_ID_PRI);
3594 if (pos)
3595 info->flags |= AMD_IOMMU_DEVICE_FLAG_PRI_SUP;
3596
3597 pos = pci_find_ext_capability(pdev, PCI_EXT_CAP_ID_PASID);
3598 if (pos) {
3599 int features;
3600
3601 max_pasids = 1 << (9 * (amd_iommu_max_glx_val + 1));
3602 max_pasids = min(max_pasids, (1 << 20));
3603
3604 info->flags |= AMD_IOMMU_DEVICE_FLAG_PASID_SUP;
3605 info->max_pasids = min(pci_max_pasids(pdev), max_pasids);
3606
3607 features = pci_pasid_features(pdev);
3608 if (features & PCI_PASID_CAP_EXEC)
3609 info->flags |= AMD_IOMMU_DEVICE_FLAG_EXEC_SUP;
3610 if (features & PCI_PASID_CAP_PRIV)
3611 info->flags |= AMD_IOMMU_DEVICE_FLAG_PRIV_SUP;
3612 }
3613
3614 return 0;
3615}
3616EXPORT_SYMBOL(amd_iommu_device_info);
Joerg Roedel2b324502012-06-21 16:29:10 +02003617
3618#ifdef CONFIG_IRQ_REMAP
3619
3620/*****************************************************************************
3621 *
3622 * Interrupt Remapping Implementation
3623 *
3624 *****************************************************************************/
3625
3626union irte {
3627 u32 val;
3628 struct {
3629 u32 valid : 1,
3630 no_fault : 1,
3631 int_type : 3,
3632 rq_eoi : 1,
3633 dm : 1,
3634 rsvd_1 : 1,
3635 destination : 8,
3636 vector : 8,
3637 rsvd_2 : 8;
3638 } fields;
3639};
3640
Jiang Liu9c724962015-04-14 10:29:52 +08003641struct irq_2_irte {
3642 u16 devid; /* Device ID for IRTE table */
3643 u16 index; /* Index into IRTE table*/
3644};
3645
Jiang Liu7c71d302015-04-13 14:11:33 +08003646struct amd_ir_data {
3647 struct irq_2_irte irq_2_irte;
3648 union irte irte_entry;
3649 union {
3650 struct msi_msg msi_entry;
3651 };
3652};
3653
3654static struct irq_chip amd_ir_chip;
3655
Joerg Roedel2b324502012-06-21 16:29:10 +02003656#define DTE_IRQ_PHYS_ADDR_MASK (((1ULL << 45)-1) << 6)
3657#define DTE_IRQ_REMAP_INTCTL (2ULL << 60)
3658#define DTE_IRQ_TABLE_LEN (8ULL << 1)
3659#define DTE_IRQ_REMAP_ENABLE 1ULL
3660
3661static void set_dte_irq_entry(u16 devid, struct irq_remap_table *table)
3662{
3663 u64 dte;
3664
3665 dte = amd_iommu_dev_table[devid].data[2];
3666 dte &= ~DTE_IRQ_PHYS_ADDR_MASK;
3667 dte |= virt_to_phys(table->table);
3668 dte |= DTE_IRQ_REMAP_INTCTL;
3669 dte |= DTE_IRQ_TABLE_LEN;
3670 dte |= DTE_IRQ_REMAP_ENABLE;
3671
3672 amd_iommu_dev_table[devid].data[2] = dte;
3673}
3674
3675#define IRTE_ALLOCATED (~1U)
3676
3677static struct irq_remap_table *get_irq_table(u16 devid, bool ioapic)
3678{
3679 struct irq_remap_table *table = NULL;
3680 struct amd_iommu *iommu;
3681 unsigned long flags;
3682 u16 alias;
3683
3684 write_lock_irqsave(&amd_iommu_devtable_lock, flags);
3685
3686 iommu = amd_iommu_rlookup_table[devid];
3687 if (!iommu)
3688 goto out_unlock;
3689
3690 table = irq_lookup_table[devid];
3691 if (table)
3692 goto out;
3693
3694 alias = amd_iommu_alias_table[devid];
3695 table = irq_lookup_table[alias];
3696 if (table) {
3697 irq_lookup_table[devid] = table;
3698 set_dte_irq_entry(devid, table);
3699 iommu_flush_dte(iommu, devid);
3700 goto out;
3701 }
3702
3703 /* Nothing there yet, allocate new irq remapping table */
3704 table = kzalloc(sizeof(*table), GFP_ATOMIC);
3705 if (!table)
3706 goto out;
3707
Joerg Roedel197887f2013-04-09 21:14:08 +02003708 /* Initialize table spin-lock */
3709 spin_lock_init(&table->lock);
3710
Joerg Roedel2b324502012-06-21 16:29:10 +02003711 if (ioapic)
3712 /* Keep the first 32 indexes free for IOAPIC interrupts */
3713 table->min_index = 32;
3714
3715 table->table = kmem_cache_alloc(amd_iommu_irq_cache, GFP_ATOMIC);
3716 if (!table->table) {
3717 kfree(table);
Dan Carpenter821f0f62012-10-02 11:34:40 +03003718 table = NULL;
Joerg Roedel2b324502012-06-21 16:29:10 +02003719 goto out;
3720 }
3721
3722 memset(table->table, 0, MAX_IRQS_PER_TABLE * sizeof(u32));
3723
3724 if (ioapic) {
3725 int i;
3726
3727 for (i = 0; i < 32; ++i)
3728 table->table[i] = IRTE_ALLOCATED;
3729 }
3730
3731 irq_lookup_table[devid] = table;
3732 set_dte_irq_entry(devid, table);
3733 iommu_flush_dte(iommu, devid);
3734 if (devid != alias) {
3735 irq_lookup_table[alias] = table;
Alex Williamsone028a9e2014-04-22 10:08:40 -06003736 set_dte_irq_entry(alias, table);
Joerg Roedel2b324502012-06-21 16:29:10 +02003737 iommu_flush_dte(iommu, alias);
3738 }
3739
3740out:
3741 iommu_completion_wait(iommu);
3742
3743out_unlock:
3744 write_unlock_irqrestore(&amd_iommu_devtable_lock, flags);
3745
3746 return table;
3747}
3748
Jiang Liu3c3d4f92015-04-13 14:11:38 +08003749static int alloc_irq_index(u16 devid, int count)
Joerg Roedel2b324502012-06-21 16:29:10 +02003750{
3751 struct irq_remap_table *table;
3752 unsigned long flags;
3753 int index, c;
3754
3755 table = get_irq_table(devid, false);
3756 if (!table)
3757 return -ENODEV;
3758
3759 spin_lock_irqsave(&table->lock, flags);
3760
3761 /* Scan table for free entries */
3762 for (c = 0, index = table->min_index;
3763 index < MAX_IRQS_PER_TABLE;
3764 ++index) {
3765 if (table->table[index] == 0)
3766 c += 1;
3767 else
3768 c = 0;
3769
3770 if (c == count) {
Joerg Roedel2b324502012-06-21 16:29:10 +02003771 for (; c != 0; --c)
3772 table->table[index - c + 1] = IRTE_ALLOCATED;
3773
3774 index -= count - 1;
Joerg Roedel2b324502012-06-21 16:29:10 +02003775 goto out;
3776 }
3777 }
3778
3779 index = -ENOSPC;
3780
3781out:
3782 spin_unlock_irqrestore(&table->lock, flags);
3783
3784 return index;
3785}
3786
Joerg Roedel2b324502012-06-21 16:29:10 +02003787static int modify_irte(u16 devid, int index, union irte irte)
3788{
3789 struct irq_remap_table *table;
3790 struct amd_iommu *iommu;
3791 unsigned long flags;
3792
3793 iommu = amd_iommu_rlookup_table[devid];
3794 if (iommu == NULL)
3795 return -EINVAL;
3796
3797 table = get_irq_table(devid, false);
3798 if (!table)
3799 return -ENOMEM;
3800
3801 spin_lock_irqsave(&table->lock, flags);
3802 table->table[index] = irte.val;
3803 spin_unlock_irqrestore(&table->lock, flags);
3804
3805 iommu_flush_irt(iommu, devid);
3806 iommu_completion_wait(iommu);
3807
3808 return 0;
3809}
3810
3811static void free_irte(u16 devid, int index)
3812{
3813 struct irq_remap_table *table;
3814 struct amd_iommu *iommu;
3815 unsigned long flags;
3816
3817 iommu = amd_iommu_rlookup_table[devid];
3818 if (iommu == NULL)
3819 return;
3820
3821 table = get_irq_table(devid, false);
3822 if (!table)
3823 return;
3824
3825 spin_lock_irqsave(&table->lock, flags);
3826 table->table[index] = 0;
3827 spin_unlock_irqrestore(&table->lock, flags);
3828
3829 iommu_flush_irt(iommu, devid);
3830 iommu_completion_wait(iommu);
3831}
3832
Jiang Liu7c71d302015-04-13 14:11:33 +08003833static int get_devid(struct irq_alloc_info *info)
Joerg Roedel5527de72012-06-26 11:17:32 +02003834{
Jiang Liu7c71d302015-04-13 14:11:33 +08003835 int devid = -1;
Joerg Roedel5527de72012-06-26 11:17:32 +02003836
Jiang Liu7c71d302015-04-13 14:11:33 +08003837 switch (info->type) {
3838 case X86_IRQ_ALLOC_TYPE_IOAPIC:
3839 devid = get_ioapic_devid(info->ioapic_id);
3840 break;
3841 case X86_IRQ_ALLOC_TYPE_HPET:
3842 devid = get_hpet_devid(info->hpet_id);
3843 break;
3844 case X86_IRQ_ALLOC_TYPE_MSI:
3845 case X86_IRQ_ALLOC_TYPE_MSIX:
3846 devid = get_device_id(&info->msi_dev->dev);
3847 break;
3848 default:
3849 BUG_ON(1);
3850 break;
Joerg Roedel5527de72012-06-26 11:17:32 +02003851 }
3852
Jiang Liu7c71d302015-04-13 14:11:33 +08003853 return devid;
Joerg Roedel5527de72012-06-26 11:17:32 +02003854}
3855
Jiang Liu7c71d302015-04-13 14:11:33 +08003856static struct irq_domain *get_ir_irq_domain(struct irq_alloc_info *info)
Joerg Roedel5527de72012-06-26 11:17:32 +02003857{
Jiang Liu7c71d302015-04-13 14:11:33 +08003858 struct amd_iommu *iommu;
3859 int devid;
Joerg Roedel5527de72012-06-26 11:17:32 +02003860
Jiang Liu7c71d302015-04-13 14:11:33 +08003861 if (!info)
3862 return NULL;
Joerg Roedel5527de72012-06-26 11:17:32 +02003863
Jiang Liu7c71d302015-04-13 14:11:33 +08003864 devid = get_devid(info);
3865 if (devid >= 0) {
3866 iommu = amd_iommu_rlookup_table[devid];
3867 if (iommu)
3868 return iommu->ir_domain;
3869 }
Joerg Roedel5527de72012-06-26 11:17:32 +02003870
Jiang Liu7c71d302015-04-13 14:11:33 +08003871 return NULL;
Joerg Roedel5527de72012-06-26 11:17:32 +02003872}
3873
Jiang Liu7c71d302015-04-13 14:11:33 +08003874static struct irq_domain *get_irq_domain(struct irq_alloc_info *info)
Joerg Roedel0b4d48c2012-06-26 14:54:17 +02003875{
Jiang Liu7c71d302015-04-13 14:11:33 +08003876 struct amd_iommu *iommu;
3877 int devid;
Joerg Roedel0b4d48c2012-06-26 14:54:17 +02003878
Jiang Liu7c71d302015-04-13 14:11:33 +08003879 if (!info)
3880 return NULL;
Joerg Roedel0b4d48c2012-06-26 14:54:17 +02003881
Jiang Liu7c71d302015-04-13 14:11:33 +08003882 switch (info->type) {
3883 case X86_IRQ_ALLOC_TYPE_MSI:
3884 case X86_IRQ_ALLOC_TYPE_MSIX:
3885 devid = get_device_id(&info->msi_dev->dev);
3886 if (devid >= 0) {
3887 iommu = amd_iommu_rlookup_table[devid];
3888 if (iommu)
3889 return iommu->msi_domain;
3890 }
3891 break;
3892 default:
3893 break;
3894 }
Joerg Roedel0b4d48c2012-06-26 14:54:17 +02003895
Jiang Liu7c71d302015-04-13 14:11:33 +08003896 return NULL;
Joerg Roedeld9761952012-06-26 16:00:08 +02003897}
3898
Joerg Roedel6b474b82012-06-26 16:46:04 +02003899struct irq_remap_ops amd_iommu_irq_ops = {
Joerg Roedel6b474b82012-06-26 16:46:04 +02003900 .prepare = amd_iommu_prepare,
3901 .enable = amd_iommu_enable,
3902 .disable = amd_iommu_disable,
3903 .reenable = amd_iommu_reenable,
3904 .enable_faulting = amd_iommu_enable_faulting,
Jiang Liu7c71d302015-04-13 14:11:33 +08003905 .get_ir_irq_domain = get_ir_irq_domain,
3906 .get_irq_domain = get_irq_domain,
Joerg Roedel6b474b82012-06-26 16:46:04 +02003907};
Jiang Liu7c71d302015-04-13 14:11:33 +08003908
3909static void irq_remapping_prepare_irte(struct amd_ir_data *data,
3910 struct irq_cfg *irq_cfg,
3911 struct irq_alloc_info *info,
3912 int devid, int index, int sub_handle)
3913{
3914 struct irq_2_irte *irte_info = &data->irq_2_irte;
3915 struct msi_msg *msg = &data->msi_entry;
3916 union irte *irte = &data->irte_entry;
3917 struct IO_APIC_route_entry *entry;
3918
Jiang Liu7c71d302015-04-13 14:11:33 +08003919 data->irq_2_irte.devid = devid;
3920 data->irq_2_irte.index = index + sub_handle;
3921
3922 /* Setup IRTE for IOMMU */
3923 irte->val = 0;
3924 irte->fields.vector = irq_cfg->vector;
3925 irte->fields.int_type = apic->irq_delivery_mode;
3926 irte->fields.destination = irq_cfg->dest_apicid;
3927 irte->fields.dm = apic->irq_dest_mode;
3928 irte->fields.valid = 1;
3929
3930 switch (info->type) {
3931 case X86_IRQ_ALLOC_TYPE_IOAPIC:
3932 /* Setup IOAPIC entry */
3933 entry = info->ioapic_entry;
3934 info->ioapic_entry = NULL;
3935 memset(entry, 0, sizeof(*entry));
3936 entry->vector = index;
3937 entry->mask = 0;
3938 entry->trigger = info->ioapic_trigger;
3939 entry->polarity = info->ioapic_polarity;
3940 /* Mask level triggered irqs. */
3941 if (info->ioapic_trigger)
3942 entry->mask = 1;
3943 break;
3944
3945 case X86_IRQ_ALLOC_TYPE_HPET:
3946 case X86_IRQ_ALLOC_TYPE_MSI:
3947 case X86_IRQ_ALLOC_TYPE_MSIX:
3948 msg->address_hi = MSI_ADDR_BASE_HI;
3949 msg->address_lo = MSI_ADDR_BASE_LO;
3950 msg->data = irte_info->index;
3951 break;
3952
3953 default:
3954 BUG_ON(1);
3955 break;
3956 }
3957}
3958
3959static int irq_remapping_alloc(struct irq_domain *domain, unsigned int virq,
3960 unsigned int nr_irqs, void *arg)
3961{
3962 struct irq_alloc_info *info = arg;
3963 struct irq_data *irq_data;
3964 struct amd_ir_data *data;
3965 struct irq_cfg *cfg;
3966 int i, ret, devid;
3967 int index = -1;
3968
3969 if (!info)
3970 return -EINVAL;
3971 if (nr_irqs > 1 && info->type != X86_IRQ_ALLOC_TYPE_MSI &&
3972 info->type != X86_IRQ_ALLOC_TYPE_MSIX)
3973 return -EINVAL;
3974
3975 /*
3976 * With IRQ remapping enabled, don't need contiguous CPU vectors
3977 * to support multiple MSI interrupts.
3978 */
3979 if (info->type == X86_IRQ_ALLOC_TYPE_MSI)
3980 info->flags &= ~X86_IRQ_ALLOC_CONTIGUOUS_VECTORS;
3981
3982 devid = get_devid(info);
3983 if (devid < 0)
3984 return -EINVAL;
3985
3986 ret = irq_domain_alloc_irqs_parent(domain, virq, nr_irqs, arg);
3987 if (ret < 0)
3988 return ret;
3989
3990 ret = -ENOMEM;
3991 data = kzalloc(sizeof(*data), GFP_KERNEL);
3992 if (!data)
3993 goto out_free_parent;
3994
3995 if (info->type == X86_IRQ_ALLOC_TYPE_IOAPIC) {
3996 if (get_irq_table(devid, true))
3997 index = info->ioapic_pin;
3998 else
3999 ret = -ENOMEM;
4000 } else {
Jiang Liu3c3d4f92015-04-13 14:11:38 +08004001 index = alloc_irq_index(devid, nr_irqs);
Jiang Liu7c71d302015-04-13 14:11:33 +08004002 }
4003 if (index < 0) {
4004 pr_warn("Failed to allocate IRTE\n");
4005 kfree(data);
4006 goto out_free_parent;
4007 }
4008
4009 for (i = 0; i < nr_irqs; i++) {
4010 irq_data = irq_domain_get_irq_data(domain, virq + i);
4011 cfg = irqd_cfg(irq_data);
4012 if (!irq_data || !cfg) {
4013 ret = -EINVAL;
4014 goto out_free_data;
4015 }
4016
4017 if (i > 0) {
4018 data = kzalloc(sizeof(*data), GFP_KERNEL);
4019 if (!data)
4020 goto out_free_data;
4021 }
4022 irq_data->hwirq = (devid << 16) + i;
4023 irq_data->chip_data = data;
4024 irq_data->chip = &amd_ir_chip;
4025 irq_remapping_prepare_irte(data, cfg, info, devid, index, i);
4026 irq_set_status_flags(virq + i, IRQ_MOVE_PCNTXT);
4027 }
4028 return 0;
4029
4030out_free_data:
4031 for (i--; i >= 0; i--) {
4032 irq_data = irq_domain_get_irq_data(domain, virq + i);
4033 if (irq_data)
4034 kfree(irq_data->chip_data);
4035 }
4036 for (i = 0; i < nr_irqs; i++)
4037 free_irte(devid, index + i);
4038out_free_parent:
4039 irq_domain_free_irqs_common(domain, virq, nr_irqs);
4040 return ret;
4041}
4042
4043static void irq_remapping_free(struct irq_domain *domain, unsigned int virq,
4044 unsigned int nr_irqs)
4045{
4046 struct irq_2_irte *irte_info;
4047 struct irq_data *irq_data;
4048 struct amd_ir_data *data;
4049 int i;
4050
4051 for (i = 0; i < nr_irqs; i++) {
4052 irq_data = irq_domain_get_irq_data(domain, virq + i);
4053 if (irq_data && irq_data->chip_data) {
4054 data = irq_data->chip_data;
4055 irte_info = &data->irq_2_irte;
4056 free_irte(irte_info->devid, irte_info->index);
4057 kfree(data);
4058 }
4059 }
4060 irq_domain_free_irqs_common(domain, virq, nr_irqs);
4061}
4062
4063static void irq_remapping_activate(struct irq_domain *domain,
4064 struct irq_data *irq_data)
4065{
4066 struct amd_ir_data *data = irq_data->chip_data;
4067 struct irq_2_irte *irte_info = &data->irq_2_irte;
4068
4069 modify_irte(irte_info->devid, irte_info->index, data->irte_entry);
4070}
4071
4072static void irq_remapping_deactivate(struct irq_domain *domain,
4073 struct irq_data *irq_data)
4074{
4075 struct amd_ir_data *data = irq_data->chip_data;
4076 struct irq_2_irte *irte_info = &data->irq_2_irte;
4077 union irte entry;
4078
4079 entry.val = 0;
4080 modify_irte(irte_info->devid, irte_info->index, data->irte_entry);
4081}
4082
4083static struct irq_domain_ops amd_ir_domain_ops = {
4084 .alloc = irq_remapping_alloc,
4085 .free = irq_remapping_free,
4086 .activate = irq_remapping_activate,
4087 .deactivate = irq_remapping_deactivate,
4088};
4089
4090static int amd_ir_set_affinity(struct irq_data *data,
4091 const struct cpumask *mask, bool force)
4092{
4093 struct amd_ir_data *ir_data = data->chip_data;
4094 struct irq_2_irte *irte_info = &ir_data->irq_2_irte;
4095 struct irq_cfg *cfg = irqd_cfg(data);
4096 struct irq_data *parent = data->parent_data;
4097 int ret;
4098
4099 ret = parent->chip->irq_set_affinity(parent, mask, force);
4100 if (ret < 0 || ret == IRQ_SET_MASK_OK_DONE)
4101 return ret;
4102
4103 /*
4104 * Atomically updates the IRTE with the new destination, vector
4105 * and flushes the interrupt entry cache.
4106 */
4107 ir_data->irte_entry.fields.vector = cfg->vector;
4108 ir_data->irte_entry.fields.destination = cfg->dest_apicid;
4109 modify_irte(irte_info->devid, irte_info->index, ir_data->irte_entry);
4110
4111 /*
4112 * After this point, all the interrupts will start arriving
4113 * at the new destination. So, time to cleanup the previous
4114 * vector allocation.
4115 */
Jiang Liuc6c20022015-04-14 10:30:02 +08004116 send_cleanup_vector(cfg);
Jiang Liu7c71d302015-04-13 14:11:33 +08004117
4118 return IRQ_SET_MASK_OK_DONE;
4119}
4120
4121static void ir_compose_msi_msg(struct irq_data *irq_data, struct msi_msg *msg)
4122{
4123 struct amd_ir_data *ir_data = irq_data->chip_data;
4124
4125 *msg = ir_data->msi_entry;
4126}
4127
4128static struct irq_chip amd_ir_chip = {
4129 .irq_ack = ir_ack_apic_edge,
4130 .irq_set_affinity = amd_ir_set_affinity,
4131 .irq_compose_msi_msg = ir_compose_msi_msg,
4132};
4133
4134int amd_iommu_create_irq_domain(struct amd_iommu *iommu)
4135{
4136 iommu->ir_domain = irq_domain_add_tree(NULL, &amd_ir_domain_ops, iommu);
4137 if (!iommu->ir_domain)
4138 return -ENOMEM;
4139
4140 iommu->ir_domain->parent = arch_get_ir_parent_domain();
4141 iommu->msi_domain = arch_create_msi_irq_domain(iommu->ir_domain);
4142
4143 return 0;
4144}
Joerg Roedel2b324502012-06-21 16:29:10 +02004145#endif