blob: 634f636393d5e423b2a6d3bf01659c1643b865c8 [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>
Wan Zongshun2bf9a0a2016-04-01 09:06:03 -040022#include <linux/acpi.h>
Wan Zongshun9a4d3bf52016-04-01 09:06:05 -040023#include <linux/amba/bus.h>
Joerg Roedelcb41ed82011-04-05 11:00:53 +020024#include <linux/pci-ats.h>
Akinobu Mitaa66022c2009-12-15 16:48:28 -080025#include <linux/bitmap.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090026#include <linux/slab.h>
Joerg Roedel7f265082008-12-12 13:50:21 +010027#include <linux/debugfs.h>
Joerg Roedelb6c02712008-06-26 21:27:53 +020028#include <linux/scatterlist.h>
FUJITA Tomonori51491362009-01-05 23:47:25 +090029#include <linux/dma-mapping.h>
Joerg Roedelb6c02712008-06-26 21:27:53 +020030#include <linux/iommu-helper.h>
Joerg Roedelc156e342008-12-02 18:13:27 +010031#include <linux/iommu.h>
Joerg Roedel815b33f2011-04-06 17:26:49 +020032#include <linux/delay.h>
Joerg Roedel403f81d2011-06-14 16:44:25 +020033#include <linux/amd-iommu.h>
Joerg Roedel72e1dcc2011-11-10 19:13:51 +010034#include <linux/notifier.h>
35#include <linux/export.h>
Joerg Roedel2b324502012-06-21 16:29:10 +020036#include <linux/irq.h>
37#include <linux/msi.h>
Joerg Roedel3b839a52015-04-01 14:58:47 +020038#include <linux/dma-contiguous.h>
Jiang Liu7c71d302015-04-13 14:11:33 +080039#include <linux/irqdomain.h>
Joerg Roedel5f6bed52015-12-22 13:34:22 +010040#include <linux/percpu.h>
Joerg Roedel2b324502012-06-21 16:29:10 +020041#include <asm/irq_remapping.h>
42#include <asm/io_apic.h>
43#include <asm/apic.h>
44#include <asm/hw_irq.h>
Joerg Roedel17f5b562011-07-06 17:14:44 +020045#include <asm/msidef.h>
Joerg Roedelb6c02712008-06-26 21:27:53 +020046#include <asm/proto.h>
FUJITA Tomonori46a7fa22008-07-11 10:23:42 +090047#include <asm/iommu.h>
Joerg Roedel1d9b16d2008-11-27 18:39:15 +010048#include <asm/gart.h>
Joerg Roedel27c21272011-05-30 15:56:24 +020049#include <asm/dma.h>
Joerg Roedel403f81d2011-06-14 16:44:25 +020050
51#include "amd_iommu_proto.h"
52#include "amd_iommu_types.h"
Joerg Roedel6b474b82012-06-26 16:46:04 +020053#include "irq_remapping.h"
Joerg Roedelb6c02712008-06-26 21:27:53 +020054
55#define CMD_SET_TYPE(cmd, t) ((cmd)->data[1] |= ((t) << 28))
56
Joerg Roedel815b33f2011-04-06 17:26:49 +020057#define LOOP_TIMEOUT 100000
Joerg Roedel136f78a2008-07-11 17:14:27 +020058
Ohad Ben-Cohenaa3de9c2011-11-10 11:32:29 +020059/*
60 * This bitmap is used to advertise the page sizes our hardware support
61 * to the IOMMU core, which will then use this information to split
62 * physically contiguous memory regions it is mapping into page sizes
63 * that we support.
64 *
Joerg Roedel954e3dd2012-12-02 15:35:37 +010065 * 512GB Pages are not supported due to a hardware bug
Ohad Ben-Cohenaa3de9c2011-11-10 11:32:29 +020066 */
Joerg Roedel954e3dd2012-12-02 15:35:37 +010067#define AMD_IOMMU_PGSIZES ((~0xFFFUL) & ~(2ULL << 38))
Ohad Ben-Cohenaa3de9c2011-11-10 11:32:29 +020068
Joerg Roedelb6c02712008-06-26 21:27:53 +020069static DEFINE_RWLOCK(amd_iommu_devtable_lock);
70
Joerg Roedel8fa5f802011-06-09 12:24:45 +020071/* List of all available dev_data structures */
72static LIST_HEAD(dev_data_list);
73static DEFINE_SPINLOCK(dev_data_list_lock);
74
Joerg Roedel6efed632012-06-14 15:52:58 +020075LIST_HEAD(ioapic_map);
76LIST_HEAD(hpet_map);
Wan Zongshun2a0cb4e2016-04-01 09:06:00 -040077LIST_HEAD(acpihid_map);
Joerg Roedel6efed632012-06-14 15:52:58 +020078
Joerg Roedel0feae532009-08-26 15:26:30 +020079/*
80 * Domain for untranslated devices - only allocated
81 * if iommu=pt passed on kernel cmd line.
82 */
Thierry Redingb22f6432014-06-27 09:03:12 +020083static const struct iommu_ops amd_iommu_ops;
Joerg Roedel26961ef2008-12-03 17:00:17 +010084
Joerg Roedel72e1dcc2011-11-10 19:13:51 +010085static ATOMIC_NOTIFIER_HEAD(ppr_notifier);
Joerg Roedel52815b72011-11-17 17:24:28 +010086int amd_iommu_max_glx_val = -1;
Joerg Roedel72e1dcc2011-11-10 19:13:51 +010087
Joerg Roedelac1534a2012-06-21 14:52:40 +020088static struct dma_map_ops amd_iommu_dma_ops;
89
Joerg Roedel431b2a22008-07-11 17:14:22 +020090/*
Joerg Roedel50917e22014-08-05 16:38:38 +020091 * This struct contains device specific data for the IOMMU
92 */
93struct iommu_dev_data {
94 struct list_head list; /* For domain->dev_list */
95 struct list_head dev_data_list; /* For global dev_data_list */
Joerg Roedel50917e22014-08-05 16:38:38 +020096 struct protection_domain *domain; /* Domain the device is bound to */
Joerg Roedel50917e22014-08-05 16:38:38 +020097 u16 devid; /* PCI Device ID */
Joerg Roedele3156042016-04-08 15:12:24 +020098 u16 alias; /* Alias Device ID */
Joerg Roedel50917e22014-08-05 16:38:38 +020099 bool iommu_v2; /* Device can make use of IOMMUv2 */
Joerg Roedel1e6a7b02015-07-28 16:58:48 +0200100 bool passthrough; /* Device is identity mapped */
Joerg Roedel50917e22014-08-05 16:38:38 +0200101 struct {
102 bool enabled;
103 int qdep;
104 } ats; /* ATS state */
105 bool pri_tlp; /* PASID TLB required for
106 PPR completions */
107 u32 errata; /* Bitmap for errata to apply */
108};
109
110/*
Joerg Roedel431b2a22008-07-11 17:14:22 +0200111 * general struct to manage commands send to an IOMMU
112 */
Joerg Roedeld6449532008-07-11 17:14:28 +0200113struct iommu_cmd {
Joerg Roedelb6c02712008-06-26 21:27:53 +0200114 u32 data[4];
115};
116
Joerg Roedel05152a02012-06-15 16:53:51 +0200117struct kmem_cache *amd_iommu_irq_cache;
118
Joerg Roedel04bfdd82009-09-02 16:00:23 +0200119static void update_domain(struct protection_domain *domain);
Joerg Roedel7a5a5662015-06-30 08:56:11 +0200120static int protection_domain_init(struct protection_domain *domain);
Joerg Roedelb6809ee2016-02-26 16:48:59 +0100121static void detach_device(struct device *dev);
Chris Wrightc1eee672009-05-21 00:56:58 -0700122
Joerg Roedel007b74b2015-12-21 12:53:54 +0100123/*
124 * For dynamic growth the aperture size is split into ranges of 128MB of
125 * DMA address space each. This struct represents one such range.
126 */
127struct aperture_range {
128
Joerg Roedel08c5fb92015-12-21 13:04:49 +0100129 spinlock_t bitmap_lock;
130
Joerg Roedel007b74b2015-12-21 12:53:54 +0100131 /* address allocation bitmap */
132 unsigned long *bitmap;
Joerg Roedelae62d492015-12-21 16:28:45 +0100133 unsigned long offset;
Joerg Roedel60e6a7c2015-12-21 16:53:17 +0100134 unsigned long next_bit;
Joerg Roedel007b74b2015-12-21 12:53:54 +0100135
136 /*
137 * Array of PTE pages for the aperture. In this array we save all the
138 * leaf pages of the domain page table used for the aperture. This way
139 * we don't need to walk the page table to find a specific PTE. We can
140 * just calculate its address in constant time.
141 */
142 u64 *pte_pages[64];
Joerg Roedel007b74b2015-12-21 12:53:54 +0100143};
144
145/*
146 * Data container for a dma_ops specific protection domain
147 */
148struct dma_ops_domain {
149 /* generic protection domain information */
150 struct protection_domain domain;
151
152 /* size of the aperture for the mappings */
153 unsigned long aperture_size;
154
Joerg Roedelebaecb42015-12-21 18:11:32 +0100155 /* aperture index we start searching for free addresses */
Joerg Roedel5f6bed52015-12-22 13:34:22 +0100156 u32 __percpu *next_index;
Joerg Roedel007b74b2015-12-21 12:53:54 +0100157
158 /* address space relevant data */
159 struct aperture_range *aperture[APERTURE_MAX_RANGES];
Joerg Roedel007b74b2015-12-21 12:53:54 +0100160};
161
Joerg Roedel15898bb2009-11-24 15:39:42 +0100162/****************************************************************************
163 *
164 * Helper functions
165 *
166 ****************************************************************************/
167
Wan Zongshun2bf9a0a2016-04-01 09:06:03 -0400168static inline int match_hid_uid(struct device *dev,
169 struct acpihid_map_entry *entry)
Joerg Roedel3f4b87b2015-03-26 13:43:07 +0100170{
Wan Zongshun2bf9a0a2016-04-01 09:06:03 -0400171 const char *hid, *uid;
172
173 hid = acpi_device_hid(ACPI_COMPANION(dev));
174 uid = acpi_device_uid(ACPI_COMPANION(dev));
175
176 if (!hid || !(*hid))
177 return -ENODEV;
178
179 if (!uid || !(*uid))
180 return strcmp(hid, entry->hid);
181
182 if (!(*entry->uid))
183 return strcmp(hid, entry->hid);
184
185 return (strcmp(hid, entry->hid) || strcmp(uid, entry->uid));
Joerg Roedel3f4b87b2015-03-26 13:43:07 +0100186}
187
Wan Zongshun2bf9a0a2016-04-01 09:06:03 -0400188static inline u16 get_pci_device_id(struct device *dev)
Joerg Roedele3156042016-04-08 15:12:24 +0200189{
190 struct pci_dev *pdev = to_pci_dev(dev);
191
192 return PCI_DEVID(pdev->bus->number, pdev->devfn);
193}
194
Wan Zongshun2bf9a0a2016-04-01 09:06:03 -0400195static inline int get_acpihid_device_id(struct device *dev,
196 struct acpihid_map_entry **entry)
197{
198 struct acpihid_map_entry *p;
199
200 list_for_each_entry(p, &acpihid_map, list) {
201 if (!match_hid_uid(dev, p)) {
202 if (entry)
203 *entry = p;
204 return p->devid;
205 }
206 }
207 return -EINVAL;
208}
209
210static inline int get_device_id(struct device *dev)
211{
212 int devid;
213
214 if (dev_is_pci(dev))
215 devid = get_pci_device_id(dev);
216 else
217 devid = get_acpihid_device_id(dev, NULL);
218
219 return devid;
220}
221
Joerg Roedel15898bb2009-11-24 15:39:42 +0100222static struct protection_domain *to_pdomain(struct iommu_domain *dom)
223{
224 return container_of(dom, struct protection_domain, domain);
225}
226
Joerg Roedelf62dda62011-06-09 12:55:35 +0200227static struct iommu_dev_data *alloc_dev_data(u16 devid)
Joerg Roedel8fa5f802011-06-09 12:24:45 +0200228{
229 struct iommu_dev_data *dev_data;
230 unsigned long flags;
231
232 dev_data = kzalloc(sizeof(*dev_data), GFP_KERNEL);
233 if (!dev_data)
234 return NULL;
235
Joerg Roedelf62dda62011-06-09 12:55:35 +0200236 dev_data->devid = devid;
Joerg Roedel8fa5f802011-06-09 12:24:45 +0200237
238 spin_lock_irqsave(&dev_data_list_lock, flags);
239 list_add_tail(&dev_data->dev_data_list, &dev_data_list);
240 spin_unlock_irqrestore(&dev_data_list_lock, flags);
241
242 return dev_data;
243}
244
Joerg Roedel3b03bb72011-06-09 18:53:25 +0200245static struct iommu_dev_data *search_dev_data(u16 devid)
246{
247 struct iommu_dev_data *dev_data;
248 unsigned long flags;
249
250 spin_lock_irqsave(&dev_data_list_lock, flags);
251 list_for_each_entry(dev_data, &dev_data_list, dev_data_list) {
252 if (dev_data->devid == devid)
253 goto out_unlock;
254 }
255
256 dev_data = NULL;
257
258out_unlock:
259 spin_unlock_irqrestore(&dev_data_list_lock, flags);
260
261 return dev_data;
262}
263
Joerg Roedele3156042016-04-08 15:12:24 +0200264static int __last_alias(struct pci_dev *pdev, u16 alias, void *data)
265{
266 *(u16 *)data = alias;
267 return 0;
268}
269
270static u16 get_alias(struct device *dev)
271{
272 struct pci_dev *pdev = to_pci_dev(dev);
273 u16 devid, ivrs_alias, pci_alias;
274
Joerg Roedel6c0b43d2016-05-09 19:39:17 +0200275 /* The callers make sure that get_device_id() does not fail here */
Joerg Roedele3156042016-04-08 15:12:24 +0200276 devid = get_device_id(dev);
277 ivrs_alias = amd_iommu_alias_table[devid];
278 pci_for_each_dma_alias(pdev, __last_alias, &pci_alias);
279
280 if (ivrs_alias == pci_alias)
281 return ivrs_alias;
282
283 /*
284 * DMA alias showdown
285 *
286 * The IVRS is fairly reliable in telling us about aliases, but it
287 * can't know about every screwy device. If we don't have an IVRS
288 * reported alias, use the PCI reported alias. In that case we may
289 * still need to initialize the rlookup and dev_table entries if the
290 * alias is to a non-existent device.
291 */
292 if (ivrs_alias == devid) {
293 if (!amd_iommu_rlookup_table[pci_alias]) {
294 amd_iommu_rlookup_table[pci_alias] =
295 amd_iommu_rlookup_table[devid];
296 memcpy(amd_iommu_dev_table[pci_alias].data,
297 amd_iommu_dev_table[devid].data,
298 sizeof(amd_iommu_dev_table[pci_alias].data));
299 }
300
301 return pci_alias;
302 }
303
304 pr_info("AMD-Vi: Using IVRS reported alias %02x:%02x.%d "
305 "for device %s[%04x:%04x], kernel reported alias "
306 "%02x:%02x.%d\n", PCI_BUS_NUM(ivrs_alias), PCI_SLOT(ivrs_alias),
307 PCI_FUNC(ivrs_alias), dev_name(dev), pdev->vendor, pdev->device,
308 PCI_BUS_NUM(pci_alias), PCI_SLOT(pci_alias),
309 PCI_FUNC(pci_alias));
310
311 /*
312 * If we don't have a PCI DMA alias and the IVRS alias is on the same
313 * bus, then the IVRS table may know about a quirk that we don't.
314 */
315 if (pci_alias == devid &&
316 PCI_BUS_NUM(ivrs_alias) == pdev->bus->number) {
Linus Torvalds7afd16f2016-05-19 13:10:54 -0700317 pci_add_dma_alias(pdev, ivrs_alias & 0xff);
Joerg Roedele3156042016-04-08 15:12:24 +0200318 pr_info("AMD-Vi: Added PCI DMA alias %02x.%d for %s\n",
319 PCI_SLOT(ivrs_alias), PCI_FUNC(ivrs_alias),
320 dev_name(dev));
321 }
322
323 return ivrs_alias;
324}
325
Joerg Roedel3b03bb72011-06-09 18:53:25 +0200326static struct iommu_dev_data *find_dev_data(u16 devid)
327{
328 struct iommu_dev_data *dev_data;
329
330 dev_data = search_dev_data(devid);
331
332 if (dev_data == NULL)
333 dev_data = alloc_dev_data(devid);
334
335 return dev_data;
336}
337
Joerg Roedel657cbb62009-11-23 15:26:46 +0100338static struct iommu_dev_data *get_dev_data(struct device *dev)
339{
340 return dev->archdata.iommu;
341}
342
Wan Zongshunb097d112016-04-01 09:06:04 -0400343/*
344* Find or create an IOMMU group for a acpihid device.
345*/
346static struct iommu_group *acpihid_device_group(struct device *dev)
347{
348 struct acpihid_map_entry *p, *entry = NULL;
Dan Carpenter2d8e1f02016-04-11 10:14:46 +0300349 int devid;
Wan Zongshunb097d112016-04-01 09:06:04 -0400350
351 devid = get_acpihid_device_id(dev, &entry);
352 if (devid < 0)
353 return ERR_PTR(devid);
354
355 list_for_each_entry(p, &acpihid_map, list) {
356 if ((devid == p->devid) && p->group)
357 entry->group = p->group;
358 }
359
360 if (!entry->group)
361 entry->group = generic_device_group(dev);
362
363 return entry->group;
364}
365
Joerg Roedel5abcdba2011-12-01 15:49:45 +0100366static bool pci_iommuv2_capable(struct pci_dev *pdev)
367{
368 static const int caps[] = {
369 PCI_EXT_CAP_ID_ATS,
Joerg Roedel46277b72011-12-07 14:34:02 +0100370 PCI_EXT_CAP_ID_PRI,
371 PCI_EXT_CAP_ID_PASID,
Joerg Roedel5abcdba2011-12-01 15:49:45 +0100372 };
373 int i, pos;
374
375 for (i = 0; i < 3; ++i) {
376 pos = pci_find_ext_capability(pdev, caps[i]);
377 if (pos == 0)
378 return false;
379 }
380
381 return true;
382}
383
Joerg Roedel6a113dd2011-12-01 12:04:58 +0100384static bool pdev_pri_erratum(struct pci_dev *pdev, u32 erratum)
385{
386 struct iommu_dev_data *dev_data;
387
388 dev_data = get_dev_data(&pdev->dev);
389
390 return dev_data->errata & (1 << erratum) ? true : false;
391}
392
Joerg Roedel71c70982009-11-24 16:43:06 +0100393/*
Joerg Roedel0bb6e242015-05-28 18:41:40 +0200394 * This function actually applies the mapping to the page table of the
395 * dma_ops domain.
Joerg Roedel71c70982009-11-24 16:43:06 +0100396 */
Joerg Roedel0bb6e242015-05-28 18:41:40 +0200397static void alloc_unity_mapping(struct dma_ops_domain *dma_dom,
398 struct unity_map_entry *e)
Joerg Roedel71c70982009-11-24 16:43:06 +0100399{
Joerg Roedel0bb6e242015-05-28 18:41:40 +0200400 u64 addr;
Joerg Roedel71c70982009-11-24 16:43:06 +0100401
Joerg Roedel0bb6e242015-05-28 18:41:40 +0200402 for (addr = e->address_start; addr < e->address_end;
403 addr += PAGE_SIZE) {
404 if (addr < dma_dom->aperture_size)
405 __set_bit(addr >> PAGE_SHIFT,
406 dma_dom->aperture[0]->bitmap);
Joerg Roedel71c70982009-11-24 16:43:06 +0100407 }
Joerg Roedel0bb6e242015-05-28 18:41:40 +0200408}
Joerg Roedel71c70982009-11-24 16:43:06 +0100409
Joerg Roedel0bb6e242015-05-28 18:41:40 +0200410/*
411 * Inits the unity mappings required for a specific device
412 */
413static void init_unity_mappings_for_device(struct device *dev,
414 struct dma_ops_domain *dma_dom)
415{
416 struct unity_map_entry *e;
Wan Zongshun7aba6cb2016-04-01 09:06:02 -0400417 int devid;
Joerg Roedel71c70982009-11-24 16:43:06 +0100418
Joerg Roedel0bb6e242015-05-28 18:41:40 +0200419 devid = get_device_id(dev);
Joerg Roedel9ee35e42016-04-21 18:21:31 +0200420 if (devid < 0)
Wan Zongshun7aba6cb2016-04-01 09:06:02 -0400421 return;
Joerg Roedel0bb6e242015-05-28 18:41:40 +0200422
423 list_for_each_entry(e, &amd_iommu_unity_map, list) {
424 if (!(devid >= e->devid_start && devid <= e->devid_end))
425 continue;
426 alloc_unity_mapping(dma_dom, e);
427 }
Joerg Roedel71c70982009-11-24 16:43:06 +0100428}
429
Joerg Roedel98fc5a62009-11-24 17:19:23 +0100430/*
431 * This function checks if the driver got a valid device from the caller to
432 * avoid dereferencing invalid pointers.
433 */
434static bool check_device(struct device *dev)
435{
Wan Zongshun7aba6cb2016-04-01 09:06:02 -0400436 int devid;
Joerg Roedel98fc5a62009-11-24 17:19:23 +0100437
438 if (!dev || !dev->dma_mask)
439 return false;
440
Joerg Roedel98fc5a62009-11-24 17:19:23 +0100441 devid = get_device_id(dev);
Joerg Roedel9ee35e42016-04-21 18:21:31 +0200442 if (devid < 0)
Wan Zongshun7aba6cb2016-04-01 09:06:02 -0400443 return false;
Joerg Roedel98fc5a62009-11-24 17:19:23 +0100444
445 /* Out of our scope? */
446 if (devid > amd_iommu_last_bdf)
447 return false;
448
449 if (amd_iommu_rlookup_table[devid] == NULL)
450 return false;
451
452 return true;
453}
454
Alex Williamson25b11ce2014-09-19 10:03:13 -0600455static void init_iommu_group(struct device *dev)
Alex Williamson2851db22012-10-08 22:49:41 -0600456{
Joerg Roedel0bb6e242015-05-28 18:41:40 +0200457 struct dma_ops_domain *dma_domain;
458 struct iommu_domain *domain;
Alex Williamson2851db22012-10-08 22:49:41 -0600459 struct iommu_group *group;
Alex Williamson2851db22012-10-08 22:49:41 -0600460
Alex Williamson65d53522014-07-03 09:51:30 -0600461 group = iommu_group_get_for_dev(dev);
Joerg Roedel0bb6e242015-05-28 18:41:40 +0200462 if (IS_ERR(group))
463 return;
464
465 domain = iommu_group_default_domain(group);
466 if (!domain)
467 goto out;
468
469 dma_domain = to_pdomain(domain)->priv;
470
471 init_unity_mappings_for_device(dev, dma_domain);
472out:
473 iommu_group_put(group);
Alex Williamsoneb9c9522012-10-08 22:49:35 -0600474}
475
476static int iommu_init_device(struct device *dev)
477{
Alex Williamsoneb9c9522012-10-08 22:49:35 -0600478 struct iommu_dev_data *dev_data;
Wan Zongshun7aba6cb2016-04-01 09:06:02 -0400479 int devid;
Alex Williamsoneb9c9522012-10-08 22:49:35 -0600480
481 if (dev->archdata.iommu)
482 return 0;
483
Wan Zongshun7aba6cb2016-04-01 09:06:02 -0400484 devid = get_device_id(dev);
Joerg Roedel9ee35e42016-04-21 18:21:31 +0200485 if (devid < 0)
Wan Zongshun7aba6cb2016-04-01 09:06:02 -0400486 return devid;
487
488 dev_data = find_dev_data(devid);
Alex Williamsoneb9c9522012-10-08 22:49:35 -0600489 if (!dev_data)
490 return -ENOMEM;
491
Joerg Roedele3156042016-04-08 15:12:24 +0200492 dev_data->alias = get_alias(dev);
493
Wan Zongshun2bf9a0a2016-04-01 09:06:03 -0400494 if (dev_is_pci(dev) && pci_iommuv2_capable(to_pci_dev(dev))) {
Joerg Roedel5abcdba2011-12-01 15:49:45 +0100495 struct amd_iommu *iommu;
496
Wan Zongshun2bf9a0a2016-04-01 09:06:03 -0400497 iommu = amd_iommu_rlookup_table[dev_data->devid];
Joerg Roedel5abcdba2011-12-01 15:49:45 +0100498 dev_data->iommu_v2 = iommu->is_iommu_v2;
499 }
500
Joerg Roedel657cbb62009-11-23 15:26:46 +0100501 dev->archdata.iommu = dev_data;
502
Alex Williamson066f2e92014-06-12 16:12:37 -0600503 iommu_device_link(amd_iommu_rlookup_table[dev_data->devid]->iommu_dev,
504 dev);
505
Joerg Roedel657cbb62009-11-23 15:26:46 +0100506 return 0;
507}
508
Joerg Roedel26018872011-06-06 16:50:14 +0200509static void iommu_ignore_device(struct device *dev)
510{
Wan Zongshun7aba6cb2016-04-01 09:06:02 -0400511 u16 alias;
512 int devid;
Joerg Roedel26018872011-06-06 16:50:14 +0200513
514 devid = get_device_id(dev);
Joerg Roedel9ee35e42016-04-21 18:21:31 +0200515 if (devid < 0)
Wan Zongshun7aba6cb2016-04-01 09:06:02 -0400516 return;
517
Joerg Roedele3156042016-04-08 15:12:24 +0200518 alias = get_alias(dev);
Joerg Roedel26018872011-06-06 16:50:14 +0200519
520 memset(&amd_iommu_dev_table[devid], 0, sizeof(struct dev_table_entry));
521 memset(&amd_iommu_dev_table[alias], 0, sizeof(struct dev_table_entry));
522
523 amd_iommu_rlookup_table[devid] = NULL;
524 amd_iommu_rlookup_table[alias] = NULL;
525}
526
Joerg Roedel657cbb62009-11-23 15:26:46 +0100527static void iommu_uninit_device(struct device *dev)
528{
Wan Zongshun7aba6cb2016-04-01 09:06:02 -0400529 int devid;
530 struct iommu_dev_data *dev_data;
Alex Williamsonc1931092014-07-03 09:51:24 -0600531
Wan Zongshun7aba6cb2016-04-01 09:06:02 -0400532 devid = get_device_id(dev);
Joerg Roedel9ee35e42016-04-21 18:21:31 +0200533 if (devid < 0)
Wan Zongshun7aba6cb2016-04-01 09:06:02 -0400534 return;
535
536 dev_data = search_dev_data(devid);
Alex Williamsonc1931092014-07-03 09:51:24 -0600537 if (!dev_data)
538 return;
539
Joerg Roedelb6809ee2016-02-26 16:48:59 +0100540 if (dev_data->domain)
541 detach_device(dev);
542
Alex Williamson066f2e92014-06-12 16:12:37 -0600543 iommu_device_unlink(amd_iommu_rlookup_table[dev_data->devid]->iommu_dev,
544 dev);
545
Alex Williamson9dcd6132012-05-30 14:19:07 -0600546 iommu_group_remove_device(dev);
547
Joerg Roedelaafd8ba2015-05-28 18:41:39 +0200548 /* Remove dma-ops */
549 dev->archdata.dma_ops = NULL;
550
Joerg Roedel8fa5f802011-06-09 12:24:45 +0200551 /*
Alex Williamsonc1931092014-07-03 09:51:24 -0600552 * We keep dev_data around for unplugged devices and reuse it when the
553 * device is re-plugged - not doing so would introduce a ton of races.
Joerg Roedel8fa5f802011-06-09 12:24:45 +0200554 */
Joerg Roedel657cbb62009-11-23 15:26:46 +0100555}
Joerg Roedelb7cc9552009-12-10 11:03:39 +0100556
Joerg Roedel431b2a22008-07-11 17:14:22 +0200557/****************************************************************************
558 *
Joerg Roedela80dc3e2008-09-11 16:51:41 +0200559 * Interrupt handling functions
560 *
561 ****************************************************************************/
562
Joerg Roedele3e59872009-09-03 14:02:10 +0200563static void dump_dte_entry(u16 devid)
564{
565 int i;
566
Joerg Roedelee6c2862011-11-09 12:06:03 +0100567 for (i = 0; i < 4; ++i)
568 pr_err("AMD-Vi: DTE[%d]: %016llx\n", i,
Joerg Roedele3e59872009-09-03 14:02:10 +0200569 amd_iommu_dev_table[devid].data[i]);
570}
571
Joerg Roedel945b4ac2009-09-03 14:25:02 +0200572static void dump_command(unsigned long phys_addr)
573{
574 struct iommu_cmd *cmd = phys_to_virt(phys_addr);
575 int i;
576
577 for (i = 0; i < 4; ++i)
578 pr_err("AMD-Vi: CMD[%d]: %08x\n", i, cmd->data[i]);
579}
580
Joerg Roedela345b232009-09-03 15:01:43 +0200581static void iommu_print_event(struct amd_iommu *iommu, void *__evt)
Joerg Roedel90008ee2008-09-09 16:41:05 +0200582{
Joerg Roedel3d06fca2012-04-12 14:12:00 +0200583 int type, devid, domid, flags;
584 volatile u32 *event = __evt;
585 int count = 0;
586 u64 address;
587
588retry:
589 type = (event[1] >> EVENT_TYPE_SHIFT) & EVENT_TYPE_MASK;
590 devid = (event[0] >> EVENT_DEVID_SHIFT) & EVENT_DEVID_MASK;
591 domid = (event[1] >> EVENT_DOMID_SHIFT) & EVENT_DOMID_MASK;
592 flags = (event[1] >> EVENT_FLAGS_SHIFT) & EVENT_FLAGS_MASK;
593 address = (u64)(((u64)event[3]) << 32) | event[2];
594
595 if (type == 0) {
596 /* Did we hit the erratum? */
597 if (++count == LOOP_TIMEOUT) {
598 pr_err("AMD-Vi: No event written to event log\n");
599 return;
600 }
601 udelay(1);
602 goto retry;
603 }
Joerg Roedel90008ee2008-09-09 16:41:05 +0200604
Joerg Roedel4c6f40d2009-09-01 16:43:58 +0200605 printk(KERN_ERR "AMD-Vi: Event logged [");
Joerg Roedel90008ee2008-09-09 16:41:05 +0200606
607 switch (type) {
608 case EVENT_TYPE_ILL_DEV:
609 printk("ILLEGAL_DEV_TABLE_ENTRY device=%02x:%02x.%x "
610 "address=0x%016llx flags=0x%04x]\n",
Shuah Khanc5081cd2013-02-27 17:07:19 -0700611 PCI_BUS_NUM(devid), PCI_SLOT(devid), PCI_FUNC(devid),
Joerg Roedel90008ee2008-09-09 16:41:05 +0200612 address, flags);
Joerg Roedele3e59872009-09-03 14:02:10 +0200613 dump_dte_entry(devid);
Joerg Roedel90008ee2008-09-09 16:41:05 +0200614 break;
615 case EVENT_TYPE_IO_FAULT:
616 printk("IO_PAGE_FAULT device=%02x:%02x.%x "
617 "domain=0x%04x address=0x%016llx flags=0x%04x]\n",
Shuah Khanc5081cd2013-02-27 17:07:19 -0700618 PCI_BUS_NUM(devid), PCI_SLOT(devid), PCI_FUNC(devid),
Joerg Roedel90008ee2008-09-09 16:41:05 +0200619 domid, address, flags);
620 break;
621 case EVENT_TYPE_DEV_TAB_ERR:
622 printk("DEV_TAB_HARDWARE_ERROR device=%02x:%02x.%x "
623 "address=0x%016llx flags=0x%04x]\n",
Shuah Khanc5081cd2013-02-27 17:07:19 -0700624 PCI_BUS_NUM(devid), PCI_SLOT(devid), PCI_FUNC(devid),
Joerg Roedel90008ee2008-09-09 16:41:05 +0200625 address, flags);
626 break;
627 case EVENT_TYPE_PAGE_TAB_ERR:
628 printk("PAGE_TAB_HARDWARE_ERROR device=%02x:%02x.%x "
629 "domain=0x%04x address=0x%016llx flags=0x%04x]\n",
Shuah Khanc5081cd2013-02-27 17:07:19 -0700630 PCI_BUS_NUM(devid), PCI_SLOT(devid), PCI_FUNC(devid),
Joerg Roedel90008ee2008-09-09 16:41:05 +0200631 domid, address, flags);
632 break;
633 case EVENT_TYPE_ILL_CMD:
634 printk("ILLEGAL_COMMAND_ERROR address=0x%016llx]\n", address);
Joerg Roedel945b4ac2009-09-03 14:25:02 +0200635 dump_command(address);
Joerg Roedel90008ee2008-09-09 16:41:05 +0200636 break;
637 case EVENT_TYPE_CMD_HARD_ERR:
638 printk("COMMAND_HARDWARE_ERROR address=0x%016llx "
639 "flags=0x%04x]\n", address, flags);
640 break;
641 case EVENT_TYPE_IOTLB_INV_TO:
642 printk("IOTLB_INV_TIMEOUT device=%02x:%02x.%x "
643 "address=0x%016llx]\n",
Shuah Khanc5081cd2013-02-27 17:07:19 -0700644 PCI_BUS_NUM(devid), PCI_SLOT(devid), PCI_FUNC(devid),
Joerg Roedel90008ee2008-09-09 16:41:05 +0200645 address);
646 break;
647 case EVENT_TYPE_INV_DEV_REQ:
648 printk("INVALID_DEVICE_REQUEST device=%02x:%02x.%x "
649 "address=0x%016llx flags=0x%04x]\n",
Shuah Khanc5081cd2013-02-27 17:07:19 -0700650 PCI_BUS_NUM(devid), PCI_SLOT(devid), PCI_FUNC(devid),
Joerg Roedel90008ee2008-09-09 16:41:05 +0200651 address, flags);
652 break;
653 default:
654 printk(KERN_ERR "UNKNOWN type=0x%02x]\n", type);
655 }
Joerg Roedel3d06fca2012-04-12 14:12:00 +0200656
657 memset(__evt, 0, 4 * sizeof(u32));
Joerg Roedel90008ee2008-09-09 16:41:05 +0200658}
659
660static void iommu_poll_events(struct amd_iommu *iommu)
661{
662 u32 head, tail;
Joerg Roedel90008ee2008-09-09 16:41:05 +0200663
664 head = readl(iommu->mmio_base + MMIO_EVT_HEAD_OFFSET);
665 tail = readl(iommu->mmio_base + MMIO_EVT_TAIL_OFFSET);
666
667 while (head != tail) {
Joerg Roedela345b232009-09-03 15:01:43 +0200668 iommu_print_event(iommu, iommu->evt_buf + head);
Joerg Roedeldeba4bc2015-10-20 17:33:41 +0200669 head = (head + EVENT_ENTRY_SIZE) % EVT_BUFFER_SIZE;
Joerg Roedel90008ee2008-09-09 16:41:05 +0200670 }
671
672 writel(head, iommu->mmio_base + MMIO_EVT_HEAD_OFFSET);
Joerg Roedel90008ee2008-09-09 16:41:05 +0200673}
674
Joerg Roedeleee53532012-06-01 15:20:23 +0200675static void iommu_handle_ppr_entry(struct amd_iommu *iommu, u64 *raw)
Joerg Roedel72e1dcc2011-11-10 19:13:51 +0100676{
677 struct amd_iommu_fault fault;
Joerg Roedel72e1dcc2011-11-10 19:13:51 +0100678
Joerg Roedel72e1dcc2011-11-10 19:13:51 +0100679 if (PPR_REQ_TYPE(raw[0]) != PPR_REQ_FAULT) {
680 pr_err_ratelimited("AMD-Vi: Unknown PPR request received\n");
681 return;
682 }
683
684 fault.address = raw[1];
685 fault.pasid = PPR_PASID(raw[0]);
686 fault.device_id = PPR_DEVID(raw[0]);
687 fault.tag = PPR_TAG(raw[0]);
688 fault.flags = PPR_FLAGS(raw[0]);
689
Joerg Roedel72e1dcc2011-11-10 19:13:51 +0100690 atomic_notifier_call_chain(&ppr_notifier, 0, &fault);
691}
692
693static void iommu_poll_ppr_log(struct amd_iommu *iommu)
694{
Joerg Roedel72e1dcc2011-11-10 19:13:51 +0100695 u32 head, tail;
696
697 if (iommu->ppr_log == NULL)
698 return;
699
Joerg Roedel72e1dcc2011-11-10 19:13:51 +0100700 head = readl(iommu->mmio_base + MMIO_PPR_HEAD_OFFSET);
701 tail = readl(iommu->mmio_base + MMIO_PPR_TAIL_OFFSET);
702
703 while (head != tail) {
Joerg Roedeleee53532012-06-01 15:20:23 +0200704 volatile u64 *raw;
705 u64 entry[2];
706 int i;
Joerg Roedel72e1dcc2011-11-10 19:13:51 +0100707
Joerg Roedeleee53532012-06-01 15:20:23 +0200708 raw = (u64 *)(iommu->ppr_log + head);
Joerg Roedel72e1dcc2011-11-10 19:13:51 +0100709
Joerg Roedeleee53532012-06-01 15:20:23 +0200710 /*
711 * Hardware bug: Interrupt may arrive before the entry is
712 * written to memory. If this happens we need to wait for the
713 * entry to arrive.
714 */
715 for (i = 0; i < LOOP_TIMEOUT; ++i) {
716 if (PPR_REQ_TYPE(raw[0]) != 0)
717 break;
718 udelay(1);
719 }
720
721 /* Avoid memcpy function-call overhead */
722 entry[0] = raw[0];
723 entry[1] = raw[1];
724
725 /*
726 * To detect the hardware bug we need to clear the entry
727 * back to zero.
728 */
729 raw[0] = raw[1] = 0UL;
730
731 /* Update head pointer of hardware ring-buffer */
Joerg Roedel72e1dcc2011-11-10 19:13:51 +0100732 head = (head + PPR_ENTRY_SIZE) % PPR_LOG_SIZE;
733 writel(head, iommu->mmio_base + MMIO_PPR_HEAD_OFFSET);
Joerg Roedeleee53532012-06-01 15:20:23 +0200734
Joerg Roedeleee53532012-06-01 15:20:23 +0200735 /* Handle PPR entry */
736 iommu_handle_ppr_entry(iommu, entry);
737
Joerg Roedeleee53532012-06-01 15:20:23 +0200738 /* Refresh ring-buffer information */
739 head = readl(iommu->mmio_base + MMIO_PPR_HEAD_OFFSET);
Joerg Roedel72e1dcc2011-11-10 19:13:51 +0100740 tail = readl(iommu->mmio_base + MMIO_PPR_TAIL_OFFSET);
741 }
Joerg Roedel72e1dcc2011-11-10 19:13:51 +0100742}
743
Joerg Roedel72fe00f2011-05-10 10:50:42 +0200744irqreturn_t amd_iommu_int_thread(int irq, void *data)
Joerg Roedela80dc3e2008-09-11 16:51:41 +0200745{
Suravee Suthikulpanit3f398bc2013-04-22 16:32:34 -0500746 struct amd_iommu *iommu = (struct amd_iommu *) data;
747 u32 status = readl(iommu->mmio_base + MMIO_STATUS_OFFSET);
Joerg Roedel90008ee2008-09-09 16:41:05 +0200748
Suravee Suthikulpanit3f398bc2013-04-22 16:32:34 -0500749 while (status & (MMIO_STATUS_EVT_INT_MASK | MMIO_STATUS_PPR_INT_MASK)) {
750 /* Enable EVT and PPR interrupts again */
751 writel((MMIO_STATUS_EVT_INT_MASK | MMIO_STATUS_PPR_INT_MASK),
752 iommu->mmio_base + MMIO_STATUS_OFFSET);
753
754 if (status & MMIO_STATUS_EVT_INT_MASK) {
755 pr_devel("AMD-Vi: Processing IOMMU Event Log\n");
756 iommu_poll_events(iommu);
757 }
758
759 if (status & MMIO_STATUS_PPR_INT_MASK) {
760 pr_devel("AMD-Vi: Processing IOMMU PPR Log\n");
761 iommu_poll_ppr_log(iommu);
762 }
763
764 /*
765 * Hardware bug: ERBT1312
766 * When re-enabling interrupt (by writing 1
767 * to clear the bit), the hardware might also try to set
768 * the interrupt bit in the event status register.
769 * In this scenario, the bit will be set, and disable
770 * subsequent interrupts.
771 *
772 * Workaround: The IOMMU driver should read back the
773 * status register and check if the interrupt bits are cleared.
774 * If not, driver will need to go through the interrupt handler
775 * again and re-clear the bits
776 */
777 status = readl(iommu->mmio_base + MMIO_STATUS_OFFSET);
Joerg Roedel72e1dcc2011-11-10 19:13:51 +0100778 }
Joerg Roedel90008ee2008-09-09 16:41:05 +0200779 return IRQ_HANDLED;
Joerg Roedela80dc3e2008-09-11 16:51:41 +0200780}
781
Joerg Roedel72fe00f2011-05-10 10:50:42 +0200782irqreturn_t amd_iommu_int_handler(int irq, void *data)
783{
784 return IRQ_WAKE_THREAD;
785}
786
Joerg Roedela80dc3e2008-09-11 16:51:41 +0200787/****************************************************************************
788 *
Joerg Roedel431b2a22008-07-11 17:14:22 +0200789 * IOMMU command queuing functions
790 *
791 ****************************************************************************/
792
Joerg Roedelac0ea6e2011-04-06 18:38:20 +0200793static int wait_on_sem(volatile u64 *sem)
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200794{
Joerg Roedelac0ea6e2011-04-06 18:38:20 +0200795 int i = 0;
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200796
Joerg Roedelac0ea6e2011-04-06 18:38:20 +0200797 while (*sem == 0 && i < LOOP_TIMEOUT) {
798 udelay(1);
799 i += 1;
800 }
801
802 if (i == LOOP_TIMEOUT) {
803 pr_alert("AMD-Vi: Completion-Wait loop timed out\n");
804 return -EIO;
805 }
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200806
807 return 0;
808}
809
Joerg Roedelac0ea6e2011-04-06 18:38:20 +0200810static void copy_cmd_to_buffer(struct amd_iommu *iommu,
811 struct iommu_cmd *cmd,
812 u32 tail)
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200813{
Joerg Roedelac0ea6e2011-04-06 18:38:20 +0200814 u8 *target;
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200815
Joerg Roedelac0ea6e2011-04-06 18:38:20 +0200816 target = iommu->cmd_buf + tail;
Joerg Roedeldeba4bc2015-10-20 17:33:41 +0200817 tail = (tail + sizeof(*cmd)) % CMD_BUFFER_SIZE;
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200818
Joerg Roedelac0ea6e2011-04-06 18:38:20 +0200819 /* Copy command to buffer */
820 memcpy(target, cmd, sizeof(*cmd));
821
822 /* Tell the IOMMU about it */
823 writel(tail, iommu->mmio_base + MMIO_CMD_TAIL_OFFSET);
824}
825
Joerg Roedel815b33f2011-04-06 17:26:49 +0200826static void build_completion_wait(struct iommu_cmd *cmd, u64 address)
Joerg Roedelded46732011-04-06 10:53:48 +0200827{
Joerg Roedel815b33f2011-04-06 17:26:49 +0200828 WARN_ON(address & 0x7ULL);
829
Joerg Roedelded46732011-04-06 10:53:48 +0200830 memset(cmd, 0, sizeof(*cmd));
Joerg Roedel815b33f2011-04-06 17:26:49 +0200831 cmd->data[0] = lower_32_bits(__pa(address)) | CMD_COMPL_WAIT_STORE_MASK;
832 cmd->data[1] = upper_32_bits(__pa(address));
833 cmd->data[2] = 1;
Joerg Roedelded46732011-04-06 10:53:48 +0200834 CMD_SET_TYPE(cmd, CMD_COMPL_WAIT);
835}
836
Joerg Roedel94fe79e2011-04-06 11:07:21 +0200837static void build_inv_dte(struct iommu_cmd *cmd, u16 devid)
838{
839 memset(cmd, 0, sizeof(*cmd));
840 cmd->data[0] = devid;
841 CMD_SET_TYPE(cmd, CMD_INV_DEV_ENTRY);
842}
843
Joerg Roedel11b64022011-04-06 11:49:28 +0200844static void build_inv_iommu_pages(struct iommu_cmd *cmd, u64 address,
845 size_t size, u16 domid, int pde)
846{
847 u64 pages;
Quentin Lambertae0cbbb2015-02-04 11:40:07 +0100848 bool s;
Joerg Roedel11b64022011-04-06 11:49:28 +0200849
850 pages = iommu_num_pages(address, size, PAGE_SIZE);
Quentin Lambertae0cbbb2015-02-04 11:40:07 +0100851 s = false;
Joerg Roedel11b64022011-04-06 11:49:28 +0200852
853 if (pages > 1) {
854 /*
855 * If we have to flush more than one page, flush all
856 * TLB entries for this domain
857 */
858 address = CMD_INV_IOMMU_ALL_PAGES_ADDRESS;
Quentin Lambertae0cbbb2015-02-04 11:40:07 +0100859 s = true;
Joerg Roedel11b64022011-04-06 11:49:28 +0200860 }
861
862 address &= PAGE_MASK;
863
864 memset(cmd, 0, sizeof(*cmd));
865 cmd->data[1] |= domid;
866 cmd->data[2] = lower_32_bits(address);
867 cmd->data[3] = upper_32_bits(address);
868 CMD_SET_TYPE(cmd, CMD_INV_IOMMU_PAGES);
869 if (s) /* size bit - we flush more than one 4kb page */
870 cmd->data[2] |= CMD_INV_IOMMU_PAGES_SIZE_MASK;
Frank Arnolddf805ab2012-08-27 19:21:04 +0200871 if (pde) /* PDE bit - we want to flush everything, not only the PTEs */
Joerg Roedel11b64022011-04-06 11:49:28 +0200872 cmd->data[2] |= CMD_INV_IOMMU_PAGES_PDE_MASK;
873}
874
Joerg Roedelcb41ed82011-04-05 11:00:53 +0200875static void build_inv_iotlb_pages(struct iommu_cmd *cmd, u16 devid, int qdep,
876 u64 address, size_t size)
877{
878 u64 pages;
Quentin Lambertae0cbbb2015-02-04 11:40:07 +0100879 bool s;
Joerg Roedelcb41ed82011-04-05 11:00:53 +0200880
881 pages = iommu_num_pages(address, size, PAGE_SIZE);
Quentin Lambertae0cbbb2015-02-04 11:40:07 +0100882 s = false;
Joerg Roedelcb41ed82011-04-05 11:00:53 +0200883
884 if (pages > 1) {
885 /*
886 * If we have to flush more than one page, flush all
887 * TLB entries for this domain
888 */
889 address = CMD_INV_IOMMU_ALL_PAGES_ADDRESS;
Quentin Lambertae0cbbb2015-02-04 11:40:07 +0100890 s = true;
Joerg Roedelcb41ed82011-04-05 11:00:53 +0200891 }
892
893 address &= PAGE_MASK;
894
895 memset(cmd, 0, sizeof(*cmd));
896 cmd->data[0] = devid;
897 cmd->data[0] |= (qdep & 0xff) << 24;
898 cmd->data[1] = devid;
899 cmd->data[2] = lower_32_bits(address);
900 cmd->data[3] = upper_32_bits(address);
901 CMD_SET_TYPE(cmd, CMD_INV_IOTLB_PAGES);
902 if (s)
903 cmd->data[2] |= CMD_INV_IOMMU_PAGES_SIZE_MASK;
904}
905
Joerg Roedel22e266c2011-11-21 15:59:08 +0100906static void build_inv_iommu_pasid(struct iommu_cmd *cmd, u16 domid, int pasid,
907 u64 address, bool size)
908{
909 memset(cmd, 0, sizeof(*cmd));
910
911 address &= ~(0xfffULL);
912
Suravee Suthikulpanita919a012014-03-05 18:54:18 -0600913 cmd->data[0] = pasid;
Joerg Roedel22e266c2011-11-21 15:59:08 +0100914 cmd->data[1] = domid;
915 cmd->data[2] = lower_32_bits(address);
916 cmd->data[3] = upper_32_bits(address);
917 cmd->data[2] |= CMD_INV_IOMMU_PAGES_PDE_MASK;
918 cmd->data[2] |= CMD_INV_IOMMU_PAGES_GN_MASK;
919 if (size)
920 cmd->data[2] |= CMD_INV_IOMMU_PAGES_SIZE_MASK;
921 CMD_SET_TYPE(cmd, CMD_INV_IOMMU_PAGES);
922}
923
924static void build_inv_iotlb_pasid(struct iommu_cmd *cmd, u16 devid, int pasid,
925 int qdep, u64 address, bool size)
926{
927 memset(cmd, 0, sizeof(*cmd));
928
929 address &= ~(0xfffULL);
930
931 cmd->data[0] = devid;
Jay Cornwalle8d2d822014-02-26 15:49:31 -0600932 cmd->data[0] |= ((pasid >> 8) & 0xff) << 16;
Joerg Roedel22e266c2011-11-21 15:59:08 +0100933 cmd->data[0] |= (qdep & 0xff) << 24;
934 cmd->data[1] = devid;
Jay Cornwalle8d2d822014-02-26 15:49:31 -0600935 cmd->data[1] |= (pasid & 0xff) << 16;
Joerg Roedel22e266c2011-11-21 15:59:08 +0100936 cmd->data[2] = lower_32_bits(address);
937 cmd->data[2] |= CMD_INV_IOMMU_PAGES_GN_MASK;
938 cmd->data[3] = upper_32_bits(address);
939 if (size)
940 cmd->data[2] |= CMD_INV_IOMMU_PAGES_SIZE_MASK;
941 CMD_SET_TYPE(cmd, CMD_INV_IOTLB_PAGES);
942}
943
Joerg Roedelc99afa22011-11-21 18:19:25 +0100944static void build_complete_ppr(struct iommu_cmd *cmd, u16 devid, int pasid,
945 int status, int tag, bool gn)
946{
947 memset(cmd, 0, sizeof(*cmd));
948
949 cmd->data[0] = devid;
950 if (gn) {
Suravee Suthikulpanita919a012014-03-05 18:54:18 -0600951 cmd->data[1] = pasid;
Joerg Roedelc99afa22011-11-21 18:19:25 +0100952 cmd->data[2] = CMD_INV_IOMMU_PAGES_GN_MASK;
953 }
954 cmd->data[3] = tag & 0x1ff;
955 cmd->data[3] |= (status & PPR_STATUS_MASK) << PPR_STATUS_SHIFT;
956
957 CMD_SET_TYPE(cmd, CMD_COMPLETE_PPR);
958}
959
Joerg Roedel58fc7f12011-04-11 11:13:24 +0200960static void build_inv_all(struct iommu_cmd *cmd)
961{
962 memset(cmd, 0, sizeof(*cmd));
963 CMD_SET_TYPE(cmd, CMD_INV_ALL);
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200964}
965
Joerg Roedel7ef27982012-06-21 16:46:04 +0200966static void build_inv_irt(struct iommu_cmd *cmd, u16 devid)
967{
968 memset(cmd, 0, sizeof(*cmd));
969 cmd->data[0] = devid;
970 CMD_SET_TYPE(cmd, CMD_INV_IRT);
971}
972
Joerg Roedel431b2a22008-07-11 17:14:22 +0200973/*
Joerg Roedelb6c02712008-06-26 21:27:53 +0200974 * Writes the command to the IOMMUs command buffer and informs the
Joerg Roedelac0ea6e2011-04-06 18:38:20 +0200975 * hardware about the new command.
Joerg Roedel431b2a22008-07-11 17:14:22 +0200976 */
Joerg Roedelf1ca1512011-09-02 14:10:32 +0200977static int iommu_queue_command_sync(struct amd_iommu *iommu,
978 struct iommu_cmd *cmd,
979 bool sync)
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200980{
Joerg Roedelac0ea6e2011-04-06 18:38:20 +0200981 u32 left, tail, head, next_tail;
Joerg Roedel815b33f2011-04-06 17:26:49 +0200982 unsigned long flags;
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200983
Joerg Roedelac0ea6e2011-04-06 18:38:20 +0200984again:
Joerg Roedel815b33f2011-04-06 17:26:49 +0200985 spin_lock_irqsave(&iommu->lock, flags);
Joerg Roedelac0ea6e2011-04-06 18:38:20 +0200986
987 head = readl(iommu->mmio_base + MMIO_CMD_HEAD_OFFSET);
988 tail = readl(iommu->mmio_base + MMIO_CMD_TAIL_OFFSET);
Joerg Roedeldeba4bc2015-10-20 17:33:41 +0200989 next_tail = (tail + sizeof(*cmd)) % CMD_BUFFER_SIZE;
990 left = (head - next_tail) % CMD_BUFFER_SIZE;
Joerg Roedelac0ea6e2011-04-06 18:38:20 +0200991
992 if (left <= 2) {
993 struct iommu_cmd sync_cmd;
994 volatile u64 sem = 0;
995 int ret;
996
997 build_completion_wait(&sync_cmd, (u64)&sem);
998 copy_cmd_to_buffer(iommu, &sync_cmd, tail);
999
1000 spin_unlock_irqrestore(&iommu->lock, flags);
1001
1002 if ((ret = wait_on_sem(&sem)) != 0)
1003 return ret;
1004
1005 goto again;
Joerg Roedel136f78a2008-07-11 17:14:27 +02001006 }
1007
Joerg Roedelac0ea6e2011-04-06 18:38:20 +02001008 copy_cmd_to_buffer(iommu, cmd, tail);
Joerg Roedel519c31b2008-08-14 19:55:15 +02001009
Joerg Roedelac0ea6e2011-04-06 18:38:20 +02001010 /* We need to sync now to make sure all commands are processed */
Joerg Roedelf1ca1512011-09-02 14:10:32 +02001011 iommu->need_sync = sync;
Joerg Roedelac0ea6e2011-04-06 18:38:20 +02001012
Joerg Roedela19ae1e2008-06-26 21:27:55 +02001013 spin_unlock_irqrestore(&iommu->lock, flags);
1014
Joerg Roedel815b33f2011-04-06 17:26:49 +02001015 return 0;
Joerg Roedel8d201962008-12-02 20:34:41 +01001016}
1017
Joerg Roedelf1ca1512011-09-02 14:10:32 +02001018static int iommu_queue_command(struct amd_iommu *iommu, struct iommu_cmd *cmd)
1019{
1020 return iommu_queue_command_sync(iommu, cmd, true);
1021}
1022
Joerg Roedel8d201962008-12-02 20:34:41 +01001023/*
1024 * This function queues a completion wait command into the command
1025 * buffer of an IOMMU
1026 */
Joerg Roedel8d201962008-12-02 20:34:41 +01001027static int iommu_completion_wait(struct amd_iommu *iommu)
1028{
Joerg Roedel815b33f2011-04-06 17:26:49 +02001029 struct iommu_cmd cmd;
1030 volatile u64 sem = 0;
Joerg Roedelac0ea6e2011-04-06 18:38:20 +02001031 int ret;
Joerg Roedel8d201962008-12-02 20:34:41 +01001032
1033 if (!iommu->need_sync)
Joerg Roedel815b33f2011-04-06 17:26:49 +02001034 return 0;
Joerg Roedel8d201962008-12-02 20:34:41 +01001035
Joerg Roedel815b33f2011-04-06 17:26:49 +02001036 build_completion_wait(&cmd, (u64)&sem);
Joerg Roedel8d201962008-12-02 20:34:41 +01001037
Joerg Roedelf1ca1512011-09-02 14:10:32 +02001038 ret = iommu_queue_command_sync(iommu, &cmd, false);
Joerg Roedel8d201962008-12-02 20:34:41 +01001039 if (ret)
Joerg Roedel815b33f2011-04-06 17:26:49 +02001040 return ret;
Joerg Roedel8d201962008-12-02 20:34:41 +01001041
Joerg Roedelac0ea6e2011-04-06 18:38:20 +02001042 return wait_on_sem(&sem);
Joerg Roedela19ae1e2008-06-26 21:27:55 +02001043}
1044
Joerg Roedeld8c13082011-04-06 18:51:26 +02001045static int iommu_flush_dte(struct amd_iommu *iommu, u16 devid)
Joerg Roedela19ae1e2008-06-26 21:27:55 +02001046{
1047 struct iommu_cmd cmd;
1048
Joerg Roedeld8c13082011-04-06 18:51:26 +02001049 build_inv_dte(&cmd, devid);
Joerg Roedela19ae1e2008-06-26 21:27:55 +02001050
Joerg Roedeld8c13082011-04-06 18:51:26 +02001051 return iommu_queue_command(iommu, &cmd);
1052}
1053
Joerg Roedel7d0c5cc2011-04-07 08:16:10 +02001054static void iommu_flush_dte_all(struct amd_iommu *iommu)
1055{
1056 u32 devid;
1057
1058 for (devid = 0; devid <= 0xffff; ++devid)
1059 iommu_flush_dte(iommu, devid);
1060
1061 iommu_completion_wait(iommu);
Joerg Roedela19ae1e2008-06-26 21:27:55 +02001062}
1063
1064/*
Joerg Roedel7d0c5cc2011-04-07 08:16:10 +02001065 * This function uses heavy locking and may disable irqs for some time. But
1066 * this is no issue because it is only called during resume.
Joerg Roedela19ae1e2008-06-26 21:27:55 +02001067 */
Joerg Roedel7d0c5cc2011-04-07 08:16:10 +02001068static void iommu_flush_tlb_all(struct amd_iommu *iommu)
Joerg Roedela19ae1e2008-06-26 21:27:55 +02001069{
Joerg Roedel7d0c5cc2011-04-07 08:16:10 +02001070 u32 dom_id;
Joerg Roedela19ae1e2008-06-26 21:27:55 +02001071
Joerg Roedel7d0c5cc2011-04-07 08:16:10 +02001072 for (dom_id = 0; dom_id <= 0xffff; ++dom_id) {
1073 struct iommu_cmd cmd;
1074 build_inv_iommu_pages(&cmd, 0, CMD_INV_IOMMU_ALL_PAGES_ADDRESS,
1075 dom_id, 1);
1076 iommu_queue_command(iommu, &cmd);
1077 }
Joerg Roedel431b2a22008-07-11 17:14:22 +02001078
Joerg Roedel7d0c5cc2011-04-07 08:16:10 +02001079 iommu_completion_wait(iommu);
Joerg Roedela19ae1e2008-06-26 21:27:55 +02001080}
1081
Joerg Roedel58fc7f12011-04-11 11:13:24 +02001082static void iommu_flush_all(struct amd_iommu *iommu)
1083{
1084 struct iommu_cmd cmd;
1085
1086 build_inv_all(&cmd);
1087
1088 iommu_queue_command(iommu, &cmd);
1089 iommu_completion_wait(iommu);
1090}
1091
Joerg Roedel7ef27982012-06-21 16:46:04 +02001092static void iommu_flush_irt(struct amd_iommu *iommu, u16 devid)
1093{
1094 struct iommu_cmd cmd;
1095
1096 build_inv_irt(&cmd, devid);
1097
1098 iommu_queue_command(iommu, &cmd);
1099}
1100
1101static void iommu_flush_irt_all(struct amd_iommu *iommu)
1102{
1103 u32 devid;
1104
1105 for (devid = 0; devid <= MAX_DEV_TABLE_ENTRIES; devid++)
1106 iommu_flush_irt(iommu, devid);
1107
1108 iommu_completion_wait(iommu);
1109}
1110
Joerg Roedel7d0c5cc2011-04-07 08:16:10 +02001111void iommu_flush_all_caches(struct amd_iommu *iommu)
1112{
Joerg Roedel58fc7f12011-04-11 11:13:24 +02001113 if (iommu_feature(iommu, FEATURE_IA)) {
1114 iommu_flush_all(iommu);
1115 } else {
1116 iommu_flush_dte_all(iommu);
Joerg Roedel7ef27982012-06-21 16:46:04 +02001117 iommu_flush_irt_all(iommu);
Joerg Roedel58fc7f12011-04-11 11:13:24 +02001118 iommu_flush_tlb_all(iommu);
1119 }
Joerg Roedel7d0c5cc2011-04-07 08:16:10 +02001120}
1121
Joerg Roedel431b2a22008-07-11 17:14:22 +02001122/*
Joerg Roedelcb41ed82011-04-05 11:00:53 +02001123 * Command send function for flushing on-device TLB
1124 */
Joerg Roedel6c542042011-06-09 17:07:31 +02001125static int device_flush_iotlb(struct iommu_dev_data *dev_data,
1126 u64 address, size_t size)
Joerg Roedelcb41ed82011-04-05 11:00:53 +02001127{
Joerg Roedelcb41ed82011-04-05 11:00:53 +02001128 struct amd_iommu *iommu;
1129 struct iommu_cmd cmd;
Joerg Roedelcb41ed82011-04-05 11:00:53 +02001130 int qdep;
1131
Joerg Roedelea61cdd2011-06-09 12:56:30 +02001132 qdep = dev_data->ats.qdep;
1133 iommu = amd_iommu_rlookup_table[dev_data->devid];
Joerg Roedelcb41ed82011-04-05 11:00:53 +02001134
Joerg Roedelea61cdd2011-06-09 12:56:30 +02001135 build_inv_iotlb_pages(&cmd, dev_data->devid, qdep, address, size);
Joerg Roedelcb41ed82011-04-05 11:00:53 +02001136
1137 return iommu_queue_command(iommu, &cmd);
1138}
1139
1140/*
Joerg Roedel431b2a22008-07-11 17:14:22 +02001141 * Command send function for invalidating a device table entry
1142 */
Joerg Roedel6c542042011-06-09 17:07:31 +02001143static int device_flush_dte(struct iommu_dev_data *dev_data)
Joerg Roedel3fa43652009-11-26 15:04:38 +01001144{
1145 struct amd_iommu *iommu;
Joerg Roedele25bfb52015-10-20 17:33:38 +02001146 u16 alias;
Joerg Roedelcb41ed82011-04-05 11:00:53 +02001147 int ret;
Joerg Roedel3fa43652009-11-26 15:04:38 +01001148
Joerg Roedel6c542042011-06-09 17:07:31 +02001149 iommu = amd_iommu_rlookup_table[dev_data->devid];
Joerg Roedele3156042016-04-08 15:12:24 +02001150 alias = dev_data->alias;
Joerg Roedel3fa43652009-11-26 15:04:38 +01001151
Joerg Roedelf62dda62011-06-09 12:55:35 +02001152 ret = iommu_flush_dte(iommu, dev_data->devid);
Joerg Roedele25bfb52015-10-20 17:33:38 +02001153 if (!ret && alias != dev_data->devid)
1154 ret = iommu_flush_dte(iommu, alias);
Joerg Roedelcb41ed82011-04-05 11:00:53 +02001155 if (ret)
1156 return ret;
1157
Joerg Roedelea61cdd2011-06-09 12:56:30 +02001158 if (dev_data->ats.enabled)
Joerg Roedel6c542042011-06-09 17:07:31 +02001159 ret = device_flush_iotlb(dev_data, 0, ~0UL);
Joerg Roedelcb41ed82011-04-05 11:00:53 +02001160
1161 return ret;
Joerg Roedel3fa43652009-11-26 15:04:38 +01001162}
1163
Joerg Roedel431b2a22008-07-11 17:14:22 +02001164/*
1165 * TLB invalidation function which is called from the mapping functions.
1166 * It invalidates a single PTE if the range to flush is within a single
1167 * page. Otherwise it flushes the whole TLB of the IOMMU.
1168 */
Joerg Roedel17b124b2011-04-06 18:01:35 +02001169static void __domain_flush_pages(struct protection_domain *domain,
1170 u64 address, size_t size, int pde)
Joerg Roedela19ae1e2008-06-26 21:27:55 +02001171{
Joerg Roedelcb41ed82011-04-05 11:00:53 +02001172 struct iommu_dev_data *dev_data;
Joerg Roedel11b64022011-04-06 11:49:28 +02001173 struct iommu_cmd cmd;
1174 int ret = 0, i;
Joerg Roedela19ae1e2008-06-26 21:27:55 +02001175
Joerg Roedel11b64022011-04-06 11:49:28 +02001176 build_inv_iommu_pages(&cmd, address, size, domain->id, pde);
Joerg Roedel999ba412008-07-03 19:35:08 +02001177
Joerg Roedel6de8ad92009-11-23 18:30:32 +01001178 for (i = 0; i < amd_iommus_present; ++i) {
1179 if (!domain->dev_iommu[i])
1180 continue;
1181
1182 /*
1183 * Devices of this domain are behind this IOMMU
1184 * We need a TLB flush
1185 */
Joerg Roedel11b64022011-04-06 11:49:28 +02001186 ret |= iommu_queue_command(amd_iommus[i], &cmd);
Joerg Roedel6de8ad92009-11-23 18:30:32 +01001187 }
1188
Joerg Roedelcb41ed82011-04-05 11:00:53 +02001189 list_for_each_entry(dev_data, &domain->dev_list, list) {
Joerg Roedelcb41ed82011-04-05 11:00:53 +02001190
Joerg Roedelea61cdd2011-06-09 12:56:30 +02001191 if (!dev_data->ats.enabled)
Joerg Roedelcb41ed82011-04-05 11:00:53 +02001192 continue;
1193
Joerg Roedel6c542042011-06-09 17:07:31 +02001194 ret |= device_flush_iotlb(dev_data, address, size);
Joerg Roedelcb41ed82011-04-05 11:00:53 +02001195 }
1196
Joerg Roedel11b64022011-04-06 11:49:28 +02001197 WARN_ON(ret);
Joerg Roedel6de8ad92009-11-23 18:30:32 +01001198}
1199
Joerg Roedel17b124b2011-04-06 18:01:35 +02001200static void domain_flush_pages(struct protection_domain *domain,
1201 u64 address, size_t size)
Joerg Roedel6de8ad92009-11-23 18:30:32 +01001202{
Joerg Roedel17b124b2011-04-06 18:01:35 +02001203 __domain_flush_pages(domain, address, size, 0);
Joerg Roedela19ae1e2008-06-26 21:27:55 +02001204}
Joerg Roedelb6c02712008-06-26 21:27:53 +02001205
Joerg Roedel1c655772008-09-04 18:40:05 +02001206/* Flush the whole IO/TLB for a given protection domain */
Joerg Roedel17b124b2011-04-06 18:01:35 +02001207static void domain_flush_tlb(struct protection_domain *domain)
Joerg Roedel1c655772008-09-04 18:40:05 +02001208{
Joerg Roedel17b124b2011-04-06 18:01:35 +02001209 __domain_flush_pages(domain, 0, CMD_INV_IOMMU_ALL_PAGES_ADDRESS, 0);
Joerg Roedel1c655772008-09-04 18:40:05 +02001210}
1211
Chris Wright42a49f92009-06-15 15:42:00 +02001212/* Flush the whole IO/TLB for a given protection domain - including PDE */
Joerg Roedel17b124b2011-04-06 18:01:35 +02001213static void domain_flush_tlb_pde(struct protection_domain *domain)
Chris Wright42a49f92009-06-15 15:42:00 +02001214{
Joerg Roedel17b124b2011-04-06 18:01:35 +02001215 __domain_flush_pages(domain, 0, CMD_INV_IOMMU_ALL_PAGES_ADDRESS, 1);
1216}
1217
1218static void domain_flush_complete(struct protection_domain *domain)
Joerg Roedelb6c02712008-06-26 21:27:53 +02001219{
1220 int i;
1221
1222 for (i = 0; i < amd_iommus_present; ++i) {
1223 if (!domain->dev_iommu[i])
1224 continue;
1225
1226 /*
1227 * Devices of this domain are behind this IOMMU
1228 * We need to wait for completion of all commands.
1229 */
1230 iommu_completion_wait(amd_iommus[i]);
1231 }
1232}
1233
Joerg Roedelb00d3bc2009-11-26 15:35:33 +01001234
Joerg Roedel43f49602008-12-02 21:01:12 +01001235/*
Joerg Roedelb00d3bc2009-11-26 15:35:33 +01001236 * This function flushes the DTEs for all devices in domain
Joerg Roedel43f49602008-12-02 21:01:12 +01001237 */
Joerg Roedel17b124b2011-04-06 18:01:35 +02001238static void domain_flush_devices(struct protection_domain *domain)
Joerg Roedelbfd1be12009-05-05 15:33:57 +02001239{
Joerg Roedelb00d3bc2009-11-26 15:35:33 +01001240 struct iommu_dev_data *dev_data;
Joerg Roedelb00d3bc2009-11-26 15:35:33 +01001241
1242 list_for_each_entry(dev_data, &domain->dev_list, list)
Joerg Roedel6c542042011-06-09 17:07:31 +02001243 device_flush_dte(dev_data);
Joerg Roedelb00d3bc2009-11-26 15:35:33 +01001244}
1245
Joerg Roedel431b2a22008-07-11 17:14:22 +02001246/****************************************************************************
1247 *
1248 * The functions below are used the create the page table mappings for
1249 * unity mapped regions.
1250 *
1251 ****************************************************************************/
1252
1253/*
Joerg Roedel308973d2009-11-24 17:43:32 +01001254 * This function is used to add another level to an IO page table. Adding
1255 * another level increases the size of the address space by 9 bits to a size up
1256 * to 64 bits.
1257 */
1258static bool increase_address_space(struct protection_domain *domain,
1259 gfp_t gfp)
1260{
1261 u64 *pte;
1262
1263 if (domain->mode == PAGE_MODE_6_LEVEL)
1264 /* address space already 64 bit large */
1265 return false;
1266
1267 pte = (void *)get_zeroed_page(gfp);
1268 if (!pte)
1269 return false;
1270
1271 *pte = PM_LEVEL_PDE(domain->mode,
1272 virt_to_phys(domain->pt_root));
1273 domain->pt_root = pte;
1274 domain->mode += 1;
1275 domain->updated = true;
1276
1277 return true;
1278}
1279
1280static u64 *alloc_pte(struct protection_domain *domain,
1281 unsigned long address,
Joerg Roedelcbb9d722010-01-15 14:41:15 +01001282 unsigned long page_size,
Joerg Roedel308973d2009-11-24 17:43:32 +01001283 u64 **pte_page,
1284 gfp_t gfp)
1285{
Joerg Roedelcbb9d722010-01-15 14:41:15 +01001286 int level, end_lvl;
Joerg Roedel308973d2009-11-24 17:43:32 +01001287 u64 *pte, *page;
Joerg Roedelcbb9d722010-01-15 14:41:15 +01001288
1289 BUG_ON(!is_power_of_2(page_size));
Joerg Roedel308973d2009-11-24 17:43:32 +01001290
1291 while (address > PM_LEVEL_SIZE(domain->mode))
1292 increase_address_space(domain, gfp);
1293
Joerg Roedelcbb9d722010-01-15 14:41:15 +01001294 level = domain->mode - 1;
1295 pte = &domain->pt_root[PM_LEVEL_INDEX(level, address)];
1296 address = PAGE_SIZE_ALIGN(address, page_size);
1297 end_lvl = PAGE_SIZE_LEVEL(page_size);
Joerg Roedel308973d2009-11-24 17:43:32 +01001298
1299 while (level > end_lvl) {
Joerg Roedel7bfa5bd2015-12-21 19:07:50 +01001300 u64 __pte, __npte;
1301
1302 __pte = *pte;
1303
1304 if (!IOMMU_PTE_PRESENT(__pte)) {
Joerg Roedel308973d2009-11-24 17:43:32 +01001305 page = (u64 *)get_zeroed_page(gfp);
1306 if (!page)
1307 return NULL;
Joerg Roedel7bfa5bd2015-12-21 19:07:50 +01001308
1309 __npte = PM_LEVEL_PDE(level, virt_to_phys(page));
1310
1311 if (cmpxchg64(pte, __pte, __npte)) {
1312 free_page((unsigned long)page);
1313 continue;
1314 }
Joerg Roedel308973d2009-11-24 17:43:32 +01001315 }
1316
Joerg Roedelcbb9d722010-01-15 14:41:15 +01001317 /* No level skipping support yet */
1318 if (PM_PTE_LEVEL(*pte) != level)
1319 return NULL;
1320
Joerg Roedel308973d2009-11-24 17:43:32 +01001321 level -= 1;
1322
1323 pte = IOMMU_PTE_PAGE(*pte);
1324
1325 if (pte_page && level == end_lvl)
1326 *pte_page = pte;
1327
1328 pte = &pte[PM_LEVEL_INDEX(level, address)];
1329 }
1330
1331 return pte;
1332}
1333
1334/*
1335 * This function checks if there is a PTE for a given dma address. If
1336 * there is one, it returns the pointer to it.
1337 */
Joerg Roedel3039ca12015-04-01 14:58:48 +02001338static u64 *fetch_pte(struct protection_domain *domain,
1339 unsigned long address,
1340 unsigned long *page_size)
Joerg Roedel308973d2009-11-24 17:43:32 +01001341{
1342 int level;
1343 u64 *pte;
1344
Joerg Roedel24cd7722010-01-19 17:27:39 +01001345 if (address > PM_LEVEL_SIZE(domain->mode))
1346 return NULL;
Joerg Roedel308973d2009-11-24 17:43:32 +01001347
Joerg Roedel3039ca12015-04-01 14:58:48 +02001348 level = domain->mode - 1;
1349 pte = &domain->pt_root[PM_LEVEL_INDEX(level, address)];
1350 *page_size = PTE_LEVEL_PAGE_SIZE(level);
Joerg Roedel24cd7722010-01-19 17:27:39 +01001351
1352 while (level > 0) {
1353
1354 /* Not Present */
Joerg Roedel308973d2009-11-24 17:43:32 +01001355 if (!IOMMU_PTE_PRESENT(*pte))
1356 return NULL;
1357
Joerg Roedel24cd7722010-01-19 17:27:39 +01001358 /* Large PTE */
Joerg Roedel3039ca12015-04-01 14:58:48 +02001359 if (PM_PTE_LEVEL(*pte) == 7 ||
1360 PM_PTE_LEVEL(*pte) == 0)
1361 break;
Joerg Roedel24cd7722010-01-19 17:27:39 +01001362
1363 /* No level skipping support yet */
1364 if (PM_PTE_LEVEL(*pte) != level)
1365 return NULL;
1366
Joerg Roedel308973d2009-11-24 17:43:32 +01001367 level -= 1;
1368
Joerg Roedel24cd7722010-01-19 17:27:39 +01001369 /* Walk to the next level */
Joerg Roedel3039ca12015-04-01 14:58:48 +02001370 pte = IOMMU_PTE_PAGE(*pte);
1371 pte = &pte[PM_LEVEL_INDEX(level, address)];
1372 *page_size = PTE_LEVEL_PAGE_SIZE(level);
1373 }
1374
1375 if (PM_PTE_LEVEL(*pte) == 0x07) {
1376 unsigned long pte_mask;
1377
1378 /*
1379 * If we have a series of large PTEs, make
1380 * sure to return a pointer to the first one.
1381 */
1382 *page_size = pte_mask = PTE_PAGE_SIZE(*pte);
1383 pte_mask = ~((PAGE_SIZE_PTE_COUNT(pte_mask) << 3) - 1);
1384 pte = (u64 *)(((unsigned long)pte) & pte_mask);
Joerg Roedel308973d2009-11-24 17:43:32 +01001385 }
1386
1387 return pte;
1388}
1389
1390/*
Joerg Roedel431b2a22008-07-11 17:14:22 +02001391 * Generic mapping functions. It maps a physical address into a DMA
1392 * address space. It allocates the page table pages if necessary.
1393 * In the future it can be extended to a generic mapping function
1394 * supporting all features of AMD IOMMU page tables like level skipping
1395 * and full 64 bit address spaces.
1396 */
Joerg Roedel38e817f2008-12-02 17:27:52 +01001397static int iommu_map_page(struct protection_domain *dom,
1398 unsigned long bus_addr,
1399 unsigned long phys_addr,
Joerg Roedelabdc5eb2009-09-03 11:33:51 +02001400 int prot,
Joerg Roedelcbb9d722010-01-15 14:41:15 +01001401 unsigned long page_size)
Joerg Roedelbd0e5212008-06-26 21:27:56 +02001402{
Joerg Roedel8bda3092009-05-12 12:02:46 +02001403 u64 __pte, *pte;
Joerg Roedelcbb9d722010-01-15 14:41:15 +01001404 int i, count;
Joerg Roedelabdc5eb2009-09-03 11:33:51 +02001405
Joerg Roedeld4b03662015-04-01 14:58:52 +02001406 BUG_ON(!IS_ALIGNED(bus_addr, page_size));
1407 BUG_ON(!IS_ALIGNED(phys_addr, page_size));
1408
Joerg Roedelbad1cac2009-09-02 16:52:23 +02001409 if (!(prot & IOMMU_PROT_MASK))
Joerg Roedelbd0e5212008-06-26 21:27:56 +02001410 return -EINVAL;
1411
Joerg Roedeld4b03662015-04-01 14:58:52 +02001412 count = PAGE_SIZE_PTE_COUNT(page_size);
1413 pte = alloc_pte(dom, bus_addr, page_size, NULL, GFP_KERNEL);
Joerg Roedelbd0e5212008-06-26 21:27:56 +02001414
Maurizio Lombardi63eaa752014-09-11 12:28:03 +02001415 if (!pte)
1416 return -ENOMEM;
1417
Joerg Roedelcbb9d722010-01-15 14:41:15 +01001418 for (i = 0; i < count; ++i)
1419 if (IOMMU_PTE_PRESENT(pte[i]))
1420 return -EBUSY;
Joerg Roedelbd0e5212008-06-26 21:27:56 +02001421
Joerg Roedeld4b03662015-04-01 14:58:52 +02001422 if (count > 1) {
Joerg Roedelcbb9d722010-01-15 14:41:15 +01001423 __pte = PAGE_SIZE_PTE(phys_addr, page_size);
1424 __pte |= PM_LEVEL_ENC(7) | IOMMU_PTE_P | IOMMU_PTE_FC;
1425 } else
1426 __pte = phys_addr | IOMMU_PTE_P | IOMMU_PTE_FC;
1427
Joerg Roedelbd0e5212008-06-26 21:27:56 +02001428 if (prot & IOMMU_PROT_IR)
1429 __pte |= IOMMU_PTE_IR;
1430 if (prot & IOMMU_PROT_IW)
1431 __pte |= IOMMU_PTE_IW;
1432
Joerg Roedelcbb9d722010-01-15 14:41:15 +01001433 for (i = 0; i < count; ++i)
1434 pte[i] = __pte;
Joerg Roedelbd0e5212008-06-26 21:27:56 +02001435
Joerg Roedel04bfdd82009-09-02 16:00:23 +02001436 update_domain(dom);
1437
Joerg Roedelbd0e5212008-06-26 21:27:56 +02001438 return 0;
1439}
1440
Joerg Roedel24cd7722010-01-19 17:27:39 +01001441static unsigned long iommu_unmap_page(struct protection_domain *dom,
1442 unsigned long bus_addr,
1443 unsigned long page_size)
Joerg Roedeleb74ff62008-12-02 19:59:10 +01001444{
Joerg Roedel71b390e2015-04-01 14:58:49 +02001445 unsigned long long unmapped;
1446 unsigned long unmap_size;
Joerg Roedel24cd7722010-01-19 17:27:39 +01001447 u64 *pte;
Joerg Roedeleb74ff62008-12-02 19:59:10 +01001448
Joerg Roedel24cd7722010-01-19 17:27:39 +01001449 BUG_ON(!is_power_of_2(page_size));
1450
1451 unmapped = 0;
1452
1453 while (unmapped < page_size) {
1454
Joerg Roedel71b390e2015-04-01 14:58:49 +02001455 pte = fetch_pte(dom, bus_addr, &unmap_size);
Joerg Roedel24cd7722010-01-19 17:27:39 +01001456
Joerg Roedel71b390e2015-04-01 14:58:49 +02001457 if (pte) {
1458 int i, count;
Joerg Roedel24cd7722010-01-19 17:27:39 +01001459
Joerg Roedel71b390e2015-04-01 14:58:49 +02001460 count = PAGE_SIZE_PTE_COUNT(unmap_size);
Joerg Roedel24cd7722010-01-19 17:27:39 +01001461 for (i = 0; i < count; i++)
1462 pte[i] = 0ULL;
1463 }
1464
1465 bus_addr = (bus_addr & ~(unmap_size - 1)) + unmap_size;
1466 unmapped += unmap_size;
1467 }
1468
Alex Williamson60d0ca32013-06-21 14:33:19 -06001469 BUG_ON(unmapped && !is_power_of_2(unmapped));
Joerg Roedel24cd7722010-01-19 17:27:39 +01001470
1471 return unmapped;
Joerg Roedeleb74ff62008-12-02 19:59:10 +01001472}
Joerg Roedeleb74ff62008-12-02 19:59:10 +01001473
Joerg Roedel431b2a22008-07-11 17:14:22 +02001474/****************************************************************************
1475 *
1476 * The next functions belong to the address allocator for the dma_ops
1477 * interface functions. They work like the allocators in the other IOMMU
1478 * drivers. Its basically a bitmap which marks the allocated pages in
1479 * the aperture. Maybe it could be enhanced in the future to a more
1480 * efficient allocator.
1481 *
1482 ****************************************************************************/
Joerg Roedeld3086442008-06-26 21:27:57 +02001483
Joerg Roedel431b2a22008-07-11 17:14:22 +02001484/*
Joerg Roedel384de722009-05-15 12:30:05 +02001485 * The address allocator core functions.
Joerg Roedel431b2a22008-07-11 17:14:22 +02001486 *
1487 * called with domain->lock held
1488 */
Joerg Roedel384de722009-05-15 12:30:05 +02001489
Joerg Roedel9cabe892009-05-18 16:38:55 +02001490/*
Joerg Roedel171e7b32009-11-24 17:47:56 +01001491 * Used to reserve address ranges in the aperture (e.g. for exclusion
1492 * ranges.
1493 */
1494static void dma_ops_reserve_addresses(struct dma_ops_domain *dom,
1495 unsigned long start_page,
1496 unsigned int pages)
1497{
1498 unsigned int i, last_page = dom->aperture_size >> PAGE_SHIFT;
1499
1500 if (start_page + pages > last_page)
1501 pages = last_page - start_page;
1502
1503 for (i = start_page; i < start_page + pages; ++i) {
1504 int index = i / APERTURE_RANGE_PAGES;
1505 int page = i % APERTURE_RANGE_PAGES;
1506 __set_bit(page, dom->aperture[index]->bitmap);
1507 }
1508}
1509
1510/*
Joerg Roedel9cabe892009-05-18 16:38:55 +02001511 * This function is used to add a new aperture range to an existing
1512 * aperture in case of dma_ops domain allocation or address allocation
1513 * failure.
1514 */
Joerg Roedel576175c2009-11-23 19:08:46 +01001515static int alloc_new_range(struct dma_ops_domain *dma_dom,
Joerg Roedel9cabe892009-05-18 16:38:55 +02001516 bool populate, gfp_t gfp)
1517{
1518 int index = dma_dom->aperture_size >> APERTURE_RANGE_SHIFT;
Joerg Roedel5d7c94c2015-04-01 14:58:50 +02001519 unsigned long i, old_size, pte_pgsize;
Joerg Roedela73c1562015-12-21 19:25:56 +01001520 struct aperture_range *range;
1521 struct amd_iommu *iommu;
1522 unsigned long flags;
Joerg Roedel9cabe892009-05-18 16:38:55 +02001523
Joerg Roedelf5e97052009-05-22 12:31:53 +02001524#ifdef CONFIG_IOMMU_STRESS
1525 populate = false;
1526#endif
1527
Joerg Roedel9cabe892009-05-18 16:38:55 +02001528 if (index >= APERTURE_MAX_RANGES)
1529 return -ENOMEM;
1530
Joerg Roedela73c1562015-12-21 19:25:56 +01001531 range = kzalloc(sizeof(struct aperture_range), gfp);
1532 if (!range)
Joerg Roedel9cabe892009-05-18 16:38:55 +02001533 return -ENOMEM;
1534
Joerg Roedela73c1562015-12-21 19:25:56 +01001535 range->bitmap = (void *)get_zeroed_page(gfp);
1536 if (!range->bitmap)
Joerg Roedel9cabe892009-05-18 16:38:55 +02001537 goto out_free;
1538
Joerg Roedela73c1562015-12-21 19:25:56 +01001539 range->offset = dma_dom->aperture_size;
Joerg Roedel9cabe892009-05-18 16:38:55 +02001540
Joerg Roedela73c1562015-12-21 19:25:56 +01001541 spin_lock_init(&range->bitmap_lock);
Joerg Roedel08c5fb92015-12-21 13:04:49 +01001542
Joerg Roedel9cabe892009-05-18 16:38:55 +02001543 if (populate) {
1544 unsigned long address = dma_dom->aperture_size;
1545 int i, num_ptes = APERTURE_RANGE_PAGES / 512;
1546 u64 *pte, *pte_page;
1547
1548 for (i = 0; i < num_ptes; ++i) {
Joerg Roedelcbb9d722010-01-15 14:41:15 +01001549 pte = alloc_pte(&dma_dom->domain, address, PAGE_SIZE,
Joerg Roedel9cabe892009-05-18 16:38:55 +02001550 &pte_page, gfp);
1551 if (!pte)
1552 goto out_free;
1553
Joerg Roedela73c1562015-12-21 19:25:56 +01001554 range->pte_pages[i] = pte_page;
Joerg Roedel9cabe892009-05-18 16:38:55 +02001555
1556 address += APERTURE_RANGE_SIZE / 64;
1557 }
1558 }
1559
Joerg Roedel92d420e2015-12-21 19:31:33 +01001560 spin_lock_irqsave(&dma_dom->domain.lock, flags);
1561
Joerg Roedela73c1562015-12-21 19:25:56 +01001562 /* First take the bitmap_lock and then publish the range */
Joerg Roedel92d420e2015-12-21 19:31:33 +01001563 spin_lock(&range->bitmap_lock);
Joerg Roedela73c1562015-12-21 19:25:56 +01001564
1565 old_size = dma_dom->aperture_size;
1566 dma_dom->aperture[index] = range;
1567 dma_dom->aperture_size += APERTURE_RANGE_SIZE;
Joerg Roedel9cabe892009-05-18 16:38:55 +02001568
Joerg Roedel17f5b562011-07-06 17:14:44 +02001569 /* Reserve address range used for MSI messages */
1570 if (old_size < MSI_ADDR_BASE_LO &&
1571 dma_dom->aperture_size > MSI_ADDR_BASE_LO) {
1572 unsigned long spage;
1573 int pages;
1574
1575 pages = iommu_num_pages(MSI_ADDR_BASE_LO, 0x10000, PAGE_SIZE);
1576 spage = MSI_ADDR_BASE_LO >> PAGE_SHIFT;
1577
1578 dma_ops_reserve_addresses(dma_dom, spage, pages);
1579 }
1580
Uwe Kleine-Königb5950762010-11-01 15:38:34 -04001581 /* Initialize the exclusion range if necessary */
Joerg Roedel576175c2009-11-23 19:08:46 +01001582 for_each_iommu(iommu) {
1583 if (iommu->exclusion_start &&
1584 iommu->exclusion_start >= dma_dom->aperture[index]->offset
1585 && iommu->exclusion_start < dma_dom->aperture_size) {
1586 unsigned long startpage;
1587 int pages = iommu_num_pages(iommu->exclusion_start,
1588 iommu->exclusion_length,
1589 PAGE_SIZE);
1590 startpage = iommu->exclusion_start >> PAGE_SHIFT;
1591 dma_ops_reserve_addresses(dma_dom, startpage, pages);
1592 }
Joerg Roedel00cd1222009-05-19 09:52:40 +02001593 }
1594
1595 /*
1596 * Check for areas already mapped as present in the new aperture
1597 * range and mark those pages as reserved in the allocator. Such
1598 * mappings may already exist as a result of requested unity
1599 * mappings for devices.
1600 */
1601 for (i = dma_dom->aperture[index]->offset;
1602 i < dma_dom->aperture_size;
Joerg Roedel5d7c94c2015-04-01 14:58:50 +02001603 i += pte_pgsize) {
Joerg Roedel3039ca12015-04-01 14:58:48 +02001604 u64 *pte = fetch_pte(&dma_dom->domain, i, &pte_pgsize);
Joerg Roedel00cd1222009-05-19 09:52:40 +02001605 if (!pte || !IOMMU_PTE_PRESENT(*pte))
1606 continue;
1607
Joerg Roedel5d7c94c2015-04-01 14:58:50 +02001608 dma_ops_reserve_addresses(dma_dom, i >> PAGE_SHIFT,
1609 pte_pgsize >> 12);
Joerg Roedel00cd1222009-05-19 09:52:40 +02001610 }
1611
Joerg Roedel04bfdd82009-09-02 16:00:23 +02001612 update_domain(&dma_dom->domain);
1613
Joerg Roedel92d420e2015-12-21 19:31:33 +01001614 spin_unlock(&range->bitmap_lock);
1615
1616 spin_unlock_irqrestore(&dma_dom->domain.lock, flags);
Joerg Roedela73c1562015-12-21 19:25:56 +01001617
Joerg Roedel9cabe892009-05-18 16:38:55 +02001618 return 0;
1619
1620out_free:
Joerg Roedel04bfdd82009-09-02 16:00:23 +02001621 update_domain(&dma_dom->domain);
1622
Joerg Roedela73c1562015-12-21 19:25:56 +01001623 free_page((unsigned long)range->bitmap);
Joerg Roedel9cabe892009-05-18 16:38:55 +02001624
Joerg Roedela73c1562015-12-21 19:25:56 +01001625 kfree(range);
Joerg Roedel9cabe892009-05-18 16:38:55 +02001626
1627 return -ENOMEM;
1628}
1629
Joerg Roedelccb50e02015-12-21 17:49:34 +01001630static dma_addr_t dma_ops_aperture_alloc(struct dma_ops_domain *dom,
1631 struct aperture_range *range,
Joerg Roedela0f51442015-12-21 16:20:09 +01001632 unsigned long pages,
Joerg Roedela0f51442015-12-21 16:20:09 +01001633 unsigned long dma_mask,
1634 unsigned long boundary_size,
Joerg Roedel7b5e25b2015-12-22 13:38:12 +01001635 unsigned long align_mask,
1636 bool trylock)
Joerg Roedela0f51442015-12-21 16:20:09 +01001637{
1638 unsigned long offset, limit, flags;
1639 dma_addr_t address;
Joerg Roedelccb50e02015-12-21 17:49:34 +01001640 bool flush = false;
Joerg Roedela0f51442015-12-21 16:20:09 +01001641
1642 offset = range->offset >> PAGE_SHIFT;
1643 limit = iommu_device_max_index(APERTURE_RANGE_PAGES, offset,
1644 dma_mask >> PAGE_SHIFT);
1645
Joerg Roedel7b5e25b2015-12-22 13:38:12 +01001646 if (trylock) {
1647 if (!spin_trylock_irqsave(&range->bitmap_lock, flags))
1648 return -1;
1649 } else {
1650 spin_lock_irqsave(&range->bitmap_lock, flags);
1651 }
1652
Joerg Roedel60e6a7c2015-12-21 16:53:17 +01001653 address = iommu_area_alloc(range->bitmap, limit, range->next_bit,
1654 pages, offset, boundary_size, align_mask);
Joerg Roedelccb50e02015-12-21 17:49:34 +01001655 if (address == -1) {
Joerg Roedel60e6a7c2015-12-21 16:53:17 +01001656 /* Nothing found, retry one time */
1657 address = iommu_area_alloc(range->bitmap, limit,
1658 0, pages, offset, boundary_size,
1659 align_mask);
Joerg Roedelccb50e02015-12-21 17:49:34 +01001660 flush = true;
1661 }
Joerg Roedel60e6a7c2015-12-21 16:53:17 +01001662
1663 if (address != -1)
1664 range->next_bit = address + pages;
1665
Joerg Roedela0f51442015-12-21 16:20:09 +01001666 spin_unlock_irqrestore(&range->bitmap_lock, flags);
1667
Joerg Roedelccb50e02015-12-21 17:49:34 +01001668 if (flush) {
1669 domain_flush_tlb(&dom->domain);
1670 domain_flush_complete(&dom->domain);
1671 }
1672
Joerg Roedela0f51442015-12-21 16:20:09 +01001673 return address;
1674}
1675
Joerg Roedel384de722009-05-15 12:30:05 +02001676static unsigned long dma_ops_area_alloc(struct device *dev,
1677 struct dma_ops_domain *dom,
1678 unsigned int pages,
1679 unsigned long align_mask,
Joerg Roedel05ab49e2015-12-21 17:58:26 +01001680 u64 dma_mask)
Joerg Roedel384de722009-05-15 12:30:05 +02001681{
Joerg Roedelab7032b2015-12-21 18:47:11 +01001682 unsigned long boundary_size, mask;
Joerg Roedel384de722009-05-15 12:30:05 +02001683 unsigned long address = -1;
Joerg Roedel7b5e25b2015-12-22 13:38:12 +01001684 bool first = true;
Joerg Roedel5f6bed52015-12-22 13:34:22 +01001685 u32 start, i;
1686
1687 preempt_disable();
Joerg Roedel384de722009-05-15 12:30:05 +02001688
Joerg Roedele6aabee2015-05-27 09:26:09 +02001689 mask = dma_get_seg_boundary(dev);
1690
Joerg Roedel7b5e25b2015-12-22 13:38:12 +01001691again:
Joerg Roedel5f6bed52015-12-22 13:34:22 +01001692 start = this_cpu_read(*dom->next_index);
1693
1694 /* Sanity check - is it really necessary? */
1695 if (unlikely(start > APERTURE_MAX_RANGES)) {
1696 start = 0;
1697 this_cpu_write(*dom->next_index, 0);
1698 }
1699
Joerg Roedele6aabee2015-05-27 09:26:09 +02001700 boundary_size = mask + 1 ? ALIGN(mask + 1, PAGE_SIZE) >> PAGE_SHIFT :
1701 1UL << (BITS_PER_LONG - PAGE_SHIFT);
Joerg Roedel384de722009-05-15 12:30:05 +02001702
Joerg Roedel2a874422015-12-21 18:34:47 +01001703 for (i = 0; i < APERTURE_MAX_RANGES; ++i) {
1704 struct aperture_range *range;
Joerg Roedel5f6bed52015-12-22 13:34:22 +01001705 int index;
Joerg Roedelccb50e02015-12-21 17:49:34 +01001706
Joerg Roedel5f6bed52015-12-22 13:34:22 +01001707 index = (start + i) % APERTURE_MAX_RANGES;
1708
1709 range = dom->aperture[index];
Joerg Roedel2a874422015-12-21 18:34:47 +01001710
1711 if (!range || range->offset >= dma_mask)
1712 continue;
Joerg Roedel384de722009-05-15 12:30:05 +02001713
Joerg Roedel2a874422015-12-21 18:34:47 +01001714 address = dma_ops_aperture_alloc(dom, range, pages,
Joerg Roedel60e6a7c2015-12-21 16:53:17 +01001715 dma_mask, boundary_size,
Joerg Roedel7b5e25b2015-12-22 13:38:12 +01001716 align_mask, first);
Joerg Roedel384de722009-05-15 12:30:05 +02001717 if (address != -1) {
Joerg Roedel2a874422015-12-21 18:34:47 +01001718 address = range->offset + (address << PAGE_SHIFT);
Joerg Roedel5f6bed52015-12-22 13:34:22 +01001719 this_cpu_write(*dom->next_index, index);
Joerg Roedel384de722009-05-15 12:30:05 +02001720 break;
1721 }
Joerg Roedel384de722009-05-15 12:30:05 +02001722 }
1723
Joerg Roedel7b5e25b2015-12-22 13:38:12 +01001724 if (address == -1 && first) {
1725 first = false;
1726 goto again;
1727 }
1728
Joerg Roedel5f6bed52015-12-22 13:34:22 +01001729 preempt_enable();
1730
Joerg Roedel384de722009-05-15 12:30:05 +02001731 return address;
1732}
1733
Joerg Roedeld3086442008-06-26 21:27:57 +02001734static unsigned long dma_ops_alloc_addresses(struct device *dev,
1735 struct dma_ops_domain *dom,
Joerg Roedel6d4f3432008-09-04 19:18:02 +02001736 unsigned int pages,
Joerg Roedel832a90c2008-09-18 15:54:23 +02001737 unsigned long align_mask,
1738 u64 dma_mask)
Joerg Roedeld3086442008-06-26 21:27:57 +02001739{
Joerg Roedel266a3bd2015-12-21 18:54:24 +01001740 unsigned long address = -1;
Joerg Roedeld3086442008-06-26 21:27:57 +02001741
Joerg Roedel266a3bd2015-12-21 18:54:24 +01001742 while (address == -1) {
1743 address = dma_ops_area_alloc(dev, dom, pages,
1744 align_mask, dma_mask);
1745
Joerg Roedel7bfa5bd2015-12-21 19:07:50 +01001746 if (address == -1 && alloc_new_range(dom, false, GFP_ATOMIC))
Joerg Roedel266a3bd2015-12-21 18:54:24 +01001747 break;
1748 }
Joerg Roedeld3086442008-06-26 21:27:57 +02001749
Joerg Roedel384de722009-05-15 12:30:05 +02001750 if (unlikely(address == -1))
FUJITA Tomonori8fd524b2009-11-15 21:19:53 +09001751 address = DMA_ERROR_CODE;
Joerg Roedeld3086442008-06-26 21:27:57 +02001752
1753 WARN_ON((address + (PAGE_SIZE*pages)) > dom->aperture_size);
1754
1755 return address;
1756}
1757
Joerg Roedel431b2a22008-07-11 17:14:22 +02001758/*
1759 * The address free function.
1760 *
1761 * called with domain->lock held
1762 */
Joerg Roedeld3086442008-06-26 21:27:57 +02001763static void dma_ops_free_addresses(struct dma_ops_domain *dom,
1764 unsigned long address,
1765 unsigned int pages)
1766{
Joerg Roedel384de722009-05-15 12:30:05 +02001767 unsigned i = address >> APERTURE_RANGE_SHIFT;
1768 struct aperture_range *range = dom->aperture[i];
Joerg Roedel08c5fb92015-12-21 13:04:49 +01001769 unsigned long flags;
Joerg Roedel80be3082008-11-06 14:59:05 +01001770
Joerg Roedel384de722009-05-15 12:30:05 +02001771 BUG_ON(i >= APERTURE_MAX_RANGES || range == NULL);
1772
Joerg Roedel47bccd62009-05-22 12:40:54 +02001773#ifdef CONFIG_IOMMU_STRESS
1774 if (i < 4)
1775 return;
1776#endif
1777
Joerg Roedel4eeca8c2015-12-22 12:15:35 +01001778 if (amd_iommu_unmap_flush) {
Joerg Roedeld41ab092015-12-21 18:20:03 +01001779 domain_flush_tlb(&dom->domain);
1780 domain_flush_complete(&dom->domain);
1781 }
Joerg Roedel384de722009-05-15 12:30:05 +02001782
1783 address = (address % APERTURE_RANGE_SIZE) >> PAGE_SHIFT;
Joerg Roedel803b8cb2009-05-18 15:32:48 +02001784
Joerg Roedel08c5fb92015-12-21 13:04:49 +01001785 spin_lock_irqsave(&range->bitmap_lock, flags);
Joerg Roedel4eeca8c2015-12-22 12:15:35 +01001786 if (address + pages > range->next_bit)
1787 range->next_bit = address + pages;
Akinobu Mitaa66022c2009-12-15 16:48:28 -08001788 bitmap_clear(range->bitmap, address, pages);
Joerg Roedel08c5fb92015-12-21 13:04:49 +01001789 spin_unlock_irqrestore(&range->bitmap_lock, flags);
Joerg Roedel384de722009-05-15 12:30:05 +02001790
Joerg Roedeld3086442008-06-26 21:27:57 +02001791}
1792
Joerg Roedel431b2a22008-07-11 17:14:22 +02001793/****************************************************************************
1794 *
1795 * The next functions belong to the domain allocation. A domain is
1796 * allocated for every IOMMU as the default domain. If device isolation
1797 * is enabled, every device get its own domain. The most important thing
1798 * about domains is the page table mapping the DMA address space they
1799 * contain.
1800 *
1801 ****************************************************************************/
1802
Joerg Roedelaeb26f52009-11-20 16:44:01 +01001803/*
1804 * This function adds a protection domain to the global protection domain list
1805 */
1806static void add_domain_to_list(struct protection_domain *domain)
1807{
1808 unsigned long flags;
1809
1810 spin_lock_irqsave(&amd_iommu_pd_lock, flags);
1811 list_add(&domain->list, &amd_iommu_pd_list);
1812 spin_unlock_irqrestore(&amd_iommu_pd_lock, flags);
1813}
1814
1815/*
1816 * This function removes a protection domain to the global
1817 * protection domain list
1818 */
1819static void del_domain_from_list(struct protection_domain *domain)
1820{
1821 unsigned long flags;
1822
1823 spin_lock_irqsave(&amd_iommu_pd_lock, flags);
1824 list_del(&domain->list);
1825 spin_unlock_irqrestore(&amd_iommu_pd_lock, flags);
1826}
1827
Joerg Roedelec487d12008-06-26 21:27:58 +02001828static u16 domain_id_alloc(void)
1829{
1830 unsigned long flags;
1831 int id;
1832
1833 write_lock_irqsave(&amd_iommu_devtable_lock, flags);
1834 id = find_first_zero_bit(amd_iommu_pd_alloc_bitmap, MAX_DOMAIN_ID);
1835 BUG_ON(id == 0);
1836 if (id > 0 && id < MAX_DOMAIN_ID)
1837 __set_bit(id, amd_iommu_pd_alloc_bitmap);
1838 else
1839 id = 0;
1840 write_unlock_irqrestore(&amd_iommu_devtable_lock, flags);
1841
1842 return id;
1843}
1844
Joerg Roedela2acfb72008-12-02 18:28:53 +01001845static void domain_id_free(int id)
1846{
1847 unsigned long flags;
1848
1849 write_lock_irqsave(&amd_iommu_devtable_lock, flags);
1850 if (id > 0 && id < MAX_DOMAIN_ID)
1851 __clear_bit(id, amd_iommu_pd_alloc_bitmap);
1852 write_unlock_irqrestore(&amd_iommu_devtable_lock, flags);
1853}
Joerg Roedela2acfb72008-12-02 18:28:53 +01001854
Joerg Roedel5c34c402013-06-20 20:22:58 +02001855#define DEFINE_FREE_PT_FN(LVL, FN) \
1856static void free_pt_##LVL (unsigned long __pt) \
1857{ \
1858 unsigned long p; \
1859 u64 *pt; \
1860 int i; \
1861 \
1862 pt = (u64 *)__pt; \
1863 \
1864 for (i = 0; i < 512; ++i) { \
Joerg Roedel0b3fff52015-06-18 10:48:34 +02001865 /* PTE present? */ \
Joerg Roedel5c34c402013-06-20 20:22:58 +02001866 if (!IOMMU_PTE_PRESENT(pt[i])) \
1867 continue; \
1868 \
Joerg Roedel0b3fff52015-06-18 10:48:34 +02001869 /* Large PTE? */ \
1870 if (PM_PTE_LEVEL(pt[i]) == 0 || \
1871 PM_PTE_LEVEL(pt[i]) == 7) \
1872 continue; \
1873 \
Joerg Roedel5c34c402013-06-20 20:22:58 +02001874 p = (unsigned long)IOMMU_PTE_PAGE(pt[i]); \
1875 FN(p); \
1876 } \
1877 free_page((unsigned long)pt); \
1878}
1879
1880DEFINE_FREE_PT_FN(l2, free_page)
1881DEFINE_FREE_PT_FN(l3, free_pt_l2)
1882DEFINE_FREE_PT_FN(l4, free_pt_l3)
1883DEFINE_FREE_PT_FN(l5, free_pt_l4)
1884DEFINE_FREE_PT_FN(l6, free_pt_l5)
1885
Joerg Roedel86db2e52008-12-02 18:20:21 +01001886static void free_pagetable(struct protection_domain *domain)
Joerg Roedelec487d12008-06-26 21:27:58 +02001887{
Joerg Roedel5c34c402013-06-20 20:22:58 +02001888 unsigned long root = (unsigned long)domain->pt_root;
Joerg Roedelec487d12008-06-26 21:27:58 +02001889
Joerg Roedel5c34c402013-06-20 20:22:58 +02001890 switch (domain->mode) {
1891 case PAGE_MODE_NONE:
1892 break;
1893 case PAGE_MODE_1_LEVEL:
1894 free_page(root);
1895 break;
1896 case PAGE_MODE_2_LEVEL:
1897 free_pt_l2(root);
1898 break;
1899 case PAGE_MODE_3_LEVEL:
1900 free_pt_l3(root);
1901 break;
1902 case PAGE_MODE_4_LEVEL:
1903 free_pt_l4(root);
1904 break;
1905 case PAGE_MODE_5_LEVEL:
1906 free_pt_l5(root);
1907 break;
1908 case PAGE_MODE_6_LEVEL:
1909 free_pt_l6(root);
1910 break;
1911 default:
1912 BUG();
Joerg Roedelec487d12008-06-26 21:27:58 +02001913 }
Joerg Roedelec487d12008-06-26 21:27:58 +02001914}
1915
Joerg Roedelb16137b2011-11-21 16:50:23 +01001916static void free_gcr3_tbl_level1(u64 *tbl)
1917{
1918 u64 *ptr;
1919 int i;
1920
1921 for (i = 0; i < 512; ++i) {
1922 if (!(tbl[i] & GCR3_VALID))
1923 continue;
1924
1925 ptr = __va(tbl[i] & PAGE_MASK);
1926
1927 free_page((unsigned long)ptr);
1928 }
1929}
1930
1931static void free_gcr3_tbl_level2(u64 *tbl)
1932{
1933 u64 *ptr;
1934 int i;
1935
1936 for (i = 0; i < 512; ++i) {
1937 if (!(tbl[i] & GCR3_VALID))
1938 continue;
1939
1940 ptr = __va(tbl[i] & PAGE_MASK);
1941
1942 free_gcr3_tbl_level1(ptr);
1943 }
1944}
1945
Joerg Roedel52815b72011-11-17 17:24:28 +01001946static void free_gcr3_table(struct protection_domain *domain)
1947{
Joerg Roedelb16137b2011-11-21 16:50:23 +01001948 if (domain->glx == 2)
1949 free_gcr3_tbl_level2(domain->gcr3_tbl);
1950 else if (domain->glx == 1)
1951 free_gcr3_tbl_level1(domain->gcr3_tbl);
Joerg Roedel23d3a982015-08-13 11:15:13 +02001952 else
1953 BUG_ON(domain->glx != 0);
Joerg Roedelb16137b2011-11-21 16:50:23 +01001954
Joerg Roedel52815b72011-11-17 17:24:28 +01001955 free_page((unsigned long)domain->gcr3_tbl);
1956}
1957
Joerg Roedel431b2a22008-07-11 17:14:22 +02001958/*
1959 * Free a domain, only used if something went wrong in the
1960 * allocation path and we need to free an already allocated page table
1961 */
Joerg Roedelec487d12008-06-26 21:27:58 +02001962static void dma_ops_domain_free(struct dma_ops_domain *dom)
1963{
Joerg Roedel384de722009-05-15 12:30:05 +02001964 int i;
1965
Joerg Roedelec487d12008-06-26 21:27:58 +02001966 if (!dom)
1967 return;
1968
Joerg Roedel5f6bed52015-12-22 13:34:22 +01001969 free_percpu(dom->next_index);
1970
Joerg Roedelaeb26f52009-11-20 16:44:01 +01001971 del_domain_from_list(&dom->domain);
1972
Joerg Roedel86db2e52008-12-02 18:20:21 +01001973 free_pagetable(&dom->domain);
Joerg Roedelec487d12008-06-26 21:27:58 +02001974
Joerg Roedel384de722009-05-15 12:30:05 +02001975 for (i = 0; i < APERTURE_MAX_RANGES; ++i) {
1976 if (!dom->aperture[i])
1977 continue;
1978 free_page((unsigned long)dom->aperture[i]->bitmap);
1979 kfree(dom->aperture[i]);
1980 }
Joerg Roedelec487d12008-06-26 21:27:58 +02001981
1982 kfree(dom);
1983}
1984
Joerg Roedela639a8e2015-12-22 16:06:49 +01001985static int dma_ops_domain_alloc_apertures(struct dma_ops_domain *dma_dom,
1986 int max_apertures)
1987{
1988 int ret, i, apertures;
1989
1990 apertures = dma_dom->aperture_size >> APERTURE_RANGE_SHIFT;
1991 ret = 0;
1992
1993 for (i = apertures; i < max_apertures; ++i) {
1994 ret = alloc_new_range(dma_dom, false, GFP_KERNEL);
1995 if (ret)
1996 break;
1997 }
1998
1999 return ret;
2000}
2001
Joerg Roedel431b2a22008-07-11 17:14:22 +02002002/*
2003 * Allocates a new protection domain usable for the dma_ops functions.
Uwe Kleine-Königb5950762010-11-01 15:38:34 -04002004 * It also initializes the page table and the address allocator data
Joerg Roedel431b2a22008-07-11 17:14:22 +02002005 * structures required for the dma_ops interface
2006 */
Joerg Roedel87a64d52009-11-24 17:26:43 +01002007static struct dma_ops_domain *dma_ops_domain_alloc(void)
Joerg Roedelec487d12008-06-26 21:27:58 +02002008{
2009 struct dma_ops_domain *dma_dom;
Joerg Roedel5f6bed52015-12-22 13:34:22 +01002010 int cpu;
Joerg Roedelec487d12008-06-26 21:27:58 +02002011
2012 dma_dom = kzalloc(sizeof(struct dma_ops_domain), GFP_KERNEL);
2013 if (!dma_dom)
2014 return NULL;
2015
Joerg Roedel7a5a5662015-06-30 08:56:11 +02002016 if (protection_domain_init(&dma_dom->domain))
Joerg Roedelec487d12008-06-26 21:27:58 +02002017 goto free_dma_dom;
Joerg Roedel7a5a5662015-06-30 08:56:11 +02002018
Joerg Roedel5f6bed52015-12-22 13:34:22 +01002019 dma_dom->next_index = alloc_percpu(u32);
2020 if (!dma_dom->next_index)
2021 goto free_dma_dom;
2022
Joerg Roedel8f7a0172009-09-02 16:55:24 +02002023 dma_dom->domain.mode = PAGE_MODE_2_LEVEL;
Joerg Roedelec487d12008-06-26 21:27:58 +02002024 dma_dom->domain.pt_root = (void *)get_zeroed_page(GFP_KERNEL);
Joerg Roedel9fdb19d2008-12-02 17:46:25 +01002025 dma_dom->domain.flags = PD_DMA_OPS_MASK;
Joerg Roedelec487d12008-06-26 21:27:58 +02002026 dma_dom->domain.priv = dma_dom;
2027 if (!dma_dom->domain.pt_root)
2028 goto free_dma_dom;
Joerg Roedelec487d12008-06-26 21:27:58 +02002029
Joerg Roedelaeb26f52009-11-20 16:44:01 +01002030 add_domain_to_list(&dma_dom->domain);
2031
Joerg Roedel576175c2009-11-23 19:08:46 +01002032 if (alloc_new_range(dma_dom, true, GFP_KERNEL))
Joerg Roedelec487d12008-06-26 21:27:58 +02002033 goto free_dma_dom;
Joerg Roedelec487d12008-06-26 21:27:58 +02002034
Joerg Roedel431b2a22008-07-11 17:14:22 +02002035 /*
Joerg Roedelec487d12008-06-26 21:27:58 +02002036 * mark the first page as allocated so we never return 0 as
2037 * a valid dma-address. So we can use 0 as error value
Joerg Roedel431b2a22008-07-11 17:14:22 +02002038 */
Joerg Roedel384de722009-05-15 12:30:05 +02002039 dma_dom->aperture[0]->bitmap[0] = 1;
Joerg Roedelec487d12008-06-26 21:27:58 +02002040
Joerg Roedel5f6bed52015-12-22 13:34:22 +01002041 for_each_possible_cpu(cpu)
2042 *per_cpu_ptr(dma_dom->next_index, cpu) = 0;
Joerg Roedelec487d12008-06-26 21:27:58 +02002043
2044 return dma_dom;
2045
2046free_dma_dom:
2047 dma_ops_domain_free(dma_dom);
2048
2049 return NULL;
2050}
2051
Joerg Roedel431b2a22008-07-11 17:14:22 +02002052/*
Joerg Roedel5b28df62008-12-02 17:49:42 +01002053 * little helper function to check whether a given protection domain is a
2054 * dma_ops domain
2055 */
2056static bool dma_ops_domain(struct protection_domain *domain)
2057{
2058 return domain->flags & PD_DMA_OPS_MASK;
2059}
2060
Joerg Roedelfd7b5532011-04-05 15:31:08 +02002061static void set_dte_entry(u16 devid, struct protection_domain *domain, bool ats)
Joerg Roedelb20ac0d2008-06-26 21:27:59 +02002062{
Joerg Roedel132bd682011-11-17 14:18:46 +01002063 u64 pte_root = 0;
Joerg Roedelee6c2862011-11-09 12:06:03 +01002064 u64 flags = 0;
Joerg Roedel863c74e2008-12-02 17:56:36 +01002065
Joerg Roedel132bd682011-11-17 14:18:46 +01002066 if (domain->mode != PAGE_MODE_NONE)
2067 pte_root = virt_to_phys(domain->pt_root);
2068
Joerg Roedel38ddf412008-09-11 10:38:32 +02002069 pte_root |= (domain->mode & DEV_ENTRY_MODE_MASK)
2070 << DEV_ENTRY_MODE_SHIFT;
2071 pte_root |= IOMMU_PTE_IR | IOMMU_PTE_IW | IOMMU_PTE_P | IOMMU_PTE_TV;
Joerg Roedelb20ac0d2008-06-26 21:27:59 +02002072
Joerg Roedelee6c2862011-11-09 12:06:03 +01002073 flags = amd_iommu_dev_table[devid].data[1];
2074
Joerg Roedelfd7b5532011-04-05 15:31:08 +02002075 if (ats)
2076 flags |= DTE_FLAG_IOTLB;
2077
Joerg Roedel52815b72011-11-17 17:24:28 +01002078 if (domain->flags & PD_IOMMUV2_MASK) {
2079 u64 gcr3 = __pa(domain->gcr3_tbl);
2080 u64 glx = domain->glx;
2081 u64 tmp;
2082
2083 pte_root |= DTE_FLAG_GV;
2084 pte_root |= (glx & DTE_GLX_MASK) << DTE_GLX_SHIFT;
2085
2086 /* First mask out possible old values for GCR3 table */
2087 tmp = DTE_GCR3_VAL_B(~0ULL) << DTE_GCR3_SHIFT_B;
2088 flags &= ~tmp;
2089
2090 tmp = DTE_GCR3_VAL_C(~0ULL) << DTE_GCR3_SHIFT_C;
2091 flags &= ~tmp;
2092
2093 /* Encode GCR3 table into DTE */
2094 tmp = DTE_GCR3_VAL_A(gcr3) << DTE_GCR3_SHIFT_A;
2095 pte_root |= tmp;
2096
2097 tmp = DTE_GCR3_VAL_B(gcr3) << DTE_GCR3_SHIFT_B;
2098 flags |= tmp;
2099
2100 tmp = DTE_GCR3_VAL_C(gcr3) << DTE_GCR3_SHIFT_C;
2101 flags |= tmp;
2102 }
2103
Joerg Roedelee6c2862011-11-09 12:06:03 +01002104 flags &= ~(0xffffUL);
2105 flags |= domain->id;
2106
2107 amd_iommu_dev_table[devid].data[1] = flags;
2108 amd_iommu_dev_table[devid].data[0] = pte_root;
Joerg Roedelb20ac0d2008-06-26 21:27:59 +02002109}
2110
Joerg Roedel15898bb2009-11-24 15:39:42 +01002111static void clear_dte_entry(u16 devid)
Joerg Roedel355bf552008-12-08 12:02:41 +01002112{
Joerg Roedel355bf552008-12-08 12:02:41 +01002113 /* remove entry from the device table seen by the hardware */
Joerg Roedelcbf3ccd2015-10-20 14:59:36 +02002114 amd_iommu_dev_table[devid].data[0] = IOMMU_PTE_P | IOMMU_PTE_TV;
2115 amd_iommu_dev_table[devid].data[1] &= DTE_FLAG_MASK;
Joerg Roedel355bf552008-12-08 12:02:41 +01002116
Joerg Roedelc5cca142009-10-09 18:31:20 +02002117 amd_iommu_apply_erratum_63(devid);
Joerg Roedel7f760dd2009-11-26 14:49:59 +01002118}
2119
Joerg Roedelec9e79e2011-06-09 17:25:50 +02002120static void do_attach(struct iommu_dev_data *dev_data,
2121 struct protection_domain *domain)
Joerg Roedel7f760dd2009-11-26 14:49:59 +01002122{
Joerg Roedel7f760dd2009-11-26 14:49:59 +01002123 struct amd_iommu *iommu;
Joerg Roedele25bfb52015-10-20 17:33:38 +02002124 u16 alias;
Joerg Roedelec9e79e2011-06-09 17:25:50 +02002125 bool ats;
Joerg Roedel7f760dd2009-11-26 14:49:59 +01002126
Joerg Roedelec9e79e2011-06-09 17:25:50 +02002127 iommu = amd_iommu_rlookup_table[dev_data->devid];
Joerg Roedele3156042016-04-08 15:12:24 +02002128 alias = dev_data->alias;
Joerg Roedelec9e79e2011-06-09 17:25:50 +02002129 ats = dev_data->ats.enabled;
Joerg Roedel7f760dd2009-11-26 14:49:59 +01002130
2131 /* Update data structures */
2132 dev_data->domain = domain;
2133 list_add(&dev_data->list, &domain->dev_list);
Joerg Roedel7f760dd2009-11-26 14:49:59 +01002134
2135 /* Do reference counting */
2136 domain->dev_iommu[iommu->index] += 1;
2137 domain->dev_cnt += 1;
2138
Joerg Roedele25bfb52015-10-20 17:33:38 +02002139 /* Update device table */
2140 set_dte_entry(dev_data->devid, domain, ats);
2141 if (alias != dev_data->devid)
Baoquan He9b1a12d2016-01-20 22:01:19 +08002142 set_dte_entry(alias, domain, ats);
Joerg Roedele25bfb52015-10-20 17:33:38 +02002143
Joerg Roedel6c542042011-06-09 17:07:31 +02002144 device_flush_dte(dev_data);
Joerg Roedel7f760dd2009-11-26 14:49:59 +01002145}
2146
Joerg Roedelec9e79e2011-06-09 17:25:50 +02002147static void do_detach(struct iommu_dev_data *dev_data)
Joerg Roedel7f760dd2009-11-26 14:49:59 +01002148{
Joerg Roedel7f760dd2009-11-26 14:49:59 +01002149 struct amd_iommu *iommu;
Joerg Roedele25bfb52015-10-20 17:33:38 +02002150 u16 alias;
Joerg Roedel7f760dd2009-11-26 14:49:59 +01002151
Joerg Roedel5adad992015-10-09 16:23:33 +02002152 /*
2153 * First check if the device is still attached. It might already
2154 * be detached from its domain because the generic
2155 * iommu_detach_group code detached it and we try again here in
2156 * our alias handling.
2157 */
2158 if (!dev_data->domain)
2159 return;
2160
Joerg Roedelec9e79e2011-06-09 17:25:50 +02002161 iommu = amd_iommu_rlookup_table[dev_data->devid];
Joerg Roedele3156042016-04-08 15:12:24 +02002162 alias = dev_data->alias;
Joerg Roedelc5cca142009-10-09 18:31:20 +02002163
Joerg Roedelc4596112009-11-20 14:57:32 +01002164 /* decrease reference counters */
Joerg Roedel7f760dd2009-11-26 14:49:59 +01002165 dev_data->domain->dev_iommu[iommu->index] -= 1;
2166 dev_data->domain->dev_cnt -= 1;
Joerg Roedel355bf552008-12-08 12:02:41 +01002167
Joerg Roedel7f760dd2009-11-26 14:49:59 +01002168 /* Update data structures */
2169 dev_data->domain = NULL;
2170 list_del(&dev_data->list);
Joerg Roedelf62dda62011-06-09 12:55:35 +02002171 clear_dte_entry(dev_data->devid);
Joerg Roedele25bfb52015-10-20 17:33:38 +02002172 if (alias != dev_data->devid)
2173 clear_dte_entry(alias);
Joerg Roedel7f760dd2009-11-26 14:49:59 +01002174
2175 /* Flush the DTE entry */
Joerg Roedel6c542042011-06-09 17:07:31 +02002176 device_flush_dte(dev_data);
Joerg Roedel15898bb2009-11-24 15:39:42 +01002177}
2178
2179/*
2180 * If a device is not yet associated with a domain, this function does
2181 * assigns it visible for the hardware
2182 */
Joerg Roedelec9e79e2011-06-09 17:25:50 +02002183static int __attach_device(struct iommu_dev_data *dev_data,
Joerg Roedel15898bb2009-11-24 15:39:42 +01002184 struct protection_domain *domain)
2185{
Julia Lawall84fe6c12010-05-27 12:31:51 +02002186 int ret;
Joerg Roedel657cbb62009-11-23 15:26:46 +01002187
Joerg Roedel272e4f92015-10-20 17:33:37 +02002188 /*
2189 * Must be called with IRQs disabled. Warn here to detect early
2190 * when its not.
2191 */
2192 WARN_ON(!irqs_disabled());
2193
Joerg Roedel15898bb2009-11-24 15:39:42 +01002194 /* lock domain */
2195 spin_lock(&domain->lock);
2196
Joerg Roedel397111a2014-08-05 17:31:51 +02002197 ret = -EBUSY;
Joerg Roedel150952f2015-10-20 17:33:35 +02002198 if (dev_data->domain != NULL)
Joerg Roedel397111a2014-08-05 17:31:51 +02002199 goto out_unlock;
Joerg Roedel24100052009-11-25 15:59:57 +01002200
Joerg Roedel397111a2014-08-05 17:31:51 +02002201 /* Attach alias group root */
Joerg Roedel150952f2015-10-20 17:33:35 +02002202 do_attach(dev_data, domain);
Joerg Roedel24100052009-11-25 15:59:57 +01002203
Julia Lawall84fe6c12010-05-27 12:31:51 +02002204 ret = 0;
2205
2206out_unlock:
2207
Joerg Roedel355bf552008-12-08 12:02:41 +01002208 /* ready */
2209 spin_unlock(&domain->lock);
Joerg Roedel21129f72009-09-01 11:59:42 +02002210
Julia Lawall84fe6c12010-05-27 12:31:51 +02002211 return ret;
Joerg Roedel15898bb2009-11-24 15:39:42 +01002212}
2213
Joerg Roedel52815b72011-11-17 17:24:28 +01002214
2215static void pdev_iommuv2_disable(struct pci_dev *pdev)
2216{
2217 pci_disable_ats(pdev);
2218 pci_disable_pri(pdev);
2219 pci_disable_pasid(pdev);
2220}
2221
Joerg Roedel6a113dd2011-12-01 12:04:58 +01002222/* FIXME: Change generic reset-function to do the same */
2223static int pri_reset_while_enabled(struct pci_dev *pdev)
2224{
2225 u16 control;
2226 int pos;
2227
Joerg Roedel46277b72011-12-07 14:34:02 +01002228 pos = pci_find_ext_capability(pdev, PCI_EXT_CAP_ID_PRI);
Joerg Roedel6a113dd2011-12-01 12:04:58 +01002229 if (!pos)
2230 return -EINVAL;
2231
Joerg Roedel46277b72011-12-07 14:34:02 +01002232 pci_read_config_word(pdev, pos + PCI_PRI_CTRL, &control);
2233 control |= PCI_PRI_CTRL_RESET;
2234 pci_write_config_word(pdev, pos + PCI_PRI_CTRL, control);
Joerg Roedel6a113dd2011-12-01 12:04:58 +01002235
2236 return 0;
2237}
2238
Joerg Roedel52815b72011-11-17 17:24:28 +01002239static int pdev_iommuv2_enable(struct pci_dev *pdev)
2240{
Joerg Roedel6a113dd2011-12-01 12:04:58 +01002241 bool reset_enable;
2242 int reqs, ret;
2243
2244 /* FIXME: Hardcode number of outstanding requests for now */
2245 reqs = 32;
2246 if (pdev_pri_erratum(pdev, AMD_PRI_DEV_ERRATUM_LIMIT_REQ_ONE))
2247 reqs = 1;
2248 reset_enable = pdev_pri_erratum(pdev, AMD_PRI_DEV_ERRATUM_ENABLE_RESET);
Joerg Roedel52815b72011-11-17 17:24:28 +01002249
2250 /* Only allow access to user-accessible pages */
2251 ret = pci_enable_pasid(pdev, 0);
2252 if (ret)
2253 goto out_err;
2254
2255 /* First reset the PRI state of the device */
2256 ret = pci_reset_pri(pdev);
2257 if (ret)
2258 goto out_err;
2259
Joerg Roedel6a113dd2011-12-01 12:04:58 +01002260 /* Enable PRI */
2261 ret = pci_enable_pri(pdev, reqs);
Joerg Roedel52815b72011-11-17 17:24:28 +01002262 if (ret)
2263 goto out_err;
2264
Joerg Roedel6a113dd2011-12-01 12:04:58 +01002265 if (reset_enable) {
2266 ret = pri_reset_while_enabled(pdev);
2267 if (ret)
2268 goto out_err;
2269 }
2270
Joerg Roedel52815b72011-11-17 17:24:28 +01002271 ret = pci_enable_ats(pdev, PAGE_SHIFT);
2272 if (ret)
2273 goto out_err;
2274
2275 return 0;
2276
2277out_err:
2278 pci_disable_pri(pdev);
2279 pci_disable_pasid(pdev);
2280
2281 return ret;
2282}
2283
Joerg Roedelc99afa22011-11-21 18:19:25 +01002284/* FIXME: Move this to PCI code */
Joerg Roedela3b93122012-04-12 12:49:26 +02002285#define PCI_PRI_TLP_OFF (1 << 15)
Joerg Roedelc99afa22011-11-21 18:19:25 +01002286
Joerg Roedel98f1ad22012-07-06 13:28:37 +02002287static bool pci_pri_tlp_required(struct pci_dev *pdev)
Joerg Roedelc99afa22011-11-21 18:19:25 +01002288{
Joerg Roedela3b93122012-04-12 12:49:26 +02002289 u16 status;
Joerg Roedelc99afa22011-11-21 18:19:25 +01002290 int pos;
2291
Joerg Roedel46277b72011-12-07 14:34:02 +01002292 pos = pci_find_ext_capability(pdev, PCI_EXT_CAP_ID_PRI);
Joerg Roedelc99afa22011-11-21 18:19:25 +01002293 if (!pos)
2294 return false;
2295
Joerg Roedela3b93122012-04-12 12:49:26 +02002296 pci_read_config_word(pdev, pos + PCI_PRI_STATUS, &status);
Joerg Roedelc99afa22011-11-21 18:19:25 +01002297
Joerg Roedela3b93122012-04-12 12:49:26 +02002298 return (status & PCI_PRI_TLP_OFF) ? true : false;
Joerg Roedelc99afa22011-11-21 18:19:25 +01002299}
2300
Joerg Roedel15898bb2009-11-24 15:39:42 +01002301/*
Frank Arnolddf805ab2012-08-27 19:21:04 +02002302 * If a device is not yet associated with a domain, this function
Joerg Roedel15898bb2009-11-24 15:39:42 +01002303 * assigns it visible for the hardware
2304 */
2305static int attach_device(struct device *dev,
2306 struct protection_domain *domain)
2307{
Wan Zongshun2bf9a0a2016-04-01 09:06:03 -04002308 struct pci_dev *pdev;
Joerg Roedelea61cdd2011-06-09 12:56:30 +02002309 struct iommu_dev_data *dev_data;
Joerg Roedel15898bb2009-11-24 15:39:42 +01002310 unsigned long flags;
2311 int ret;
2312
Joerg Roedelea61cdd2011-06-09 12:56:30 +02002313 dev_data = get_dev_data(dev);
2314
Wan Zongshun2bf9a0a2016-04-01 09:06:03 -04002315 if (!dev_is_pci(dev))
2316 goto skip_ats_check;
2317
2318 pdev = to_pci_dev(dev);
Joerg Roedel52815b72011-11-17 17:24:28 +01002319 if (domain->flags & PD_IOMMUV2_MASK) {
Joerg Roedel02ca2022015-07-28 16:58:49 +02002320 if (!dev_data->passthrough)
Joerg Roedel52815b72011-11-17 17:24:28 +01002321 return -EINVAL;
2322
Joerg Roedel02ca2022015-07-28 16:58:49 +02002323 if (dev_data->iommu_v2) {
2324 if (pdev_iommuv2_enable(pdev) != 0)
2325 return -EINVAL;
Joerg Roedel52815b72011-11-17 17:24:28 +01002326
Joerg Roedel02ca2022015-07-28 16:58:49 +02002327 dev_data->ats.enabled = true;
2328 dev_data->ats.qdep = pci_ats_queue_depth(pdev);
2329 dev_data->pri_tlp = pci_pri_tlp_required(pdev);
2330 }
Joerg Roedel52815b72011-11-17 17:24:28 +01002331 } else if (amd_iommu_iotlb_sup &&
2332 pci_enable_ats(pdev, PAGE_SHIFT) == 0) {
Joerg Roedelea61cdd2011-06-09 12:56:30 +02002333 dev_data->ats.enabled = true;
2334 dev_data->ats.qdep = pci_ats_queue_depth(pdev);
2335 }
Joerg Roedelfd7b5532011-04-05 15:31:08 +02002336
Wan Zongshun2bf9a0a2016-04-01 09:06:03 -04002337skip_ats_check:
Joerg Roedel15898bb2009-11-24 15:39:42 +01002338 write_lock_irqsave(&amd_iommu_devtable_lock, flags);
Joerg Roedelec9e79e2011-06-09 17:25:50 +02002339 ret = __attach_device(dev_data, domain);
Joerg Roedel15898bb2009-11-24 15:39:42 +01002340 write_unlock_irqrestore(&amd_iommu_devtable_lock, flags);
2341
2342 /*
2343 * We might boot into a crash-kernel here. The crashed kernel
2344 * left the caches in the IOMMU dirty. So we have to flush
2345 * here to evict all dirty stuff.
2346 */
Joerg Roedel17b124b2011-04-06 18:01:35 +02002347 domain_flush_tlb_pde(domain);
Joerg Roedel15898bb2009-11-24 15:39:42 +01002348
2349 return ret;
2350}
2351
2352/*
2353 * Removes a device from a protection domain (unlocked)
2354 */
Joerg Roedelec9e79e2011-06-09 17:25:50 +02002355static void __detach_device(struct iommu_dev_data *dev_data)
Joerg Roedel15898bb2009-11-24 15:39:42 +01002356{
Joerg Roedel2ca76272010-01-22 16:45:31 +01002357 struct protection_domain *domain;
Joerg Roedel15898bb2009-11-24 15:39:42 +01002358
Joerg Roedel272e4f92015-10-20 17:33:37 +02002359 /*
2360 * Must be called with IRQs disabled. Warn here to detect early
2361 * when its not.
2362 */
2363 WARN_ON(!irqs_disabled());
2364
Joerg Roedelf34c73f2015-10-20 17:33:34 +02002365 if (WARN_ON(!dev_data->domain))
2366 return;
Joerg Roedel15898bb2009-11-24 15:39:42 +01002367
Joerg Roedel2ca76272010-01-22 16:45:31 +01002368 domain = dev_data->domain;
2369
Joerg Roedelf1dd0a82015-10-20 17:33:36 +02002370 spin_lock(&domain->lock);
Joerg Roedel24100052009-11-25 15:59:57 +01002371
Joerg Roedel150952f2015-10-20 17:33:35 +02002372 do_detach(dev_data);
Joerg Roedel71f77582011-06-09 19:03:15 +02002373
Joerg Roedelf1dd0a82015-10-20 17:33:36 +02002374 spin_unlock(&domain->lock);
Joerg Roedel355bf552008-12-08 12:02:41 +01002375}
2376
2377/*
2378 * Removes a device from a protection domain (with devtable_lock held)
2379 */
Joerg Roedel15898bb2009-11-24 15:39:42 +01002380static void detach_device(struct device *dev)
Joerg Roedel355bf552008-12-08 12:02:41 +01002381{
Joerg Roedel52815b72011-11-17 17:24:28 +01002382 struct protection_domain *domain;
Joerg Roedelea61cdd2011-06-09 12:56:30 +02002383 struct iommu_dev_data *dev_data;
Joerg Roedel355bf552008-12-08 12:02:41 +01002384 unsigned long flags;
2385
Joerg Roedelec9e79e2011-06-09 17:25:50 +02002386 dev_data = get_dev_data(dev);
Joerg Roedel52815b72011-11-17 17:24:28 +01002387 domain = dev_data->domain;
Joerg Roedelec9e79e2011-06-09 17:25:50 +02002388
Joerg Roedel355bf552008-12-08 12:02:41 +01002389 /* lock device table */
2390 write_lock_irqsave(&amd_iommu_devtable_lock, flags);
Joerg Roedelec9e79e2011-06-09 17:25:50 +02002391 __detach_device(dev_data);
Joerg Roedel355bf552008-12-08 12:02:41 +01002392 write_unlock_irqrestore(&amd_iommu_devtable_lock, flags);
Joerg Roedelfd7b5532011-04-05 15:31:08 +02002393
Wan Zongshun2bf9a0a2016-04-01 09:06:03 -04002394 if (!dev_is_pci(dev))
2395 return;
2396
Joerg Roedel02ca2022015-07-28 16:58:49 +02002397 if (domain->flags & PD_IOMMUV2_MASK && dev_data->iommu_v2)
Joerg Roedel52815b72011-11-17 17:24:28 +01002398 pdev_iommuv2_disable(to_pci_dev(dev));
2399 else if (dev_data->ats.enabled)
Joerg Roedelea61cdd2011-06-09 12:56:30 +02002400 pci_disable_ats(to_pci_dev(dev));
Joerg Roedel52815b72011-11-17 17:24:28 +01002401
2402 dev_data->ats.enabled = false;
Joerg Roedel355bf552008-12-08 12:02:41 +01002403}
Joerg Roedele275a2a2008-12-10 18:27:25 +01002404
Joerg Roedelaafd8ba2015-05-28 18:41:39 +02002405static int amd_iommu_add_device(struct device *dev)
Joerg Roedel15898bb2009-11-24 15:39:42 +01002406{
Joerg Roedel71f77582011-06-09 19:03:15 +02002407 struct iommu_dev_data *dev_data;
Joerg Roedel07ee8692015-05-28 18:41:42 +02002408 struct iommu_domain *domain;
Joerg Roedele275a2a2008-12-10 18:27:25 +01002409 struct amd_iommu *iommu;
Wan Zongshun7aba6cb2016-04-01 09:06:02 -04002410 int ret, devid;
Joerg Roedele275a2a2008-12-10 18:27:25 +01002411
Joerg Roedelaafd8ba2015-05-28 18:41:39 +02002412 if (!check_device(dev) || get_dev_data(dev))
Joerg Roedel98fc5a62009-11-24 17:19:23 +01002413 return 0;
Joerg Roedele275a2a2008-12-10 18:27:25 +01002414
Joerg Roedelaafd8ba2015-05-28 18:41:39 +02002415 devid = get_device_id(dev);
Joerg Roedel9ee35e42016-04-21 18:21:31 +02002416 if (devid < 0)
Wan Zongshun7aba6cb2016-04-01 09:06:02 -04002417 return devid;
2418
Joerg Roedelaafd8ba2015-05-28 18:41:39 +02002419 iommu = amd_iommu_rlookup_table[devid];
Joerg Roedele275a2a2008-12-10 18:27:25 +01002420
Joerg Roedelaafd8ba2015-05-28 18:41:39 +02002421 ret = iommu_init_device(dev);
Joerg Roedel4d58b8a2015-06-11 09:21:39 +02002422 if (ret) {
2423 if (ret != -ENOTSUPP)
2424 pr_err("Failed to initialize device %s - trying to proceed anyway\n",
2425 dev_name(dev));
Joerg Roedel657cbb62009-11-23 15:26:46 +01002426
Joerg Roedelaafd8ba2015-05-28 18:41:39 +02002427 iommu_ignore_device(dev);
Joerg Roedel343e9ca2015-05-28 18:41:43 +02002428 dev->archdata.dma_ops = &nommu_dma_ops;
Joerg Roedele275a2a2008-12-10 18:27:25 +01002429 goto out;
2430 }
Joerg Roedelaafd8ba2015-05-28 18:41:39 +02002431 init_iommu_group(dev);
Joerg Roedele275a2a2008-12-10 18:27:25 +01002432
Joerg Roedel07ee8692015-05-28 18:41:42 +02002433 dev_data = get_dev_data(dev);
Joerg Roedel4d58b8a2015-06-11 09:21:39 +02002434
2435 BUG_ON(!dev_data);
2436
Joerg Roedel1e6a7b02015-07-28 16:58:48 +02002437 if (iommu_pass_through || dev_data->iommu_v2)
Joerg Roedel07ee8692015-05-28 18:41:42 +02002438 iommu_request_dm_for_dev(dev);
2439
2440 /* Domains are initialized for this device - have a look what we ended up with */
2441 domain = iommu_get_domain_for_dev(dev);
Joerg Roedel32302322015-07-28 16:58:50 +02002442 if (domain->type == IOMMU_DOMAIN_IDENTITY)
Joerg Roedel07ee8692015-05-28 18:41:42 +02002443 dev_data->passthrough = true;
Joerg Roedel32302322015-07-28 16:58:50 +02002444 else
Joerg Roedel07ee8692015-05-28 18:41:42 +02002445 dev->archdata.dma_ops = &amd_iommu_dma_ops;
Joerg Roedele275a2a2008-12-10 18:27:25 +01002446
2447out:
Joerg Roedelaafd8ba2015-05-28 18:41:39 +02002448 iommu_completion_wait(iommu);
2449
Joerg Roedele275a2a2008-12-10 18:27:25 +01002450 return 0;
2451}
2452
Joerg Roedelaafd8ba2015-05-28 18:41:39 +02002453static void amd_iommu_remove_device(struct device *dev)
Joerg Roedel8638c492009-12-10 11:12:25 +01002454{
Joerg Roedelaafd8ba2015-05-28 18:41:39 +02002455 struct amd_iommu *iommu;
Wan Zongshun7aba6cb2016-04-01 09:06:02 -04002456 int devid;
Joerg Roedelaafd8ba2015-05-28 18:41:39 +02002457
2458 if (!check_device(dev))
2459 return;
2460
2461 devid = get_device_id(dev);
Joerg Roedel9ee35e42016-04-21 18:21:31 +02002462 if (devid < 0)
Wan Zongshun7aba6cb2016-04-01 09:06:02 -04002463 return;
2464
Joerg Roedelaafd8ba2015-05-28 18:41:39 +02002465 iommu = amd_iommu_rlookup_table[devid];
2466
2467 iommu_uninit_device(dev);
2468 iommu_completion_wait(iommu);
Joerg Roedel8638c492009-12-10 11:12:25 +01002469}
2470
Wan Zongshunb097d112016-04-01 09:06:04 -04002471static struct iommu_group *amd_iommu_device_group(struct device *dev)
2472{
2473 if (dev_is_pci(dev))
2474 return pci_device_group(dev);
2475
2476 return acpihid_device_group(dev);
2477}
2478
Joerg Roedel431b2a22008-07-11 17:14:22 +02002479/*****************************************************************************
2480 *
2481 * The next functions belong to the dma_ops mapping/unmapping code.
2482 *
2483 *****************************************************************************/
2484
2485/*
2486 * In the dma_ops path we only have the struct device. This function
2487 * finds the corresponding IOMMU, the protection domain and the
2488 * requestor id for a given device.
2489 * If the device is not yet associated with a domain this is also done
2490 * in this function.
2491 */
Joerg Roedel94f6d192009-11-24 16:40:02 +01002492static struct protection_domain *get_domain(struct device *dev)
Joerg Roedelb20ac0d2008-06-26 21:27:59 +02002493{
Joerg Roedel94f6d192009-11-24 16:40:02 +01002494 struct protection_domain *domain;
Joerg Roedel063071d2015-05-28 18:41:38 +02002495 struct iommu_domain *io_domain;
Joerg Roedelb20ac0d2008-06-26 21:27:59 +02002496
Joerg Roedelf99c0f12009-11-23 16:52:56 +01002497 if (!check_device(dev))
Joerg Roedel94f6d192009-11-24 16:40:02 +01002498 return ERR_PTR(-EINVAL);
Joerg Roedeldbcc1122008-09-04 15:04:26 +02002499
Joerg Roedel063071d2015-05-28 18:41:38 +02002500 io_domain = iommu_get_domain_for_dev(dev);
Joerg Roedel0bb6e242015-05-28 18:41:40 +02002501 if (!io_domain)
2502 return NULL;
Joerg Roedel063071d2015-05-28 18:41:38 +02002503
Joerg Roedel0bb6e242015-05-28 18:41:40 +02002504 domain = to_pdomain(io_domain);
2505 if (!dma_ops_domain(domain))
Joerg Roedel94f6d192009-11-24 16:40:02 +01002506 return ERR_PTR(-EBUSY);
Joerg Roedelf99c0f12009-11-23 16:52:56 +01002507
Joerg Roedel0bb6e242015-05-28 18:41:40 +02002508 return domain;
Joerg Roedelb20ac0d2008-06-26 21:27:59 +02002509}
2510
Joerg Roedel04bfdd82009-09-02 16:00:23 +02002511static void update_device_table(struct protection_domain *domain)
2512{
Joerg Roedel492667d2009-11-27 13:25:47 +01002513 struct iommu_dev_data *dev_data;
Joerg Roedel04bfdd82009-09-02 16:00:23 +02002514
Joerg Roedelea61cdd2011-06-09 12:56:30 +02002515 list_for_each_entry(dev_data, &domain->dev_list, list)
2516 set_dte_entry(dev_data->devid, domain, dev_data->ats.enabled);
Joerg Roedel04bfdd82009-09-02 16:00:23 +02002517}
2518
2519static void update_domain(struct protection_domain *domain)
2520{
2521 if (!domain->updated)
2522 return;
2523
2524 update_device_table(domain);
Joerg Roedel17b124b2011-04-06 18:01:35 +02002525
2526 domain_flush_devices(domain);
2527 domain_flush_tlb_pde(domain);
Joerg Roedel04bfdd82009-09-02 16:00:23 +02002528
2529 domain->updated = false;
2530}
2531
Joerg Roedel431b2a22008-07-11 17:14:22 +02002532/*
Joerg Roedel8bda3092009-05-12 12:02:46 +02002533 * This function fetches the PTE for a given address in the aperture
2534 */
2535static u64* dma_ops_get_pte(struct dma_ops_domain *dom,
2536 unsigned long address)
2537{
Joerg Roedel384de722009-05-15 12:30:05 +02002538 struct aperture_range *aperture;
Joerg Roedel8bda3092009-05-12 12:02:46 +02002539 u64 *pte, *pte_page;
2540
Joerg Roedel384de722009-05-15 12:30:05 +02002541 aperture = dom->aperture[APERTURE_RANGE_INDEX(address)];
2542 if (!aperture)
2543 return NULL;
2544
2545 pte = aperture->pte_pages[APERTURE_PAGE_INDEX(address)];
Joerg Roedel8bda3092009-05-12 12:02:46 +02002546 if (!pte) {
Joerg Roedelcbb9d722010-01-15 14:41:15 +01002547 pte = alloc_pte(&dom->domain, address, PAGE_SIZE, &pte_page,
Joerg Roedelabdc5eb2009-09-03 11:33:51 +02002548 GFP_ATOMIC);
Joerg Roedel384de722009-05-15 12:30:05 +02002549 aperture->pte_pages[APERTURE_PAGE_INDEX(address)] = pte_page;
2550 } else
Joerg Roedel8c8c1432009-09-02 17:30:00 +02002551 pte += PM_LEVEL_INDEX(0, address);
Joerg Roedel8bda3092009-05-12 12:02:46 +02002552
Joerg Roedel04bfdd82009-09-02 16:00:23 +02002553 update_domain(&dom->domain);
Joerg Roedel8bda3092009-05-12 12:02:46 +02002554
2555 return pte;
2556}
2557
2558/*
Joerg Roedel431b2a22008-07-11 17:14:22 +02002559 * This is the generic map function. It maps one 4kb page at paddr to
2560 * the given address in the DMA address space for the domain.
2561 */
Joerg Roedel680525e2009-11-23 18:44:42 +01002562static dma_addr_t dma_ops_domain_map(struct dma_ops_domain *dom,
Joerg Roedelcb76c322008-06-26 21:28:00 +02002563 unsigned long address,
2564 phys_addr_t paddr,
2565 int direction)
2566{
2567 u64 *pte, __pte;
2568
2569 WARN_ON(address > dom->aperture_size);
2570
2571 paddr &= PAGE_MASK;
2572
Joerg Roedel8bda3092009-05-12 12:02:46 +02002573 pte = dma_ops_get_pte(dom, address);
Joerg Roedel53812c12009-05-12 12:17:38 +02002574 if (!pte)
FUJITA Tomonori8fd524b2009-11-15 21:19:53 +09002575 return DMA_ERROR_CODE;
Joerg Roedelcb76c322008-06-26 21:28:00 +02002576
2577 __pte = paddr | IOMMU_PTE_P | IOMMU_PTE_FC;
2578
2579 if (direction == DMA_TO_DEVICE)
2580 __pte |= IOMMU_PTE_IR;
2581 else if (direction == DMA_FROM_DEVICE)
2582 __pte |= IOMMU_PTE_IW;
2583 else if (direction == DMA_BIDIRECTIONAL)
2584 __pte |= IOMMU_PTE_IR | IOMMU_PTE_IW;
2585
Joerg Roedela7fb6682015-12-21 12:50:54 +01002586 WARN_ON_ONCE(*pte);
Joerg Roedelcb76c322008-06-26 21:28:00 +02002587
2588 *pte = __pte;
2589
2590 return (dma_addr_t)address;
2591}
2592
Joerg Roedel431b2a22008-07-11 17:14:22 +02002593/*
2594 * The generic unmapping function for on page in the DMA address space.
2595 */
Joerg Roedel680525e2009-11-23 18:44:42 +01002596static void dma_ops_domain_unmap(struct dma_ops_domain *dom,
Joerg Roedelcb76c322008-06-26 21:28:00 +02002597 unsigned long address)
2598{
Joerg Roedel384de722009-05-15 12:30:05 +02002599 struct aperture_range *aperture;
Joerg Roedelcb76c322008-06-26 21:28:00 +02002600 u64 *pte;
2601
2602 if (address >= dom->aperture_size)
2603 return;
2604
Joerg Roedel384de722009-05-15 12:30:05 +02002605 aperture = dom->aperture[APERTURE_RANGE_INDEX(address)];
2606 if (!aperture)
2607 return;
Joerg Roedelcb76c322008-06-26 21:28:00 +02002608
Joerg Roedel384de722009-05-15 12:30:05 +02002609 pte = aperture->pte_pages[APERTURE_PAGE_INDEX(address)];
2610 if (!pte)
2611 return;
2612
Joerg Roedel8c8c1432009-09-02 17:30:00 +02002613 pte += PM_LEVEL_INDEX(0, address);
Joerg Roedelcb76c322008-06-26 21:28:00 +02002614
Joerg Roedela7fb6682015-12-21 12:50:54 +01002615 WARN_ON_ONCE(!*pte);
Joerg Roedelcb76c322008-06-26 21:28:00 +02002616
2617 *pte = 0ULL;
2618}
2619
Joerg Roedel431b2a22008-07-11 17:14:22 +02002620/*
2621 * This function contains common code for mapping of a physically
Joerg Roedel24f81162008-12-08 14:25:39 +01002622 * contiguous memory region into DMA address space. It is used by all
2623 * mapping functions provided with this IOMMU driver.
Joerg Roedel431b2a22008-07-11 17:14:22 +02002624 * Must be called with the domain lock held.
2625 */
Joerg Roedelcb76c322008-06-26 21:28:00 +02002626static dma_addr_t __map_single(struct device *dev,
Joerg Roedelcb76c322008-06-26 21:28:00 +02002627 struct dma_ops_domain *dma_dom,
2628 phys_addr_t paddr,
2629 size_t size,
Joerg Roedel6d4f3432008-09-04 19:18:02 +02002630 int dir,
Joerg Roedel832a90c2008-09-18 15:54:23 +02002631 bool align,
2632 u64 dma_mask)
Joerg Roedelcb76c322008-06-26 21:28:00 +02002633{
2634 dma_addr_t offset = paddr & ~PAGE_MASK;
Joerg Roedel53812c12009-05-12 12:17:38 +02002635 dma_addr_t address, start, ret;
Joerg Roedelcb76c322008-06-26 21:28:00 +02002636 unsigned int pages;
Joerg Roedel6d4f3432008-09-04 19:18:02 +02002637 unsigned long align_mask = 0;
Joerg Roedelcb76c322008-06-26 21:28:00 +02002638 int i;
2639
Joerg Roedele3c449f2008-10-15 22:02:11 -07002640 pages = iommu_num_pages(paddr, size, PAGE_SIZE);
Joerg Roedelcb76c322008-06-26 21:28:00 +02002641 paddr &= PAGE_MASK;
2642
Joerg Roedel6d4f3432008-09-04 19:18:02 +02002643 if (align)
2644 align_mask = (1UL << get_order(size)) - 1;
2645
Joerg Roedel832a90c2008-09-18 15:54:23 +02002646 address = dma_ops_alloc_addresses(dev, dma_dom, pages, align_mask,
2647 dma_mask);
Joerg Roedelebaecb42015-12-21 18:11:32 +01002648
Joerg Roedel266a3bd2015-12-21 18:54:24 +01002649 if (address == DMA_ERROR_CODE)
2650 goto out;
Joerg Roedelcb76c322008-06-26 21:28:00 +02002651
2652 start = address;
2653 for (i = 0; i < pages; ++i) {
Joerg Roedel680525e2009-11-23 18:44:42 +01002654 ret = dma_ops_domain_map(dma_dom, start, paddr, dir);
FUJITA Tomonori8fd524b2009-11-15 21:19:53 +09002655 if (ret == DMA_ERROR_CODE)
Joerg Roedel53812c12009-05-12 12:17:38 +02002656 goto out_unmap;
2657
Joerg Roedelcb76c322008-06-26 21:28:00 +02002658 paddr += PAGE_SIZE;
2659 start += PAGE_SIZE;
2660 }
2661 address += offset;
2662
Joerg Roedelab7032b2015-12-21 18:47:11 +01002663 if (unlikely(amd_iommu_np_cache)) {
Joerg Roedel17b124b2011-04-06 18:01:35 +02002664 domain_flush_pages(&dma_dom->domain, address, size);
Joerg Roedelab7032b2015-12-21 18:47:11 +01002665 domain_flush_complete(&dma_dom->domain);
2666 }
Joerg Roedel270cab242008-09-04 15:49:46 +02002667
Joerg Roedelcb76c322008-06-26 21:28:00 +02002668out:
2669 return address;
Joerg Roedel53812c12009-05-12 12:17:38 +02002670
2671out_unmap:
2672
2673 for (--i; i >= 0; --i) {
2674 start -= PAGE_SIZE;
Joerg Roedel680525e2009-11-23 18:44:42 +01002675 dma_ops_domain_unmap(dma_dom, start);
Joerg Roedel53812c12009-05-12 12:17:38 +02002676 }
2677
2678 dma_ops_free_addresses(dma_dom, address, pages);
2679
FUJITA Tomonori8fd524b2009-11-15 21:19:53 +09002680 return DMA_ERROR_CODE;
Joerg Roedelcb76c322008-06-26 21:28:00 +02002681}
2682
Joerg Roedel431b2a22008-07-11 17:14:22 +02002683/*
2684 * Does the reverse of the __map_single function. Must be called with
2685 * the domain lock held too
2686 */
Joerg Roedelcd8c82e2009-11-23 19:33:56 +01002687static void __unmap_single(struct dma_ops_domain *dma_dom,
Joerg Roedelcb76c322008-06-26 21:28:00 +02002688 dma_addr_t dma_addr,
2689 size_t size,
2690 int dir)
2691{
Joerg Roedel04e04632010-09-23 16:12:48 +02002692 dma_addr_t flush_addr;
Joerg Roedelcb76c322008-06-26 21:28:00 +02002693 dma_addr_t i, start;
2694 unsigned int pages;
2695
FUJITA Tomonori8fd524b2009-11-15 21:19:53 +09002696 if ((dma_addr == DMA_ERROR_CODE) ||
Joerg Roedelb8d99052008-12-08 14:40:26 +01002697 (dma_addr + size > dma_dom->aperture_size))
Joerg Roedelcb76c322008-06-26 21:28:00 +02002698 return;
2699
Joerg Roedel04e04632010-09-23 16:12:48 +02002700 flush_addr = dma_addr;
Joerg Roedele3c449f2008-10-15 22:02:11 -07002701 pages = iommu_num_pages(dma_addr, size, PAGE_SIZE);
Joerg Roedelcb76c322008-06-26 21:28:00 +02002702 dma_addr &= PAGE_MASK;
2703 start = dma_addr;
2704
2705 for (i = 0; i < pages; ++i) {
Joerg Roedel680525e2009-11-23 18:44:42 +01002706 dma_ops_domain_unmap(dma_dom, start);
Joerg Roedelcb76c322008-06-26 21:28:00 +02002707 start += PAGE_SIZE;
2708 }
2709
Joerg Roedel84b3a0b2015-12-21 13:23:59 +01002710 dma_ops_free_addresses(dma_dom, dma_addr, pages);
Joerg Roedelcb76c322008-06-26 21:28:00 +02002711}
2712
Joerg Roedel431b2a22008-07-11 17:14:22 +02002713/*
2714 * The exported map_single function for dma_ops.
2715 */
FUJITA Tomonori51491362009-01-05 23:47:25 +09002716static dma_addr_t map_page(struct device *dev, struct page *page,
2717 unsigned long offset, size_t size,
2718 enum dma_data_direction dir,
2719 struct dma_attrs *attrs)
Joerg Roedel4da70b92008-06-26 21:28:01 +02002720{
FUJITA Tomonori51491362009-01-05 23:47:25 +09002721 phys_addr_t paddr = page_to_phys(page) + offset;
Joerg Roedel92d420e2015-12-21 19:31:33 +01002722 struct protection_domain *domain;
2723 u64 dma_mask;
Joerg Roedel4da70b92008-06-26 21:28:01 +02002724
Joerg Roedel94f6d192009-11-24 16:40:02 +01002725 domain = get_domain(dev);
2726 if (PTR_ERR(domain) == -EINVAL)
Joerg Roedel4da70b92008-06-26 21:28:01 +02002727 return (dma_addr_t)paddr;
Joerg Roedel94f6d192009-11-24 16:40:02 +01002728 else if (IS_ERR(domain))
2729 return DMA_ERROR_CODE;
Joerg Roedel4da70b92008-06-26 21:28:01 +02002730
Joerg Roedelf99c0f12009-11-23 16:52:56 +01002731 dma_mask = *dev->dma_mask;
2732
Joerg Roedel92d420e2015-12-21 19:31:33 +01002733 return __map_single(dev, domain->priv, paddr, size, dir, false,
Joerg Roedel832a90c2008-09-18 15:54:23 +02002734 dma_mask);
Joerg Roedel4da70b92008-06-26 21:28:01 +02002735}
2736
Joerg Roedel431b2a22008-07-11 17:14:22 +02002737/*
2738 * The exported unmap_single function for dma_ops.
2739 */
FUJITA Tomonori51491362009-01-05 23:47:25 +09002740static void unmap_page(struct device *dev, dma_addr_t dma_addr, size_t size,
2741 enum dma_data_direction dir, struct dma_attrs *attrs)
Joerg Roedel4da70b92008-06-26 21:28:01 +02002742{
Joerg Roedel4da70b92008-06-26 21:28:01 +02002743 struct protection_domain *domain;
Joerg Roedel4da70b92008-06-26 21:28:01 +02002744
Joerg Roedel94f6d192009-11-24 16:40:02 +01002745 domain = get_domain(dev);
2746 if (IS_ERR(domain))
Joerg Roedel5b28df62008-12-02 17:49:42 +01002747 return;
2748
Joerg Roedelcd8c82e2009-11-23 19:33:56 +01002749 __unmap_single(domain->priv, dma_addr, size, dir);
Joerg Roedel4da70b92008-06-26 21:28:01 +02002750}
2751
Joerg Roedel431b2a22008-07-11 17:14:22 +02002752/*
Joerg Roedel431b2a22008-07-11 17:14:22 +02002753 * The exported map_sg function for dma_ops (handles scatter-gather
2754 * lists).
2755 */
Joerg Roedel65b050a2008-06-26 21:28:02 +02002756static int map_sg(struct device *dev, struct scatterlist *sglist,
FUJITA Tomonori160c1d82009-01-05 23:59:02 +09002757 int nelems, enum dma_data_direction dir,
2758 struct dma_attrs *attrs)
Joerg Roedel65b050a2008-06-26 21:28:02 +02002759{
Joerg Roedel65b050a2008-06-26 21:28:02 +02002760 struct protection_domain *domain;
Joerg Roedel65b050a2008-06-26 21:28:02 +02002761 int i;
2762 struct scatterlist *s;
2763 phys_addr_t paddr;
2764 int mapped_elems = 0;
Joerg Roedel832a90c2008-09-18 15:54:23 +02002765 u64 dma_mask;
Joerg Roedel65b050a2008-06-26 21:28:02 +02002766
Joerg Roedel94f6d192009-11-24 16:40:02 +01002767 domain = get_domain(dev);
Joerg Roedela0e191b2013-04-09 15:04:36 +02002768 if (IS_ERR(domain))
Joerg Roedel94f6d192009-11-24 16:40:02 +01002769 return 0;
Joerg Roedeldbcc1122008-09-04 15:04:26 +02002770
Joerg Roedel832a90c2008-09-18 15:54:23 +02002771 dma_mask = *dev->dma_mask;
Joerg Roedel65b050a2008-06-26 21:28:02 +02002772
Joerg Roedel65b050a2008-06-26 21:28:02 +02002773 for_each_sg(sglist, s, nelems, i) {
2774 paddr = sg_phys(s);
2775
Joerg Roedelcd8c82e2009-11-23 19:33:56 +01002776 s->dma_address = __map_single(dev, domain->priv,
Joerg Roedel832a90c2008-09-18 15:54:23 +02002777 paddr, s->length, dir, false,
2778 dma_mask);
Joerg Roedel65b050a2008-06-26 21:28:02 +02002779
2780 if (s->dma_address) {
2781 s->dma_length = s->length;
2782 mapped_elems++;
2783 } else
2784 goto unmap;
Joerg Roedel65b050a2008-06-26 21:28:02 +02002785 }
2786
Joerg Roedel65b050a2008-06-26 21:28:02 +02002787 return mapped_elems;
Joerg Roedel92d420e2015-12-21 19:31:33 +01002788
Joerg Roedel65b050a2008-06-26 21:28:02 +02002789unmap:
2790 for_each_sg(sglist, s, mapped_elems, i) {
2791 if (s->dma_address)
Joerg Roedelcd8c82e2009-11-23 19:33:56 +01002792 __unmap_single(domain->priv, s->dma_address,
Joerg Roedel65b050a2008-06-26 21:28:02 +02002793 s->dma_length, dir);
2794 s->dma_address = s->dma_length = 0;
2795 }
2796
Joerg Roedel92d420e2015-12-21 19:31:33 +01002797 return 0;
Joerg Roedel65b050a2008-06-26 21:28:02 +02002798}
2799
Joerg Roedel431b2a22008-07-11 17:14:22 +02002800/*
2801 * The exported map_sg function for dma_ops (handles scatter-gather
2802 * lists).
2803 */
Joerg Roedel65b050a2008-06-26 21:28:02 +02002804static void unmap_sg(struct device *dev, struct scatterlist *sglist,
FUJITA Tomonori160c1d82009-01-05 23:59:02 +09002805 int nelems, enum dma_data_direction dir,
2806 struct dma_attrs *attrs)
Joerg Roedel65b050a2008-06-26 21:28:02 +02002807{
Joerg Roedel65b050a2008-06-26 21:28:02 +02002808 struct protection_domain *domain;
2809 struct scatterlist *s;
Joerg Roedel65b050a2008-06-26 21:28:02 +02002810 int i;
2811
Joerg Roedel94f6d192009-11-24 16:40:02 +01002812 domain = get_domain(dev);
2813 if (IS_ERR(domain))
Joerg Roedel5b28df62008-12-02 17:49:42 +01002814 return;
2815
Joerg Roedel65b050a2008-06-26 21:28:02 +02002816 for_each_sg(sglist, s, nelems, i) {
Joerg Roedelcd8c82e2009-11-23 19:33:56 +01002817 __unmap_single(domain->priv, s->dma_address,
Joerg Roedel65b050a2008-06-26 21:28:02 +02002818 s->dma_length, dir);
Joerg Roedel65b050a2008-06-26 21:28:02 +02002819 s->dma_address = s->dma_length = 0;
2820 }
Joerg Roedel65b050a2008-06-26 21:28:02 +02002821}
2822
Joerg Roedel431b2a22008-07-11 17:14:22 +02002823/*
2824 * The exported alloc_coherent function for dma_ops.
2825 */
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002826static void *alloc_coherent(struct device *dev, size_t size,
Andrzej Pietrasiewiczbaa676f2012-03-27 14:28:18 +02002827 dma_addr_t *dma_addr, gfp_t flag,
2828 struct dma_attrs *attrs)
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002829{
Joerg Roedel832a90c2008-09-18 15:54:23 +02002830 u64 dma_mask = dev->coherent_dma_mask;
Joerg Roedel3b839a52015-04-01 14:58:47 +02002831 struct protection_domain *domain;
Joerg Roedel3b839a52015-04-01 14:58:47 +02002832 struct page *page;
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002833
Joerg Roedel94f6d192009-11-24 16:40:02 +01002834 domain = get_domain(dev);
2835 if (PTR_ERR(domain) == -EINVAL) {
Joerg Roedel3b839a52015-04-01 14:58:47 +02002836 page = alloc_pages(flag, get_order(size));
2837 *dma_addr = page_to_phys(page);
2838 return page_address(page);
Joerg Roedel94f6d192009-11-24 16:40:02 +01002839 } else if (IS_ERR(domain))
2840 return NULL;
Joerg Roedeldbcc1122008-09-04 15:04:26 +02002841
Joerg Roedel3b839a52015-04-01 14:58:47 +02002842 size = PAGE_ALIGN(size);
Joerg Roedelf99c0f12009-11-23 16:52:56 +01002843 dma_mask = dev->coherent_dma_mask;
2844 flag &= ~(__GFP_DMA | __GFP_HIGHMEM | __GFP_DMA32);
Joerg Roedel2d0ec7a2015-06-01 17:30:57 +02002845 flag |= __GFP_ZERO;
FUJITA Tomonori13d9fea2008-09-10 20:19:40 +09002846
Joerg Roedel3b839a52015-04-01 14:58:47 +02002847 page = alloc_pages(flag | __GFP_NOWARN, get_order(size));
2848 if (!page) {
Mel Gormand0164ad2015-11-06 16:28:21 -08002849 if (!gfpflags_allow_blocking(flag))
Joerg Roedel3b839a52015-04-01 14:58:47 +02002850 return NULL;
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002851
Joerg Roedel3b839a52015-04-01 14:58:47 +02002852 page = dma_alloc_from_contiguous(dev, size >> PAGE_SHIFT,
2853 get_order(size));
2854 if (!page)
2855 return NULL;
2856 }
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002857
Joerg Roedel832a90c2008-09-18 15:54:23 +02002858 if (!dma_mask)
2859 dma_mask = *dev->dma_mask;
2860
Joerg Roedel3b839a52015-04-01 14:58:47 +02002861 *dma_addr = __map_single(dev, domain->priv, page_to_phys(page),
Joerg Roedel832a90c2008-09-18 15:54:23 +02002862 size, DMA_BIDIRECTIONAL, true, dma_mask);
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002863
Joerg Roedel92d420e2015-12-21 19:31:33 +01002864 if (*dma_addr == DMA_ERROR_CODE)
Joerg Roedel5b28df62008-12-02 17:49:42 +01002865 goto out_free;
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002866
Joerg Roedel3b839a52015-04-01 14:58:47 +02002867 return page_address(page);
Joerg Roedel5b28df62008-12-02 17:49:42 +01002868
2869out_free:
2870
Joerg Roedel3b839a52015-04-01 14:58:47 +02002871 if (!dma_release_from_contiguous(dev, page, size >> PAGE_SHIFT))
2872 __free_pages(page, get_order(size));
Joerg Roedel5b28df62008-12-02 17:49:42 +01002873
2874 return NULL;
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002875}
2876
Joerg Roedel431b2a22008-07-11 17:14:22 +02002877/*
2878 * The exported free_coherent function for dma_ops.
Joerg Roedel431b2a22008-07-11 17:14:22 +02002879 */
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002880static void free_coherent(struct device *dev, size_t size,
Andrzej Pietrasiewiczbaa676f2012-03-27 14:28:18 +02002881 void *virt_addr, dma_addr_t dma_addr,
2882 struct dma_attrs *attrs)
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002883{
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002884 struct protection_domain *domain;
Joerg Roedel3b839a52015-04-01 14:58:47 +02002885 struct page *page;
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002886
Joerg Roedel3b839a52015-04-01 14:58:47 +02002887 page = virt_to_page(virt_addr);
2888 size = PAGE_ALIGN(size);
2889
Joerg Roedel94f6d192009-11-24 16:40:02 +01002890 domain = get_domain(dev);
2891 if (IS_ERR(domain))
Joerg Roedel5b28df62008-12-02 17:49:42 +01002892 goto free_mem;
2893
Joerg Roedelcd8c82e2009-11-23 19:33:56 +01002894 __unmap_single(domain->priv, dma_addr, size, DMA_BIDIRECTIONAL);
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002895
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002896free_mem:
Joerg Roedel3b839a52015-04-01 14:58:47 +02002897 if (!dma_release_from_contiguous(dev, page, size >> PAGE_SHIFT))
2898 __free_pages(page, get_order(size));
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002899}
2900
Joerg Roedelc432f3d2008-06-26 21:28:04 +02002901/*
Joerg Roedelb39ba6a2008-09-09 18:40:46 +02002902 * This function is called by the DMA layer to find out if we can handle a
2903 * particular device. It is part of the dma_ops.
2904 */
2905static int amd_iommu_dma_supported(struct device *dev, u64 mask)
2906{
Joerg Roedel420aef82009-11-23 16:14:57 +01002907 return check_device(dev);
Joerg Roedelb39ba6a2008-09-09 18:40:46 +02002908}
2909
Joerg Roedela639a8e2015-12-22 16:06:49 +01002910static int set_dma_mask(struct device *dev, u64 mask)
2911{
2912 struct protection_domain *domain;
2913 int max_apertures = 1;
2914
2915 domain = get_domain(dev);
2916 if (IS_ERR(domain))
2917 return PTR_ERR(domain);
2918
2919 if (mask == DMA_BIT_MASK(64))
2920 max_apertures = 8;
2921 else if (mask > DMA_BIT_MASK(32))
2922 max_apertures = 4;
2923
2924 /*
2925 * To prevent lock contention it doesn't make sense to allocate more
2926 * apertures than online cpus
2927 */
2928 if (max_apertures > num_online_cpus())
2929 max_apertures = num_online_cpus();
2930
2931 if (dma_ops_domain_alloc_apertures(domain->priv, max_apertures))
2932 dev_err(dev, "Can't allocate %d iommu apertures\n",
2933 max_apertures);
2934
2935 return 0;
2936}
2937
FUJITA Tomonori160c1d82009-01-05 23:59:02 +09002938static struct dma_map_ops amd_iommu_dma_ops = {
Joerg Roedela639a8e2015-12-22 16:06:49 +01002939 .alloc = alloc_coherent,
2940 .free = free_coherent,
2941 .map_page = map_page,
2942 .unmap_page = unmap_page,
2943 .map_sg = map_sg,
2944 .unmap_sg = unmap_sg,
2945 .dma_supported = amd_iommu_dma_supported,
2946 .set_dma_mask = set_dma_mask,
Joerg Roedel6631ee92008-06-26 21:28:05 +02002947};
2948
Joerg Roedel3a18404c2015-05-28 18:41:45 +02002949int __init amd_iommu_init_api(void)
Joerg Roedel27c21272011-05-30 15:56:24 +02002950{
Wan Zongshun9a4d3bf52016-04-01 09:06:05 -04002951 int err = 0;
2952
2953 err = bus_set_iommu(&pci_bus_type, &amd_iommu_ops);
2954 if (err)
2955 return err;
2956#ifdef CONFIG_ARM_AMBA
2957 err = bus_set_iommu(&amba_bustype, &amd_iommu_ops);
2958 if (err)
2959 return err;
2960#endif
2961 return 0;
Joerg Roedelf5325092010-01-22 17:44:35 +01002962}
2963
Joerg Roedel6631ee92008-06-26 21:28:05 +02002964int __init amd_iommu_init_dma_ops(void)
2965{
Joerg Roedel32302322015-07-28 16:58:50 +02002966 swiotlb = iommu_pass_through ? 1 : 0;
Joerg Roedel6631ee92008-06-26 21:28:05 +02002967 iommu_detected = 1;
Joerg Roedel6631ee92008-06-26 21:28:05 +02002968
Joerg Roedel52717822015-07-28 16:58:51 +02002969 /*
2970 * In case we don't initialize SWIOTLB (actually the common case
2971 * when AMD IOMMU is enabled), make sure there are global
2972 * dma_ops set as a fall-back for devices not handled by this
2973 * driver (for example non-PCI devices).
2974 */
2975 if (!swiotlb)
2976 dma_ops = &nommu_dma_ops;
2977
Joerg Roedel62410ee2012-06-12 16:42:43 +02002978 if (amd_iommu_unmap_flush)
2979 pr_info("AMD-Vi: IO/TLB flush on unmap enabled\n");
2980 else
2981 pr_info("AMD-Vi: Lazy IO/TLB flushing enabled\n");
2982
Joerg Roedel6631ee92008-06-26 21:28:05 +02002983 return 0;
Joerg Roedel6631ee92008-06-26 21:28:05 +02002984}
Joerg Roedel6d98cd82008-12-08 12:05:55 +01002985
2986/*****************************************************************************
2987 *
2988 * The following functions belong to the exported interface of AMD IOMMU
2989 *
2990 * This interface allows access to lower level functions of the IOMMU
2991 * like protection domain handling and assignement of devices to domains
2992 * which is not possible with the dma_ops interface.
2993 *
2994 *****************************************************************************/
2995
Joerg Roedel6d98cd82008-12-08 12:05:55 +01002996static void cleanup_domain(struct protection_domain *domain)
2997{
Joerg Roedel9b29d3c2014-08-05 17:50:15 +02002998 struct iommu_dev_data *entry;
Joerg Roedel6d98cd82008-12-08 12:05:55 +01002999 unsigned long flags;
Joerg Roedel6d98cd82008-12-08 12:05:55 +01003000
3001 write_lock_irqsave(&amd_iommu_devtable_lock, flags);
3002
Joerg Roedel9b29d3c2014-08-05 17:50:15 +02003003 while (!list_empty(&domain->dev_list)) {
3004 entry = list_first_entry(&domain->dev_list,
3005 struct iommu_dev_data, list);
3006 __detach_device(entry);
Joerg Roedel492667d2009-11-27 13:25:47 +01003007 }
Joerg Roedel6d98cd82008-12-08 12:05:55 +01003008
3009 write_unlock_irqrestore(&amd_iommu_devtable_lock, flags);
3010}
3011
Joerg Roedel26508152009-08-26 16:52:40 +02003012static void protection_domain_free(struct protection_domain *domain)
3013{
3014 if (!domain)
3015 return;
3016
Joerg Roedelaeb26f52009-11-20 16:44:01 +01003017 del_domain_from_list(domain);
3018
Joerg Roedel26508152009-08-26 16:52:40 +02003019 if (domain->id)
3020 domain_id_free(domain->id);
3021
3022 kfree(domain);
3023}
3024
Joerg Roedel7a5a5662015-06-30 08:56:11 +02003025static int protection_domain_init(struct protection_domain *domain)
3026{
3027 spin_lock_init(&domain->lock);
3028 mutex_init(&domain->api_lock);
3029 domain->id = domain_id_alloc();
3030 if (!domain->id)
3031 return -ENOMEM;
3032 INIT_LIST_HEAD(&domain->dev_list);
3033
3034 return 0;
3035}
3036
Joerg Roedel26508152009-08-26 16:52:40 +02003037static struct protection_domain *protection_domain_alloc(void)
Joerg Roedelc156e342008-12-02 18:13:27 +01003038{
3039 struct protection_domain *domain;
3040
3041 domain = kzalloc(sizeof(*domain), GFP_KERNEL);
3042 if (!domain)
Joerg Roedel26508152009-08-26 16:52:40 +02003043 return NULL;
Joerg Roedelc156e342008-12-02 18:13:27 +01003044
Joerg Roedel7a5a5662015-06-30 08:56:11 +02003045 if (protection_domain_init(domain))
Joerg Roedel26508152009-08-26 16:52:40 +02003046 goto out_err;
3047
Joerg Roedelaeb26f52009-11-20 16:44:01 +01003048 add_domain_to_list(domain);
3049
Joerg Roedel26508152009-08-26 16:52:40 +02003050 return domain;
3051
3052out_err:
3053 kfree(domain);
3054
3055 return NULL;
3056}
3057
Joerg Roedel3f4b87b2015-03-26 13:43:07 +01003058static struct iommu_domain *amd_iommu_domain_alloc(unsigned type)
3059{
3060 struct protection_domain *pdomain;
Joerg Roedel0bb6e242015-05-28 18:41:40 +02003061 struct dma_ops_domain *dma_domain;
Joerg Roedel3f4b87b2015-03-26 13:43:07 +01003062
Joerg Roedel0bb6e242015-05-28 18:41:40 +02003063 switch (type) {
3064 case IOMMU_DOMAIN_UNMANAGED:
3065 pdomain = protection_domain_alloc();
3066 if (!pdomain)
3067 return NULL;
3068
3069 pdomain->mode = PAGE_MODE_3_LEVEL;
3070 pdomain->pt_root = (void *)get_zeroed_page(GFP_KERNEL);
3071 if (!pdomain->pt_root) {
3072 protection_domain_free(pdomain);
3073 return NULL;
3074 }
3075
3076 pdomain->domain.geometry.aperture_start = 0;
3077 pdomain->domain.geometry.aperture_end = ~0ULL;
3078 pdomain->domain.geometry.force_aperture = true;
3079
3080 break;
3081 case IOMMU_DOMAIN_DMA:
3082 dma_domain = dma_ops_domain_alloc();
3083 if (!dma_domain) {
3084 pr_err("AMD-Vi: Failed to allocate\n");
3085 return NULL;
3086 }
3087 pdomain = &dma_domain->domain;
3088 break;
Joerg Roedel07f643a2015-05-28 18:41:41 +02003089 case IOMMU_DOMAIN_IDENTITY:
3090 pdomain = protection_domain_alloc();
3091 if (!pdomain)
3092 return NULL;
3093
3094 pdomain->mode = PAGE_MODE_NONE;
3095 break;
Joerg Roedel0bb6e242015-05-28 18:41:40 +02003096 default:
Joerg Roedel3f4b87b2015-03-26 13:43:07 +01003097 return NULL;
Joerg Roedel0bb6e242015-05-28 18:41:40 +02003098 }
Joerg Roedel3f4b87b2015-03-26 13:43:07 +01003099
3100 return &pdomain->domain;
Joerg Roedel3f4b87b2015-03-26 13:43:07 +01003101}
3102
3103static void amd_iommu_domain_free(struct iommu_domain *dom)
Joerg Roedel26508152009-08-26 16:52:40 +02003104{
3105 struct protection_domain *domain;
3106
Joerg Roedel3f4b87b2015-03-26 13:43:07 +01003107 if (!dom)
Joerg Roedel98383fc2008-12-02 18:34:12 +01003108 return;
3109
Joerg Roedel3f4b87b2015-03-26 13:43:07 +01003110 domain = to_pdomain(dom);
3111
Joerg Roedel98383fc2008-12-02 18:34:12 +01003112 if (domain->dev_cnt > 0)
3113 cleanup_domain(domain);
3114
3115 BUG_ON(domain->dev_cnt != 0);
3116
Joerg Roedel132bd682011-11-17 14:18:46 +01003117 if (domain->mode != PAGE_MODE_NONE)
3118 free_pagetable(domain);
Joerg Roedel98383fc2008-12-02 18:34:12 +01003119
Joerg Roedel52815b72011-11-17 17:24:28 +01003120 if (domain->flags & PD_IOMMUV2_MASK)
3121 free_gcr3_table(domain);
3122
Joerg Roedel8b408fe2010-03-08 14:20:07 +01003123 protection_domain_free(domain);
Joerg Roedel98383fc2008-12-02 18:34:12 +01003124}
3125
Joerg Roedel684f2882008-12-08 12:07:44 +01003126static void amd_iommu_detach_device(struct iommu_domain *dom,
3127 struct device *dev)
3128{
Joerg Roedel657cbb62009-11-23 15:26:46 +01003129 struct iommu_dev_data *dev_data = dev->archdata.iommu;
Joerg Roedel684f2882008-12-08 12:07:44 +01003130 struct amd_iommu *iommu;
Wan Zongshun7aba6cb2016-04-01 09:06:02 -04003131 int devid;
Joerg Roedel684f2882008-12-08 12:07:44 +01003132
Joerg Roedel98fc5a62009-11-24 17:19:23 +01003133 if (!check_device(dev))
Joerg Roedel684f2882008-12-08 12:07:44 +01003134 return;
3135
Joerg Roedel98fc5a62009-11-24 17:19:23 +01003136 devid = get_device_id(dev);
Joerg Roedel9ee35e42016-04-21 18:21:31 +02003137 if (devid < 0)
Wan Zongshun7aba6cb2016-04-01 09:06:02 -04003138 return;
Joerg Roedel684f2882008-12-08 12:07:44 +01003139
Joerg Roedel657cbb62009-11-23 15:26:46 +01003140 if (dev_data->domain != NULL)
Joerg Roedel15898bb2009-11-24 15:39:42 +01003141 detach_device(dev);
Joerg Roedel684f2882008-12-08 12:07:44 +01003142
3143 iommu = amd_iommu_rlookup_table[devid];
3144 if (!iommu)
3145 return;
3146
Joerg Roedel684f2882008-12-08 12:07:44 +01003147 iommu_completion_wait(iommu);
3148}
3149
Joerg Roedel01106062008-12-02 19:34:11 +01003150static int amd_iommu_attach_device(struct iommu_domain *dom,
3151 struct device *dev)
3152{
Joerg Roedel3f4b87b2015-03-26 13:43:07 +01003153 struct protection_domain *domain = to_pdomain(dom);
Joerg Roedel657cbb62009-11-23 15:26:46 +01003154 struct iommu_dev_data *dev_data;
Joerg Roedel01106062008-12-02 19:34:11 +01003155 struct amd_iommu *iommu;
Joerg Roedel15898bb2009-11-24 15:39:42 +01003156 int ret;
Joerg Roedel01106062008-12-02 19:34:11 +01003157
Joerg Roedel98fc5a62009-11-24 17:19:23 +01003158 if (!check_device(dev))
Joerg Roedel01106062008-12-02 19:34:11 +01003159 return -EINVAL;
3160
Joerg Roedel657cbb62009-11-23 15:26:46 +01003161 dev_data = dev->archdata.iommu;
3162
Joerg Roedelf62dda62011-06-09 12:55:35 +02003163 iommu = amd_iommu_rlookup_table[dev_data->devid];
Joerg Roedel01106062008-12-02 19:34:11 +01003164 if (!iommu)
3165 return -EINVAL;
3166
Joerg Roedel657cbb62009-11-23 15:26:46 +01003167 if (dev_data->domain)
Joerg Roedel15898bb2009-11-24 15:39:42 +01003168 detach_device(dev);
Joerg Roedel01106062008-12-02 19:34:11 +01003169
Joerg Roedel15898bb2009-11-24 15:39:42 +01003170 ret = attach_device(dev, domain);
Joerg Roedel01106062008-12-02 19:34:11 +01003171
3172 iommu_completion_wait(iommu);
3173
Joerg Roedel15898bb2009-11-24 15:39:42 +01003174 return ret;
Joerg Roedel01106062008-12-02 19:34:11 +01003175}
3176
Joerg Roedel468e2362010-01-21 16:37:36 +01003177static int amd_iommu_map(struct iommu_domain *dom, unsigned long iova,
Ohad Ben-Cohen50090652011-11-10 11:32:25 +02003178 phys_addr_t paddr, size_t page_size, int iommu_prot)
Joerg Roedelc6229ca2008-12-02 19:48:43 +01003179{
Joerg Roedel3f4b87b2015-03-26 13:43:07 +01003180 struct protection_domain *domain = to_pdomain(dom);
Joerg Roedelc6229ca2008-12-02 19:48:43 +01003181 int prot = 0;
3182 int ret;
3183
Joerg Roedel132bd682011-11-17 14:18:46 +01003184 if (domain->mode == PAGE_MODE_NONE)
3185 return -EINVAL;
3186
Joerg Roedelc6229ca2008-12-02 19:48:43 +01003187 if (iommu_prot & IOMMU_READ)
3188 prot |= IOMMU_PROT_IR;
3189 if (iommu_prot & IOMMU_WRITE)
3190 prot |= IOMMU_PROT_IW;
3191
Joerg Roedel5d214fe2010-02-08 14:44:49 +01003192 mutex_lock(&domain->api_lock);
Joerg Roedel795e74f2010-05-11 17:40:57 +02003193 ret = iommu_map_page(domain, iova, paddr, prot, page_size);
Joerg Roedel5d214fe2010-02-08 14:44:49 +01003194 mutex_unlock(&domain->api_lock);
3195
Joerg Roedel795e74f2010-05-11 17:40:57 +02003196 return ret;
Joerg Roedelc6229ca2008-12-02 19:48:43 +01003197}
3198
Ohad Ben-Cohen50090652011-11-10 11:32:25 +02003199static size_t amd_iommu_unmap(struct iommu_domain *dom, unsigned long iova,
3200 size_t page_size)
Joerg Roedeleb74ff62008-12-02 19:59:10 +01003201{
Joerg Roedel3f4b87b2015-03-26 13:43:07 +01003202 struct protection_domain *domain = to_pdomain(dom);
Ohad Ben-Cohen50090652011-11-10 11:32:25 +02003203 size_t unmap_size;
Joerg Roedeleb74ff62008-12-02 19:59:10 +01003204
Joerg Roedel132bd682011-11-17 14:18:46 +01003205 if (domain->mode == PAGE_MODE_NONE)
3206 return -EINVAL;
3207
Joerg Roedel5d214fe2010-02-08 14:44:49 +01003208 mutex_lock(&domain->api_lock);
Joerg Roedel468e2362010-01-21 16:37:36 +01003209 unmap_size = iommu_unmap_page(domain, iova, page_size);
Joerg Roedel795e74f2010-05-11 17:40:57 +02003210 mutex_unlock(&domain->api_lock);
Joerg Roedeleb74ff62008-12-02 19:59:10 +01003211
Joerg Roedel17b124b2011-04-06 18:01:35 +02003212 domain_flush_tlb_pde(domain);
Joerg Roedel5d214fe2010-02-08 14:44:49 +01003213
Ohad Ben-Cohen50090652011-11-10 11:32:25 +02003214 return unmap_size;
Joerg Roedeleb74ff62008-12-02 19:59:10 +01003215}
3216
Joerg Roedel645c4c82008-12-02 20:05:50 +01003217static phys_addr_t amd_iommu_iova_to_phys(struct iommu_domain *dom,
Varun Sethibb5547ac2013-03-29 01:23:58 +05303218 dma_addr_t iova)
Joerg Roedel645c4c82008-12-02 20:05:50 +01003219{
Joerg Roedel3f4b87b2015-03-26 13:43:07 +01003220 struct protection_domain *domain = to_pdomain(dom);
Joerg Roedel3039ca12015-04-01 14:58:48 +02003221 unsigned long offset_mask, pte_pgsize;
Joerg Roedelf03152b2010-01-21 16:15:24 +01003222 u64 *pte, __pte;
Joerg Roedel645c4c82008-12-02 20:05:50 +01003223
Joerg Roedel132bd682011-11-17 14:18:46 +01003224 if (domain->mode == PAGE_MODE_NONE)
3225 return iova;
3226
Joerg Roedel3039ca12015-04-01 14:58:48 +02003227 pte = fetch_pte(domain, iova, &pte_pgsize);
Joerg Roedel645c4c82008-12-02 20:05:50 +01003228
Joerg Roedela6d41a42009-09-02 17:08:55 +02003229 if (!pte || !IOMMU_PTE_PRESENT(*pte))
Joerg Roedel645c4c82008-12-02 20:05:50 +01003230 return 0;
3231
Joerg Roedelb24b1b62015-04-01 14:58:51 +02003232 offset_mask = pte_pgsize - 1;
3233 __pte = *pte & PM_ADDR_MASK;
Joerg Roedelf03152b2010-01-21 16:15:24 +01003234
Joerg Roedelb24b1b62015-04-01 14:58:51 +02003235 return (__pte & ~offset_mask) | (iova & offset_mask);
Joerg Roedel645c4c82008-12-02 20:05:50 +01003236}
3237
Joerg Roedelab636482014-09-05 10:48:21 +02003238static bool amd_iommu_capable(enum iommu_cap cap)
Sheng Yangdbb9fd82009-03-18 15:33:06 +08003239{
Joerg Roedel80a506b2010-07-27 17:14:24 +02003240 switch (cap) {
3241 case IOMMU_CAP_CACHE_COHERENCY:
Joerg Roedelab636482014-09-05 10:48:21 +02003242 return true;
Joerg Roedelbdddadc2012-07-02 18:38:13 +02003243 case IOMMU_CAP_INTR_REMAP:
Joerg Roedelab636482014-09-05 10:48:21 +02003244 return (irq_remapping_enabled == 1);
Will Deaconcfdeec22014-10-27 11:24:48 +00003245 case IOMMU_CAP_NOEXEC:
3246 return false;
Joerg Roedel80a506b2010-07-27 17:14:24 +02003247 }
3248
Joerg Roedelab636482014-09-05 10:48:21 +02003249 return false;
Sheng Yangdbb9fd82009-03-18 15:33:06 +08003250}
3251
Joerg Roedel35cf2482015-05-28 18:41:37 +02003252static void amd_iommu_get_dm_regions(struct device *dev,
3253 struct list_head *head)
3254{
3255 struct unity_map_entry *entry;
Wan Zongshun7aba6cb2016-04-01 09:06:02 -04003256 int devid;
Joerg Roedel35cf2482015-05-28 18:41:37 +02003257
3258 devid = get_device_id(dev);
Joerg Roedel9ee35e42016-04-21 18:21:31 +02003259 if (devid < 0)
Wan Zongshun7aba6cb2016-04-01 09:06:02 -04003260 return;
Joerg Roedel35cf2482015-05-28 18:41:37 +02003261
3262 list_for_each_entry(entry, &amd_iommu_unity_map, list) {
3263 struct iommu_dm_region *region;
3264
3265 if (devid < entry->devid_start || devid > entry->devid_end)
3266 continue;
3267
3268 region = kzalloc(sizeof(*region), GFP_KERNEL);
3269 if (!region) {
3270 pr_err("Out of memory allocating dm-regions for %s\n",
3271 dev_name(dev));
3272 return;
3273 }
3274
3275 region->start = entry->address_start;
3276 region->length = entry->address_end - entry->address_start;
3277 if (entry->prot & IOMMU_PROT_IR)
3278 region->prot |= IOMMU_READ;
3279 if (entry->prot & IOMMU_PROT_IW)
3280 region->prot |= IOMMU_WRITE;
3281
3282 list_add_tail(&region->list, head);
3283 }
3284}
3285
3286static void amd_iommu_put_dm_regions(struct device *dev,
3287 struct list_head *head)
3288{
3289 struct iommu_dm_region *entry, *next;
3290
3291 list_for_each_entry_safe(entry, next, head, list)
3292 kfree(entry);
3293}
3294
Thierry Redingb22f6432014-06-27 09:03:12 +02003295static const struct iommu_ops amd_iommu_ops = {
Joerg Roedelab636482014-09-05 10:48:21 +02003296 .capable = amd_iommu_capable,
Joerg Roedel3f4b87b2015-03-26 13:43:07 +01003297 .domain_alloc = amd_iommu_domain_alloc,
3298 .domain_free = amd_iommu_domain_free,
Joerg Roedel26961ef2008-12-03 17:00:17 +01003299 .attach_dev = amd_iommu_attach_device,
3300 .detach_dev = amd_iommu_detach_device,
Joerg Roedel468e2362010-01-21 16:37:36 +01003301 .map = amd_iommu_map,
3302 .unmap = amd_iommu_unmap,
Olav Haugan315786e2014-10-25 09:55:16 -07003303 .map_sg = default_iommu_map_sg,
Joerg Roedel26961ef2008-12-03 17:00:17 +01003304 .iova_to_phys = amd_iommu_iova_to_phys,
Joerg Roedelaafd8ba2015-05-28 18:41:39 +02003305 .add_device = amd_iommu_add_device,
3306 .remove_device = amd_iommu_remove_device,
Wan Zongshunb097d112016-04-01 09:06:04 -04003307 .device_group = amd_iommu_device_group,
Joerg Roedel35cf2482015-05-28 18:41:37 +02003308 .get_dm_regions = amd_iommu_get_dm_regions,
3309 .put_dm_regions = amd_iommu_put_dm_regions,
Ohad Ben-Cohenaa3de9c2011-11-10 11:32:29 +02003310 .pgsize_bitmap = AMD_IOMMU_PGSIZES,
Joerg Roedel26961ef2008-12-03 17:00:17 +01003311};
3312
Joerg Roedel0feae532009-08-26 15:26:30 +02003313/*****************************************************************************
3314 *
3315 * The next functions do a basic initialization of IOMMU for pass through
3316 * mode
3317 *
3318 * In passthrough mode the IOMMU is initialized and enabled but not used for
3319 * DMA-API translation.
3320 *
3321 *****************************************************************************/
3322
Joerg Roedel72e1dcc2011-11-10 19:13:51 +01003323/* IOMMUv2 specific functions */
3324int amd_iommu_register_ppr_notifier(struct notifier_block *nb)
3325{
3326 return atomic_notifier_chain_register(&ppr_notifier, nb);
3327}
3328EXPORT_SYMBOL(amd_iommu_register_ppr_notifier);
3329
3330int amd_iommu_unregister_ppr_notifier(struct notifier_block *nb)
3331{
3332 return atomic_notifier_chain_unregister(&ppr_notifier, nb);
3333}
3334EXPORT_SYMBOL(amd_iommu_unregister_ppr_notifier);
Joerg Roedel132bd682011-11-17 14:18:46 +01003335
3336void amd_iommu_domain_direct_map(struct iommu_domain *dom)
3337{
Joerg Roedel3f4b87b2015-03-26 13:43:07 +01003338 struct protection_domain *domain = to_pdomain(dom);
Joerg Roedel132bd682011-11-17 14:18:46 +01003339 unsigned long flags;
3340
3341 spin_lock_irqsave(&domain->lock, flags);
3342
3343 /* Update data structure */
3344 domain->mode = PAGE_MODE_NONE;
3345 domain->updated = true;
3346
3347 /* Make changes visible to IOMMUs */
3348 update_domain(domain);
3349
3350 /* Page-table is not visible to IOMMU anymore, so free it */
3351 free_pagetable(domain);
3352
3353 spin_unlock_irqrestore(&domain->lock, flags);
3354}
3355EXPORT_SYMBOL(amd_iommu_domain_direct_map);
Joerg Roedel52815b72011-11-17 17:24:28 +01003356
3357int amd_iommu_domain_enable_v2(struct iommu_domain *dom, int pasids)
3358{
Joerg Roedel3f4b87b2015-03-26 13:43:07 +01003359 struct protection_domain *domain = to_pdomain(dom);
Joerg Roedel52815b72011-11-17 17:24:28 +01003360 unsigned long flags;
3361 int levels, ret;
3362
3363 if (pasids <= 0 || pasids > (PASID_MASK + 1))
3364 return -EINVAL;
3365
3366 /* Number of GCR3 table levels required */
3367 for (levels = 0; (pasids - 1) & ~0x1ff; pasids >>= 9)
3368 levels += 1;
3369
3370 if (levels > amd_iommu_max_glx_val)
3371 return -EINVAL;
3372
3373 spin_lock_irqsave(&domain->lock, flags);
3374
3375 /*
3376 * Save us all sanity checks whether devices already in the
3377 * domain support IOMMUv2. Just force that the domain has no
3378 * devices attached when it is switched into IOMMUv2 mode.
3379 */
3380 ret = -EBUSY;
3381 if (domain->dev_cnt > 0 || domain->flags & PD_IOMMUV2_MASK)
3382 goto out;
3383
3384 ret = -ENOMEM;
3385 domain->gcr3_tbl = (void *)get_zeroed_page(GFP_ATOMIC);
3386 if (domain->gcr3_tbl == NULL)
3387 goto out;
3388
3389 domain->glx = levels;
3390 domain->flags |= PD_IOMMUV2_MASK;
3391 domain->updated = true;
3392
3393 update_domain(domain);
3394
3395 ret = 0;
3396
3397out:
3398 spin_unlock_irqrestore(&domain->lock, flags);
3399
3400 return ret;
3401}
3402EXPORT_SYMBOL(amd_iommu_domain_enable_v2);
Joerg Roedel22e266c2011-11-21 15:59:08 +01003403
3404static int __flush_pasid(struct protection_domain *domain, int pasid,
3405 u64 address, bool size)
3406{
3407 struct iommu_dev_data *dev_data;
3408 struct iommu_cmd cmd;
3409 int i, ret;
3410
3411 if (!(domain->flags & PD_IOMMUV2_MASK))
3412 return -EINVAL;
3413
3414 build_inv_iommu_pasid(&cmd, domain->id, pasid, address, size);
3415
3416 /*
3417 * IOMMU TLB needs to be flushed before Device TLB to
3418 * prevent device TLB refill from IOMMU TLB
3419 */
3420 for (i = 0; i < amd_iommus_present; ++i) {
3421 if (domain->dev_iommu[i] == 0)
3422 continue;
3423
3424 ret = iommu_queue_command(amd_iommus[i], &cmd);
3425 if (ret != 0)
3426 goto out;
3427 }
3428
3429 /* Wait until IOMMU TLB flushes are complete */
3430 domain_flush_complete(domain);
3431
3432 /* Now flush device TLBs */
3433 list_for_each_entry(dev_data, &domain->dev_list, list) {
3434 struct amd_iommu *iommu;
3435 int qdep;
3436
Joerg Roedel1c1cc452015-07-30 11:24:45 +02003437 /*
3438 There might be non-IOMMUv2 capable devices in an IOMMUv2
3439 * domain.
3440 */
3441 if (!dev_data->ats.enabled)
3442 continue;
Joerg Roedel22e266c2011-11-21 15:59:08 +01003443
3444 qdep = dev_data->ats.qdep;
3445 iommu = amd_iommu_rlookup_table[dev_data->devid];
3446
3447 build_inv_iotlb_pasid(&cmd, dev_data->devid, pasid,
3448 qdep, address, size);
3449
3450 ret = iommu_queue_command(iommu, &cmd);
3451 if (ret != 0)
3452 goto out;
3453 }
3454
3455 /* Wait until all device TLBs are flushed */
3456 domain_flush_complete(domain);
3457
3458 ret = 0;
3459
3460out:
3461
3462 return ret;
3463}
3464
3465static int __amd_iommu_flush_page(struct protection_domain *domain, int pasid,
3466 u64 address)
3467{
3468 return __flush_pasid(domain, pasid, address, false);
3469}
3470
3471int amd_iommu_flush_page(struct iommu_domain *dom, int pasid,
3472 u64 address)
3473{
Joerg Roedel3f4b87b2015-03-26 13:43:07 +01003474 struct protection_domain *domain = to_pdomain(dom);
Joerg Roedel22e266c2011-11-21 15:59:08 +01003475 unsigned long flags;
3476 int ret;
3477
3478 spin_lock_irqsave(&domain->lock, flags);
3479 ret = __amd_iommu_flush_page(domain, pasid, address);
3480 spin_unlock_irqrestore(&domain->lock, flags);
3481
3482 return ret;
3483}
3484EXPORT_SYMBOL(amd_iommu_flush_page);
3485
3486static int __amd_iommu_flush_tlb(struct protection_domain *domain, int pasid)
3487{
3488 return __flush_pasid(domain, pasid, CMD_INV_IOMMU_ALL_PAGES_ADDRESS,
3489 true);
3490}
3491
3492int amd_iommu_flush_tlb(struct iommu_domain *dom, int pasid)
3493{
Joerg Roedel3f4b87b2015-03-26 13:43:07 +01003494 struct protection_domain *domain = to_pdomain(dom);
Joerg Roedel22e266c2011-11-21 15:59:08 +01003495 unsigned long flags;
3496 int ret;
3497
3498 spin_lock_irqsave(&domain->lock, flags);
3499 ret = __amd_iommu_flush_tlb(domain, pasid);
3500 spin_unlock_irqrestore(&domain->lock, flags);
3501
3502 return ret;
3503}
3504EXPORT_SYMBOL(amd_iommu_flush_tlb);
3505
Joerg Roedelb16137b2011-11-21 16:50:23 +01003506static u64 *__get_gcr3_pte(u64 *root, int level, int pasid, bool alloc)
3507{
3508 int index;
3509 u64 *pte;
3510
3511 while (true) {
3512
3513 index = (pasid >> (9 * level)) & 0x1ff;
3514 pte = &root[index];
3515
3516 if (level == 0)
3517 break;
3518
3519 if (!(*pte & GCR3_VALID)) {
3520 if (!alloc)
3521 return NULL;
3522
3523 root = (void *)get_zeroed_page(GFP_ATOMIC);
3524 if (root == NULL)
3525 return NULL;
3526
3527 *pte = __pa(root) | GCR3_VALID;
3528 }
3529
3530 root = __va(*pte & PAGE_MASK);
3531
3532 level -= 1;
3533 }
3534
3535 return pte;
3536}
3537
3538static int __set_gcr3(struct protection_domain *domain, int pasid,
3539 unsigned long cr3)
3540{
3541 u64 *pte;
3542
3543 if (domain->mode != PAGE_MODE_NONE)
3544 return -EINVAL;
3545
3546 pte = __get_gcr3_pte(domain->gcr3_tbl, domain->glx, pasid, true);
3547 if (pte == NULL)
3548 return -ENOMEM;
3549
3550 *pte = (cr3 & PAGE_MASK) | GCR3_VALID;
3551
3552 return __amd_iommu_flush_tlb(domain, pasid);
3553}
3554
3555static int __clear_gcr3(struct protection_domain *domain, int pasid)
3556{
3557 u64 *pte;
3558
3559 if (domain->mode != PAGE_MODE_NONE)
3560 return -EINVAL;
3561
3562 pte = __get_gcr3_pte(domain->gcr3_tbl, domain->glx, pasid, false);
3563 if (pte == NULL)
3564 return 0;
3565
3566 *pte = 0;
3567
3568 return __amd_iommu_flush_tlb(domain, pasid);
3569}
3570
3571int amd_iommu_domain_set_gcr3(struct iommu_domain *dom, int pasid,
3572 unsigned long cr3)
3573{
Joerg Roedel3f4b87b2015-03-26 13:43:07 +01003574 struct protection_domain *domain = to_pdomain(dom);
Joerg Roedelb16137b2011-11-21 16:50:23 +01003575 unsigned long flags;
3576 int ret;
3577
3578 spin_lock_irqsave(&domain->lock, flags);
3579 ret = __set_gcr3(domain, pasid, cr3);
3580 spin_unlock_irqrestore(&domain->lock, flags);
3581
3582 return ret;
3583}
3584EXPORT_SYMBOL(amd_iommu_domain_set_gcr3);
3585
3586int amd_iommu_domain_clear_gcr3(struct iommu_domain *dom, int pasid)
3587{
Joerg Roedel3f4b87b2015-03-26 13:43:07 +01003588 struct protection_domain *domain = to_pdomain(dom);
Joerg Roedelb16137b2011-11-21 16:50:23 +01003589 unsigned long flags;
3590 int ret;
3591
3592 spin_lock_irqsave(&domain->lock, flags);
3593 ret = __clear_gcr3(domain, pasid);
3594 spin_unlock_irqrestore(&domain->lock, flags);
3595
3596 return ret;
3597}
3598EXPORT_SYMBOL(amd_iommu_domain_clear_gcr3);
Joerg Roedelc99afa22011-11-21 18:19:25 +01003599
3600int amd_iommu_complete_ppr(struct pci_dev *pdev, int pasid,
3601 int status, int tag)
3602{
3603 struct iommu_dev_data *dev_data;
3604 struct amd_iommu *iommu;
3605 struct iommu_cmd cmd;
3606
3607 dev_data = get_dev_data(&pdev->dev);
3608 iommu = amd_iommu_rlookup_table[dev_data->devid];
3609
3610 build_complete_ppr(&cmd, dev_data->devid, pasid, status,
3611 tag, dev_data->pri_tlp);
3612
3613 return iommu_queue_command(iommu, &cmd);
3614}
3615EXPORT_SYMBOL(amd_iommu_complete_ppr);
Joerg Roedelf3572db2011-11-23 12:36:25 +01003616
3617struct iommu_domain *amd_iommu_get_v2_domain(struct pci_dev *pdev)
3618{
Joerg Roedel3f4b87b2015-03-26 13:43:07 +01003619 struct protection_domain *pdomain;
Joerg Roedelf3572db2011-11-23 12:36:25 +01003620
Joerg Roedel3f4b87b2015-03-26 13:43:07 +01003621 pdomain = get_domain(&pdev->dev);
3622 if (IS_ERR(pdomain))
Joerg Roedelf3572db2011-11-23 12:36:25 +01003623 return NULL;
3624
3625 /* Only return IOMMUv2 domains */
Joerg Roedel3f4b87b2015-03-26 13:43:07 +01003626 if (!(pdomain->flags & PD_IOMMUV2_MASK))
Joerg Roedelf3572db2011-11-23 12:36:25 +01003627 return NULL;
3628
Joerg Roedel3f4b87b2015-03-26 13:43:07 +01003629 return &pdomain->domain;
Joerg Roedelf3572db2011-11-23 12:36:25 +01003630}
3631EXPORT_SYMBOL(amd_iommu_get_v2_domain);
Joerg Roedel6a113dd2011-12-01 12:04:58 +01003632
3633void amd_iommu_enable_device_erratum(struct pci_dev *pdev, u32 erratum)
3634{
3635 struct iommu_dev_data *dev_data;
3636
3637 if (!amd_iommu_v2_supported())
3638 return;
3639
3640 dev_data = get_dev_data(&pdev->dev);
3641 dev_data->errata |= (1 << erratum);
3642}
3643EXPORT_SYMBOL(amd_iommu_enable_device_erratum);
Joerg Roedel52efdb82011-12-07 12:01:36 +01003644
3645int amd_iommu_device_info(struct pci_dev *pdev,
3646 struct amd_iommu_device_info *info)
3647{
3648 int max_pasids;
3649 int pos;
3650
3651 if (pdev == NULL || info == NULL)
3652 return -EINVAL;
3653
3654 if (!amd_iommu_v2_supported())
3655 return -EINVAL;
3656
3657 memset(info, 0, sizeof(*info));
3658
3659 pos = pci_find_ext_capability(pdev, PCI_EXT_CAP_ID_ATS);
3660 if (pos)
3661 info->flags |= AMD_IOMMU_DEVICE_FLAG_ATS_SUP;
3662
3663 pos = pci_find_ext_capability(pdev, PCI_EXT_CAP_ID_PRI);
3664 if (pos)
3665 info->flags |= AMD_IOMMU_DEVICE_FLAG_PRI_SUP;
3666
3667 pos = pci_find_ext_capability(pdev, PCI_EXT_CAP_ID_PASID);
3668 if (pos) {
3669 int features;
3670
3671 max_pasids = 1 << (9 * (amd_iommu_max_glx_val + 1));
3672 max_pasids = min(max_pasids, (1 << 20));
3673
3674 info->flags |= AMD_IOMMU_DEVICE_FLAG_PASID_SUP;
3675 info->max_pasids = min(pci_max_pasids(pdev), max_pasids);
3676
3677 features = pci_pasid_features(pdev);
3678 if (features & PCI_PASID_CAP_EXEC)
3679 info->flags |= AMD_IOMMU_DEVICE_FLAG_EXEC_SUP;
3680 if (features & PCI_PASID_CAP_PRIV)
3681 info->flags |= AMD_IOMMU_DEVICE_FLAG_PRIV_SUP;
3682 }
3683
3684 return 0;
3685}
3686EXPORT_SYMBOL(amd_iommu_device_info);
Joerg Roedel2b324502012-06-21 16:29:10 +02003687
3688#ifdef CONFIG_IRQ_REMAP
3689
3690/*****************************************************************************
3691 *
3692 * Interrupt Remapping Implementation
3693 *
3694 *****************************************************************************/
3695
3696union irte {
3697 u32 val;
3698 struct {
3699 u32 valid : 1,
3700 no_fault : 1,
3701 int_type : 3,
3702 rq_eoi : 1,
3703 dm : 1,
3704 rsvd_1 : 1,
3705 destination : 8,
3706 vector : 8,
3707 rsvd_2 : 8;
3708 } fields;
3709};
3710
Jiang Liu9c724962015-04-14 10:29:52 +08003711struct irq_2_irte {
3712 u16 devid; /* Device ID for IRTE table */
3713 u16 index; /* Index into IRTE table*/
3714};
3715
Jiang Liu7c71d302015-04-13 14:11:33 +08003716struct amd_ir_data {
3717 struct irq_2_irte irq_2_irte;
3718 union irte irte_entry;
3719 union {
3720 struct msi_msg msi_entry;
3721 };
3722};
3723
3724static struct irq_chip amd_ir_chip;
3725
Joerg Roedel2b324502012-06-21 16:29:10 +02003726#define DTE_IRQ_PHYS_ADDR_MASK (((1ULL << 45)-1) << 6)
3727#define DTE_IRQ_REMAP_INTCTL (2ULL << 60)
3728#define DTE_IRQ_TABLE_LEN (8ULL << 1)
3729#define DTE_IRQ_REMAP_ENABLE 1ULL
3730
3731static void set_dte_irq_entry(u16 devid, struct irq_remap_table *table)
3732{
3733 u64 dte;
3734
3735 dte = amd_iommu_dev_table[devid].data[2];
3736 dte &= ~DTE_IRQ_PHYS_ADDR_MASK;
3737 dte |= virt_to_phys(table->table);
3738 dte |= DTE_IRQ_REMAP_INTCTL;
3739 dte |= DTE_IRQ_TABLE_LEN;
3740 dte |= DTE_IRQ_REMAP_ENABLE;
3741
3742 amd_iommu_dev_table[devid].data[2] = dte;
3743}
3744
3745#define IRTE_ALLOCATED (~1U)
3746
3747static struct irq_remap_table *get_irq_table(u16 devid, bool ioapic)
3748{
3749 struct irq_remap_table *table = NULL;
3750 struct amd_iommu *iommu;
3751 unsigned long flags;
3752 u16 alias;
3753
3754 write_lock_irqsave(&amd_iommu_devtable_lock, flags);
3755
3756 iommu = amd_iommu_rlookup_table[devid];
3757 if (!iommu)
3758 goto out_unlock;
3759
3760 table = irq_lookup_table[devid];
3761 if (table)
3762 goto out;
3763
3764 alias = amd_iommu_alias_table[devid];
3765 table = irq_lookup_table[alias];
3766 if (table) {
3767 irq_lookup_table[devid] = table;
3768 set_dte_irq_entry(devid, table);
3769 iommu_flush_dte(iommu, devid);
3770 goto out;
3771 }
3772
3773 /* Nothing there yet, allocate new irq remapping table */
3774 table = kzalloc(sizeof(*table), GFP_ATOMIC);
3775 if (!table)
3776 goto out;
3777
Joerg Roedel197887f2013-04-09 21:14:08 +02003778 /* Initialize table spin-lock */
3779 spin_lock_init(&table->lock);
3780
Joerg Roedel2b324502012-06-21 16:29:10 +02003781 if (ioapic)
3782 /* Keep the first 32 indexes free for IOAPIC interrupts */
3783 table->min_index = 32;
3784
3785 table->table = kmem_cache_alloc(amd_iommu_irq_cache, GFP_ATOMIC);
3786 if (!table->table) {
3787 kfree(table);
Dan Carpenter821f0f62012-10-02 11:34:40 +03003788 table = NULL;
Joerg Roedel2b324502012-06-21 16:29:10 +02003789 goto out;
3790 }
3791
3792 memset(table->table, 0, MAX_IRQS_PER_TABLE * sizeof(u32));
3793
3794 if (ioapic) {
3795 int i;
3796
3797 for (i = 0; i < 32; ++i)
3798 table->table[i] = IRTE_ALLOCATED;
3799 }
3800
3801 irq_lookup_table[devid] = table;
3802 set_dte_irq_entry(devid, table);
3803 iommu_flush_dte(iommu, devid);
3804 if (devid != alias) {
3805 irq_lookup_table[alias] = table;
Alex Williamsone028a9e2014-04-22 10:08:40 -06003806 set_dte_irq_entry(alias, table);
Joerg Roedel2b324502012-06-21 16:29:10 +02003807 iommu_flush_dte(iommu, alias);
3808 }
3809
3810out:
3811 iommu_completion_wait(iommu);
3812
3813out_unlock:
3814 write_unlock_irqrestore(&amd_iommu_devtable_lock, flags);
3815
3816 return table;
3817}
3818
Jiang Liu3c3d4f92015-04-13 14:11:38 +08003819static int alloc_irq_index(u16 devid, int count)
Joerg Roedel2b324502012-06-21 16:29:10 +02003820{
3821 struct irq_remap_table *table;
3822 unsigned long flags;
3823 int index, c;
3824
3825 table = get_irq_table(devid, false);
3826 if (!table)
3827 return -ENODEV;
3828
3829 spin_lock_irqsave(&table->lock, flags);
3830
3831 /* Scan table for free entries */
3832 for (c = 0, index = table->min_index;
3833 index < MAX_IRQS_PER_TABLE;
3834 ++index) {
3835 if (table->table[index] == 0)
3836 c += 1;
3837 else
3838 c = 0;
3839
3840 if (c == count) {
Joerg Roedel2b324502012-06-21 16:29:10 +02003841 for (; c != 0; --c)
3842 table->table[index - c + 1] = IRTE_ALLOCATED;
3843
3844 index -= count - 1;
Joerg Roedel2b324502012-06-21 16:29:10 +02003845 goto out;
3846 }
3847 }
3848
3849 index = -ENOSPC;
3850
3851out:
3852 spin_unlock_irqrestore(&table->lock, flags);
3853
3854 return index;
3855}
3856
Joerg Roedel2b324502012-06-21 16:29:10 +02003857static int modify_irte(u16 devid, int index, union irte irte)
3858{
3859 struct irq_remap_table *table;
3860 struct amd_iommu *iommu;
3861 unsigned long flags;
3862
3863 iommu = amd_iommu_rlookup_table[devid];
3864 if (iommu == NULL)
3865 return -EINVAL;
3866
3867 table = get_irq_table(devid, false);
3868 if (!table)
3869 return -ENOMEM;
3870
3871 spin_lock_irqsave(&table->lock, flags);
3872 table->table[index] = irte.val;
3873 spin_unlock_irqrestore(&table->lock, flags);
3874
3875 iommu_flush_irt(iommu, devid);
3876 iommu_completion_wait(iommu);
3877
3878 return 0;
3879}
3880
3881static void free_irte(u16 devid, int index)
3882{
3883 struct irq_remap_table *table;
3884 struct amd_iommu *iommu;
3885 unsigned long flags;
3886
3887 iommu = amd_iommu_rlookup_table[devid];
3888 if (iommu == NULL)
3889 return;
3890
3891 table = get_irq_table(devid, false);
3892 if (!table)
3893 return;
3894
3895 spin_lock_irqsave(&table->lock, flags);
3896 table->table[index] = 0;
3897 spin_unlock_irqrestore(&table->lock, flags);
3898
3899 iommu_flush_irt(iommu, devid);
3900 iommu_completion_wait(iommu);
3901}
3902
Jiang Liu7c71d302015-04-13 14:11:33 +08003903static int get_devid(struct irq_alloc_info *info)
Joerg Roedel5527de72012-06-26 11:17:32 +02003904{
Jiang Liu7c71d302015-04-13 14:11:33 +08003905 int devid = -1;
Joerg Roedel5527de72012-06-26 11:17:32 +02003906
Jiang Liu7c71d302015-04-13 14:11:33 +08003907 switch (info->type) {
3908 case X86_IRQ_ALLOC_TYPE_IOAPIC:
3909 devid = get_ioapic_devid(info->ioapic_id);
3910 break;
3911 case X86_IRQ_ALLOC_TYPE_HPET:
3912 devid = get_hpet_devid(info->hpet_id);
3913 break;
3914 case X86_IRQ_ALLOC_TYPE_MSI:
3915 case X86_IRQ_ALLOC_TYPE_MSIX:
3916 devid = get_device_id(&info->msi_dev->dev);
3917 break;
3918 default:
3919 BUG_ON(1);
3920 break;
Joerg Roedel5527de72012-06-26 11:17:32 +02003921 }
3922
Jiang Liu7c71d302015-04-13 14:11:33 +08003923 return devid;
Joerg Roedel5527de72012-06-26 11:17:32 +02003924}
3925
Jiang Liu7c71d302015-04-13 14:11:33 +08003926static struct irq_domain *get_ir_irq_domain(struct irq_alloc_info *info)
Joerg Roedel5527de72012-06-26 11:17:32 +02003927{
Jiang Liu7c71d302015-04-13 14:11:33 +08003928 struct amd_iommu *iommu;
3929 int devid;
Joerg Roedel5527de72012-06-26 11:17:32 +02003930
Jiang Liu7c71d302015-04-13 14:11:33 +08003931 if (!info)
3932 return NULL;
Joerg Roedel5527de72012-06-26 11:17:32 +02003933
Jiang Liu7c71d302015-04-13 14:11:33 +08003934 devid = get_devid(info);
3935 if (devid >= 0) {
3936 iommu = amd_iommu_rlookup_table[devid];
3937 if (iommu)
3938 return iommu->ir_domain;
3939 }
Joerg Roedel5527de72012-06-26 11:17:32 +02003940
Jiang Liu7c71d302015-04-13 14:11:33 +08003941 return NULL;
Joerg Roedel5527de72012-06-26 11:17:32 +02003942}
3943
Jiang Liu7c71d302015-04-13 14:11:33 +08003944static struct irq_domain *get_irq_domain(struct irq_alloc_info *info)
Joerg Roedel0b4d48c2012-06-26 14:54:17 +02003945{
Jiang Liu7c71d302015-04-13 14:11:33 +08003946 struct amd_iommu *iommu;
3947 int devid;
Joerg Roedel0b4d48c2012-06-26 14:54:17 +02003948
Jiang Liu7c71d302015-04-13 14:11:33 +08003949 if (!info)
3950 return NULL;
Joerg Roedel0b4d48c2012-06-26 14:54:17 +02003951
Jiang Liu7c71d302015-04-13 14:11:33 +08003952 switch (info->type) {
3953 case X86_IRQ_ALLOC_TYPE_MSI:
3954 case X86_IRQ_ALLOC_TYPE_MSIX:
3955 devid = get_device_id(&info->msi_dev->dev);
Joerg Roedel9ee35e42016-04-21 18:21:31 +02003956 if (devid < 0)
Wan Zongshun7aba6cb2016-04-01 09:06:02 -04003957 return NULL;
3958
Dan Carpenter1fb260b2016-01-07 12:36:06 +03003959 iommu = amd_iommu_rlookup_table[devid];
3960 if (iommu)
3961 return iommu->msi_domain;
Jiang Liu7c71d302015-04-13 14:11:33 +08003962 break;
3963 default:
3964 break;
3965 }
Joerg Roedel0b4d48c2012-06-26 14:54:17 +02003966
Jiang Liu7c71d302015-04-13 14:11:33 +08003967 return NULL;
Joerg Roedeld9761952012-06-26 16:00:08 +02003968}
3969
Joerg Roedel6b474b82012-06-26 16:46:04 +02003970struct irq_remap_ops amd_iommu_irq_ops = {
Joerg Roedel6b474b82012-06-26 16:46:04 +02003971 .prepare = amd_iommu_prepare,
3972 .enable = amd_iommu_enable,
3973 .disable = amd_iommu_disable,
3974 .reenable = amd_iommu_reenable,
3975 .enable_faulting = amd_iommu_enable_faulting,
Jiang Liu7c71d302015-04-13 14:11:33 +08003976 .get_ir_irq_domain = get_ir_irq_domain,
3977 .get_irq_domain = get_irq_domain,
Joerg Roedel6b474b82012-06-26 16:46:04 +02003978};
Jiang Liu7c71d302015-04-13 14:11:33 +08003979
3980static void irq_remapping_prepare_irte(struct amd_ir_data *data,
3981 struct irq_cfg *irq_cfg,
3982 struct irq_alloc_info *info,
3983 int devid, int index, int sub_handle)
3984{
3985 struct irq_2_irte *irte_info = &data->irq_2_irte;
3986 struct msi_msg *msg = &data->msi_entry;
3987 union irte *irte = &data->irte_entry;
3988 struct IO_APIC_route_entry *entry;
3989
Jiang Liu7c71d302015-04-13 14:11:33 +08003990 data->irq_2_irte.devid = devid;
3991 data->irq_2_irte.index = index + sub_handle;
3992
3993 /* Setup IRTE for IOMMU */
3994 irte->val = 0;
3995 irte->fields.vector = irq_cfg->vector;
3996 irte->fields.int_type = apic->irq_delivery_mode;
3997 irte->fields.destination = irq_cfg->dest_apicid;
3998 irte->fields.dm = apic->irq_dest_mode;
3999 irte->fields.valid = 1;
4000
4001 switch (info->type) {
4002 case X86_IRQ_ALLOC_TYPE_IOAPIC:
4003 /* Setup IOAPIC entry */
4004 entry = info->ioapic_entry;
4005 info->ioapic_entry = NULL;
4006 memset(entry, 0, sizeof(*entry));
4007 entry->vector = index;
4008 entry->mask = 0;
4009 entry->trigger = info->ioapic_trigger;
4010 entry->polarity = info->ioapic_polarity;
4011 /* Mask level triggered irqs. */
4012 if (info->ioapic_trigger)
4013 entry->mask = 1;
4014 break;
4015
4016 case X86_IRQ_ALLOC_TYPE_HPET:
4017 case X86_IRQ_ALLOC_TYPE_MSI:
4018 case X86_IRQ_ALLOC_TYPE_MSIX:
4019 msg->address_hi = MSI_ADDR_BASE_HI;
4020 msg->address_lo = MSI_ADDR_BASE_LO;
4021 msg->data = irte_info->index;
4022 break;
4023
4024 default:
4025 BUG_ON(1);
4026 break;
4027 }
4028}
4029
4030static int irq_remapping_alloc(struct irq_domain *domain, unsigned int virq,
4031 unsigned int nr_irqs, void *arg)
4032{
4033 struct irq_alloc_info *info = arg;
4034 struct irq_data *irq_data;
4035 struct amd_ir_data *data;
4036 struct irq_cfg *cfg;
4037 int i, ret, devid;
4038 int index = -1;
4039
4040 if (!info)
4041 return -EINVAL;
4042 if (nr_irqs > 1 && info->type != X86_IRQ_ALLOC_TYPE_MSI &&
4043 info->type != X86_IRQ_ALLOC_TYPE_MSIX)
4044 return -EINVAL;
4045
4046 /*
4047 * With IRQ remapping enabled, don't need contiguous CPU vectors
4048 * to support multiple MSI interrupts.
4049 */
4050 if (info->type == X86_IRQ_ALLOC_TYPE_MSI)
4051 info->flags &= ~X86_IRQ_ALLOC_CONTIGUOUS_VECTORS;
4052
4053 devid = get_devid(info);
4054 if (devid < 0)
4055 return -EINVAL;
4056
4057 ret = irq_domain_alloc_irqs_parent(domain, virq, nr_irqs, arg);
4058 if (ret < 0)
4059 return ret;
4060
Jiang Liu7c71d302015-04-13 14:11:33 +08004061 if (info->type == X86_IRQ_ALLOC_TYPE_IOAPIC) {
4062 if (get_irq_table(devid, true))
4063 index = info->ioapic_pin;
4064 else
4065 ret = -ENOMEM;
4066 } else {
Jiang Liu3c3d4f92015-04-13 14:11:38 +08004067 index = alloc_irq_index(devid, nr_irqs);
Jiang Liu7c71d302015-04-13 14:11:33 +08004068 }
4069 if (index < 0) {
4070 pr_warn("Failed to allocate IRTE\n");
Jiang Liu7c71d302015-04-13 14:11:33 +08004071 goto out_free_parent;
4072 }
4073
4074 for (i = 0; i < nr_irqs; i++) {
4075 irq_data = irq_domain_get_irq_data(domain, virq + i);
4076 cfg = irqd_cfg(irq_data);
4077 if (!irq_data || !cfg) {
4078 ret = -EINVAL;
4079 goto out_free_data;
4080 }
4081
Joerg Roedela130e692015-08-13 11:07:25 +02004082 ret = -ENOMEM;
4083 data = kzalloc(sizeof(*data), GFP_KERNEL);
4084 if (!data)
4085 goto out_free_data;
4086
Jiang Liu7c71d302015-04-13 14:11:33 +08004087 irq_data->hwirq = (devid << 16) + i;
4088 irq_data->chip_data = data;
4089 irq_data->chip = &amd_ir_chip;
4090 irq_remapping_prepare_irte(data, cfg, info, devid, index, i);
4091 irq_set_status_flags(virq + i, IRQ_MOVE_PCNTXT);
4092 }
Joerg Roedela130e692015-08-13 11:07:25 +02004093
Jiang Liu7c71d302015-04-13 14:11:33 +08004094 return 0;
4095
4096out_free_data:
4097 for (i--; i >= 0; i--) {
4098 irq_data = irq_domain_get_irq_data(domain, virq + i);
4099 if (irq_data)
4100 kfree(irq_data->chip_data);
4101 }
4102 for (i = 0; i < nr_irqs; i++)
4103 free_irte(devid, index + i);
4104out_free_parent:
4105 irq_domain_free_irqs_common(domain, virq, nr_irqs);
4106 return ret;
4107}
4108
4109static void irq_remapping_free(struct irq_domain *domain, unsigned int virq,
4110 unsigned int nr_irqs)
4111{
4112 struct irq_2_irte *irte_info;
4113 struct irq_data *irq_data;
4114 struct amd_ir_data *data;
4115 int i;
4116
4117 for (i = 0; i < nr_irqs; i++) {
4118 irq_data = irq_domain_get_irq_data(domain, virq + i);
4119 if (irq_data && irq_data->chip_data) {
4120 data = irq_data->chip_data;
4121 irte_info = &data->irq_2_irte;
4122 free_irte(irte_info->devid, irte_info->index);
4123 kfree(data);
4124 }
4125 }
4126 irq_domain_free_irqs_common(domain, virq, nr_irqs);
4127}
4128
4129static void irq_remapping_activate(struct irq_domain *domain,
4130 struct irq_data *irq_data)
4131{
4132 struct amd_ir_data *data = irq_data->chip_data;
4133 struct irq_2_irte *irte_info = &data->irq_2_irte;
4134
4135 modify_irte(irte_info->devid, irte_info->index, data->irte_entry);
4136}
4137
4138static void irq_remapping_deactivate(struct irq_domain *domain,
4139 struct irq_data *irq_data)
4140{
4141 struct amd_ir_data *data = irq_data->chip_data;
4142 struct irq_2_irte *irte_info = &data->irq_2_irte;
4143 union irte entry;
4144
4145 entry.val = 0;
4146 modify_irte(irte_info->devid, irte_info->index, data->irte_entry);
4147}
4148
4149static struct irq_domain_ops amd_ir_domain_ops = {
4150 .alloc = irq_remapping_alloc,
4151 .free = irq_remapping_free,
4152 .activate = irq_remapping_activate,
4153 .deactivate = irq_remapping_deactivate,
4154};
4155
4156static int amd_ir_set_affinity(struct irq_data *data,
4157 const struct cpumask *mask, bool force)
4158{
4159 struct amd_ir_data *ir_data = data->chip_data;
4160 struct irq_2_irte *irte_info = &ir_data->irq_2_irte;
4161 struct irq_cfg *cfg = irqd_cfg(data);
4162 struct irq_data *parent = data->parent_data;
4163 int ret;
4164
4165 ret = parent->chip->irq_set_affinity(parent, mask, force);
4166 if (ret < 0 || ret == IRQ_SET_MASK_OK_DONE)
4167 return ret;
4168
4169 /*
4170 * Atomically updates the IRTE with the new destination, vector
4171 * and flushes the interrupt entry cache.
4172 */
4173 ir_data->irte_entry.fields.vector = cfg->vector;
4174 ir_data->irte_entry.fields.destination = cfg->dest_apicid;
4175 modify_irte(irte_info->devid, irte_info->index, ir_data->irte_entry);
4176
4177 /*
4178 * After this point, all the interrupts will start arriving
4179 * at the new destination. So, time to cleanup the previous
4180 * vector allocation.
4181 */
Jiang Liuc6c20022015-04-14 10:30:02 +08004182 send_cleanup_vector(cfg);
Jiang Liu7c71d302015-04-13 14:11:33 +08004183
4184 return IRQ_SET_MASK_OK_DONE;
4185}
4186
4187static void ir_compose_msi_msg(struct irq_data *irq_data, struct msi_msg *msg)
4188{
4189 struct amd_ir_data *ir_data = irq_data->chip_data;
4190
4191 *msg = ir_data->msi_entry;
4192}
4193
4194static struct irq_chip amd_ir_chip = {
4195 .irq_ack = ir_ack_apic_edge,
4196 .irq_set_affinity = amd_ir_set_affinity,
4197 .irq_compose_msi_msg = ir_compose_msi_msg,
4198};
4199
4200int amd_iommu_create_irq_domain(struct amd_iommu *iommu)
4201{
4202 iommu->ir_domain = irq_domain_add_tree(NULL, &amd_ir_domain_ops, iommu);
4203 if (!iommu->ir_domain)
4204 return -ENOMEM;
4205
4206 iommu->ir_domain->parent = arch_get_ir_parent_domain();
4207 iommu->msi_domain = arch_create_msi_irq_domain(iommu->ir_domain);
4208
4209 return 0;
4210}
Joerg Roedel2b324502012-06-21 16:29:10 +02004211#endif