blob: 1efbef7f3b61a2fca4347a20f6ad6cdb15e28c66 [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>
Wan Zongshun0076cd32016-05-10 09:21:01 -040024#include <linux/platform_device.h>
Joerg Roedelcb41ed82011-04-05 11:00:53 +020025#include <linux/pci-ats.h>
Akinobu Mitaa66022c2009-12-15 16:48:28 -080026#include <linux/bitmap.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090027#include <linux/slab.h>
Joerg Roedel7f265082008-12-12 13:50:21 +010028#include <linux/debugfs.h>
Joerg Roedelb6c02712008-06-26 21:27:53 +020029#include <linux/scatterlist.h>
FUJITA Tomonori51491362009-01-05 23:47:25 +090030#include <linux/dma-mapping.h>
Joerg Roedelb6c02712008-06-26 21:27:53 +020031#include <linux/iommu-helper.h>
Joerg Roedelc156e342008-12-02 18:13:27 +010032#include <linux/iommu.h>
Joerg Roedel815b33f2011-04-06 17:26:49 +020033#include <linux/delay.h>
Joerg Roedel403f81d2011-06-14 16:44:25 +020034#include <linux/amd-iommu.h>
Joerg Roedel72e1dcc2011-11-10 19:13:51 +010035#include <linux/notifier.h>
36#include <linux/export.h>
Joerg Roedel2b324502012-06-21 16:29:10 +020037#include <linux/irq.h>
38#include <linux/msi.h>
Joerg Roedel3b839a52015-04-01 14:58:47 +020039#include <linux/dma-contiguous.h>
Jiang Liu7c71d302015-04-13 14:11:33 +080040#include <linux/irqdomain.h>
Joerg Roedel5f6bed52015-12-22 13:34:22 +010041#include <linux/percpu.h>
Joerg Roedel307d5852016-07-05 11:54:04 +020042#include <linux/iova.h>
Joerg Roedel2b324502012-06-21 16:29:10 +020043#include <asm/irq_remapping.h>
44#include <asm/io_apic.h>
45#include <asm/apic.h>
46#include <asm/hw_irq.h>
Joerg Roedel17f5b562011-07-06 17:14:44 +020047#include <asm/msidef.h>
Joerg Roedelb6c02712008-06-26 21:27:53 +020048#include <asm/proto.h>
FUJITA Tomonori46a7fa22008-07-11 10:23:42 +090049#include <asm/iommu.h>
Joerg Roedel1d9b16d2008-11-27 18:39:15 +010050#include <asm/gart.h>
Joerg Roedel27c21272011-05-30 15:56:24 +020051#include <asm/dma.h>
Joerg Roedel403f81d2011-06-14 16:44:25 +020052
53#include "amd_iommu_proto.h"
54#include "amd_iommu_types.h"
Joerg Roedel6b474b82012-06-26 16:46:04 +020055#include "irq_remapping.h"
Joerg Roedelb6c02712008-06-26 21:27:53 +020056
57#define CMD_SET_TYPE(cmd, t) ((cmd)->data[1] |= ((t) << 28))
58
Joerg Roedel815b33f2011-04-06 17:26:49 +020059#define LOOP_TIMEOUT 100000
Joerg Roedel136f78a2008-07-11 17:14:27 +020060
Joerg Roedel307d5852016-07-05 11:54:04 +020061/* IO virtual address start page frame number */
62#define IOVA_START_PFN (1)
63#define IOVA_PFN(addr) ((addr) >> PAGE_SHIFT)
64#define DMA_32BIT_PFN IOVA_PFN(DMA_BIT_MASK(32))
65
Joerg Roedel81cd07b2016-07-07 18:01:10 +020066/* Reserved IOVA ranges */
67#define MSI_RANGE_START (0xfee00000)
68#define MSI_RANGE_END (0xfeefffff)
69#define HT_RANGE_START (0xfd00000000ULL)
70#define HT_RANGE_END (0xffffffffffULL)
71
Ohad Ben-Cohenaa3de9c2011-11-10 11:32:29 +020072/*
73 * This bitmap is used to advertise the page sizes our hardware support
74 * to the IOMMU core, which will then use this information to split
75 * physically contiguous memory regions it is mapping into page sizes
76 * that we support.
77 *
Joerg Roedel954e3dd2012-12-02 15:35:37 +010078 * 512GB Pages are not supported due to a hardware bug
Ohad Ben-Cohenaa3de9c2011-11-10 11:32:29 +020079 */
Joerg Roedel954e3dd2012-12-02 15:35:37 +010080#define AMD_IOMMU_PGSIZES ((~0xFFFUL) & ~(2ULL << 38))
Ohad Ben-Cohenaa3de9c2011-11-10 11:32:29 +020081
Joerg Roedelb6c02712008-06-26 21:27:53 +020082static DEFINE_RWLOCK(amd_iommu_devtable_lock);
83
Joerg Roedel8fa5f802011-06-09 12:24:45 +020084/* List of all available dev_data structures */
85static LIST_HEAD(dev_data_list);
86static DEFINE_SPINLOCK(dev_data_list_lock);
87
Joerg Roedel6efed632012-06-14 15:52:58 +020088LIST_HEAD(ioapic_map);
89LIST_HEAD(hpet_map);
Wan Zongshun2a0cb4e2016-04-01 09:06:00 -040090LIST_HEAD(acpihid_map);
Joerg Roedel6efed632012-06-14 15:52:58 +020091
Joerg Roedelc5b5da92016-07-06 11:55:37 +020092#define FLUSH_QUEUE_SIZE 256
93
94struct flush_queue_entry {
95 unsigned long iova_pfn;
96 unsigned long pages;
97 struct dma_ops_domain *dma_dom;
98};
99
100struct flush_queue {
101 spinlock_t lock;
102 unsigned next;
103 struct flush_queue_entry *entries;
104};
105
Wei Yongjuna5604f22016-07-28 02:09:53 +0000106static DEFINE_PER_CPU(struct flush_queue, flush_queue);
Joerg Roedelc5b5da92016-07-06 11:55:37 +0200107
Joerg Roedelbb279472016-07-06 13:56:36 +0200108static atomic_t queue_timer_on;
109static struct timer_list queue_timer;
110
Joerg Roedel0feae532009-08-26 15:26:30 +0200111/*
112 * Domain for untranslated devices - only allocated
113 * if iommu=pt passed on kernel cmd line.
114 */
Joerg Roedelb0119e82017-02-01 13:23:08 +0100115const struct iommu_ops amd_iommu_ops;
Joerg Roedel26961ef2008-12-03 17:00:17 +0100116
Joerg Roedel72e1dcc2011-11-10 19:13:51 +0100117static ATOMIC_NOTIFIER_HEAD(ppr_notifier);
Joerg Roedel52815b72011-11-17 17:24:28 +0100118int amd_iommu_max_glx_val = -1;
Joerg Roedel72e1dcc2011-11-10 19:13:51 +0100119
Bart Van Assche52997092017-01-20 13:04:01 -0800120static const struct dma_map_ops amd_iommu_dma_ops;
Joerg Roedelac1534a2012-06-21 14:52:40 +0200121
Joerg Roedel431b2a22008-07-11 17:14:22 +0200122/*
Joerg Roedel50917e22014-08-05 16:38:38 +0200123 * This struct contains device specific data for the IOMMU
124 */
125struct iommu_dev_data {
126 struct list_head list; /* For domain->dev_list */
127 struct list_head dev_data_list; /* For global dev_data_list */
Joerg Roedel50917e22014-08-05 16:38:38 +0200128 struct protection_domain *domain; /* Domain the device is bound to */
Joerg Roedel50917e22014-08-05 16:38:38 +0200129 u16 devid; /* PCI Device ID */
Joerg Roedele3156042016-04-08 15:12:24 +0200130 u16 alias; /* Alias Device ID */
Joerg Roedel50917e22014-08-05 16:38:38 +0200131 bool iommu_v2; /* Device can make use of IOMMUv2 */
Joerg Roedel1e6a7b02015-07-28 16:58:48 +0200132 bool passthrough; /* Device is identity mapped */
Joerg Roedel50917e22014-08-05 16:38:38 +0200133 struct {
134 bool enabled;
135 int qdep;
136 } ats; /* ATS state */
137 bool pri_tlp; /* PASID TLB required for
138 PPR completions */
139 u32 errata; /* Bitmap for errata to apply */
Suravee Suthikulpanitd98de492016-08-23 13:52:40 -0500140 bool use_vapic; /* Enable device to use vapic mode */
Joerg Roedel30bf2df2017-05-15 16:25:03 +0200141
142 struct ratelimit_state rs; /* Ratelimit IOPF messages */
Joerg Roedel50917e22014-08-05 16:38:38 +0200143};
144
145/*
Joerg Roedel431b2a22008-07-11 17:14:22 +0200146 * general struct to manage commands send to an IOMMU
147 */
Joerg Roedeld6449532008-07-11 17:14:28 +0200148struct iommu_cmd {
Joerg Roedelb6c02712008-06-26 21:27:53 +0200149 u32 data[4];
150};
151
Joerg Roedel05152a02012-06-15 16:53:51 +0200152struct kmem_cache *amd_iommu_irq_cache;
153
Joerg Roedel04bfdd82009-09-02 16:00:23 +0200154static void update_domain(struct protection_domain *domain);
Joerg Roedel7a5a5662015-06-30 08:56:11 +0200155static int protection_domain_init(struct protection_domain *domain);
Joerg Roedelb6809ee2016-02-26 16:48:59 +0100156static void detach_device(struct device *dev);
Chris Wrightc1eee672009-05-21 00:56:58 -0700157
Joerg Roedel007b74b2015-12-21 12:53:54 +0100158/*
Joerg Roedel007b74b2015-12-21 12:53:54 +0100159 * Data container for a dma_ops specific protection domain
160 */
161struct dma_ops_domain {
162 /* generic protection domain information */
163 struct protection_domain domain;
164
Joerg Roedel307d5852016-07-05 11:54:04 +0200165 /* IOVA RB-Tree */
166 struct iova_domain iovad;
Joerg Roedel007b74b2015-12-21 12:53:54 +0100167};
168
Joerg Roedel81cd07b2016-07-07 18:01:10 +0200169static struct iova_domain reserved_iova_ranges;
170static struct lock_class_key reserved_rbtree_key;
171
Joerg Roedel15898bb2009-11-24 15:39:42 +0100172/****************************************************************************
173 *
174 * Helper functions
175 *
176 ****************************************************************************/
177
Wan Zongshun2bf9a0a2016-04-01 09:06:03 -0400178static inline int match_hid_uid(struct device *dev,
179 struct acpihid_map_entry *entry)
Joerg Roedel3f4b87b2015-03-26 13:43:07 +0100180{
Wan Zongshun2bf9a0a2016-04-01 09:06:03 -0400181 const char *hid, *uid;
182
183 hid = acpi_device_hid(ACPI_COMPANION(dev));
184 uid = acpi_device_uid(ACPI_COMPANION(dev));
185
186 if (!hid || !(*hid))
187 return -ENODEV;
188
189 if (!uid || !(*uid))
190 return strcmp(hid, entry->hid);
191
192 if (!(*entry->uid))
193 return strcmp(hid, entry->hid);
194
195 return (strcmp(hid, entry->hid) || strcmp(uid, entry->uid));
Joerg Roedel3f4b87b2015-03-26 13:43:07 +0100196}
197
Wan Zongshun2bf9a0a2016-04-01 09:06:03 -0400198static inline u16 get_pci_device_id(struct device *dev)
Joerg Roedele3156042016-04-08 15:12:24 +0200199{
200 struct pci_dev *pdev = to_pci_dev(dev);
201
202 return PCI_DEVID(pdev->bus->number, pdev->devfn);
203}
204
Wan Zongshun2bf9a0a2016-04-01 09:06:03 -0400205static inline int get_acpihid_device_id(struct device *dev,
206 struct acpihid_map_entry **entry)
207{
208 struct acpihid_map_entry *p;
209
210 list_for_each_entry(p, &acpihid_map, list) {
211 if (!match_hid_uid(dev, p)) {
212 if (entry)
213 *entry = p;
214 return p->devid;
215 }
216 }
217 return -EINVAL;
218}
219
220static inline int get_device_id(struct device *dev)
221{
222 int devid;
223
224 if (dev_is_pci(dev))
225 devid = get_pci_device_id(dev);
226 else
227 devid = get_acpihid_device_id(dev, NULL);
228
229 return devid;
230}
231
Joerg Roedel15898bb2009-11-24 15:39:42 +0100232static struct protection_domain *to_pdomain(struct iommu_domain *dom)
233{
234 return container_of(dom, struct protection_domain, domain);
235}
236
Joerg Roedelb3311b02016-07-08 13:31:31 +0200237static struct dma_ops_domain* to_dma_ops_domain(struct protection_domain *domain)
238{
239 BUG_ON(domain->flags != PD_DMA_OPS_MASK);
240 return container_of(domain, struct dma_ops_domain, domain);
241}
242
Joerg Roedelf62dda62011-06-09 12:55:35 +0200243static struct iommu_dev_data *alloc_dev_data(u16 devid)
Joerg Roedel8fa5f802011-06-09 12:24:45 +0200244{
245 struct iommu_dev_data *dev_data;
246 unsigned long flags;
247
248 dev_data = kzalloc(sizeof(*dev_data), GFP_KERNEL);
249 if (!dev_data)
250 return NULL;
251
Joerg Roedelf62dda62011-06-09 12:55:35 +0200252 dev_data->devid = devid;
Joerg Roedel8fa5f802011-06-09 12:24:45 +0200253
254 spin_lock_irqsave(&dev_data_list_lock, flags);
255 list_add_tail(&dev_data->dev_data_list, &dev_data_list);
256 spin_unlock_irqrestore(&dev_data_list_lock, flags);
257
Joerg Roedel30bf2df2017-05-15 16:25:03 +0200258 ratelimit_default_init(&dev_data->rs);
259
Joerg Roedel8fa5f802011-06-09 12:24:45 +0200260 return dev_data;
261}
262
Joerg Roedel3b03bb72011-06-09 18:53:25 +0200263static struct iommu_dev_data *search_dev_data(u16 devid)
264{
265 struct iommu_dev_data *dev_data;
266 unsigned long flags;
267
268 spin_lock_irqsave(&dev_data_list_lock, flags);
269 list_for_each_entry(dev_data, &dev_data_list, dev_data_list) {
270 if (dev_data->devid == devid)
271 goto out_unlock;
272 }
273
274 dev_data = NULL;
275
276out_unlock:
277 spin_unlock_irqrestore(&dev_data_list_lock, flags);
278
279 return dev_data;
280}
281
Joerg Roedele3156042016-04-08 15:12:24 +0200282static int __last_alias(struct pci_dev *pdev, u16 alias, void *data)
283{
284 *(u16 *)data = alias;
285 return 0;
286}
287
288static u16 get_alias(struct device *dev)
289{
290 struct pci_dev *pdev = to_pci_dev(dev);
291 u16 devid, ivrs_alias, pci_alias;
292
Joerg Roedel6c0b43d2016-05-09 19:39:17 +0200293 /* The callers make sure that get_device_id() does not fail here */
Joerg Roedele3156042016-04-08 15:12:24 +0200294 devid = get_device_id(dev);
295 ivrs_alias = amd_iommu_alias_table[devid];
296 pci_for_each_dma_alias(pdev, __last_alias, &pci_alias);
297
298 if (ivrs_alias == pci_alias)
299 return ivrs_alias;
300
301 /*
302 * DMA alias showdown
303 *
304 * The IVRS is fairly reliable in telling us about aliases, but it
305 * can't know about every screwy device. If we don't have an IVRS
306 * reported alias, use the PCI reported alias. In that case we may
307 * still need to initialize the rlookup and dev_table entries if the
308 * alias is to a non-existent device.
309 */
310 if (ivrs_alias == devid) {
311 if (!amd_iommu_rlookup_table[pci_alias]) {
312 amd_iommu_rlookup_table[pci_alias] =
313 amd_iommu_rlookup_table[devid];
314 memcpy(amd_iommu_dev_table[pci_alias].data,
315 amd_iommu_dev_table[devid].data,
316 sizeof(amd_iommu_dev_table[pci_alias].data));
317 }
318
319 return pci_alias;
320 }
321
322 pr_info("AMD-Vi: Using IVRS reported alias %02x:%02x.%d "
323 "for device %s[%04x:%04x], kernel reported alias "
324 "%02x:%02x.%d\n", PCI_BUS_NUM(ivrs_alias), PCI_SLOT(ivrs_alias),
325 PCI_FUNC(ivrs_alias), dev_name(dev), pdev->vendor, pdev->device,
326 PCI_BUS_NUM(pci_alias), PCI_SLOT(pci_alias),
327 PCI_FUNC(pci_alias));
328
329 /*
330 * If we don't have a PCI DMA alias and the IVRS alias is on the same
331 * bus, then the IVRS table may know about a quirk that we don't.
332 */
333 if (pci_alias == devid &&
334 PCI_BUS_NUM(ivrs_alias) == pdev->bus->number) {
Linus Torvalds7afd16f2016-05-19 13:10:54 -0700335 pci_add_dma_alias(pdev, ivrs_alias & 0xff);
Joerg Roedele3156042016-04-08 15:12:24 +0200336 pr_info("AMD-Vi: Added PCI DMA alias %02x.%d for %s\n",
337 PCI_SLOT(ivrs_alias), PCI_FUNC(ivrs_alias),
338 dev_name(dev));
339 }
340
341 return ivrs_alias;
342}
343
Joerg Roedel3b03bb72011-06-09 18:53:25 +0200344static struct iommu_dev_data *find_dev_data(u16 devid)
345{
346 struct iommu_dev_data *dev_data;
347
348 dev_data = search_dev_data(devid);
349
350 if (dev_data == NULL)
351 dev_data = alloc_dev_data(devid);
352
353 return dev_data;
354}
355
Joerg Roedel657cbb62009-11-23 15:26:46 +0100356static struct iommu_dev_data *get_dev_data(struct device *dev)
357{
358 return dev->archdata.iommu;
359}
360
Wan Zongshunb097d112016-04-01 09:06:04 -0400361/*
362* Find or create an IOMMU group for a acpihid device.
363*/
364static struct iommu_group *acpihid_device_group(struct device *dev)
365{
366 struct acpihid_map_entry *p, *entry = NULL;
Dan Carpenter2d8e1f02016-04-11 10:14:46 +0300367 int devid;
Wan Zongshunb097d112016-04-01 09:06:04 -0400368
369 devid = get_acpihid_device_id(dev, &entry);
370 if (devid < 0)
371 return ERR_PTR(devid);
372
373 list_for_each_entry(p, &acpihid_map, list) {
374 if ((devid == p->devid) && p->group)
375 entry->group = p->group;
376 }
377
378 if (!entry->group)
379 entry->group = generic_device_group(dev);
Robin Murphyf2f101f2016-11-11 17:59:23 +0000380 else
381 iommu_group_ref_get(entry->group);
Wan Zongshunb097d112016-04-01 09:06:04 -0400382
383 return entry->group;
384}
385
Joerg Roedel5abcdba2011-12-01 15:49:45 +0100386static bool pci_iommuv2_capable(struct pci_dev *pdev)
387{
388 static const int caps[] = {
389 PCI_EXT_CAP_ID_ATS,
Joerg Roedel46277b72011-12-07 14:34:02 +0100390 PCI_EXT_CAP_ID_PRI,
391 PCI_EXT_CAP_ID_PASID,
Joerg Roedel5abcdba2011-12-01 15:49:45 +0100392 };
393 int i, pos;
394
395 for (i = 0; i < 3; ++i) {
396 pos = pci_find_ext_capability(pdev, caps[i]);
397 if (pos == 0)
398 return false;
399 }
400
401 return true;
402}
403
Joerg Roedel6a113dd2011-12-01 12:04:58 +0100404static bool pdev_pri_erratum(struct pci_dev *pdev, u32 erratum)
405{
406 struct iommu_dev_data *dev_data;
407
408 dev_data = get_dev_data(&pdev->dev);
409
410 return dev_data->errata & (1 << erratum) ? true : false;
411}
412
Joerg Roedel71c70982009-11-24 16:43:06 +0100413/*
Joerg Roedel98fc5a62009-11-24 17:19:23 +0100414 * This function checks if the driver got a valid device from the caller to
415 * avoid dereferencing invalid pointers.
416 */
417static bool check_device(struct device *dev)
418{
Wan Zongshun7aba6cb2016-04-01 09:06:02 -0400419 int devid;
Joerg Roedel98fc5a62009-11-24 17:19:23 +0100420
421 if (!dev || !dev->dma_mask)
422 return false;
423
Joerg Roedel98fc5a62009-11-24 17:19:23 +0100424 devid = get_device_id(dev);
Joerg Roedel9ee35e42016-04-21 18:21:31 +0200425 if (devid < 0)
Wan Zongshun7aba6cb2016-04-01 09:06:02 -0400426 return false;
Joerg Roedel98fc5a62009-11-24 17:19:23 +0100427
428 /* Out of our scope? */
429 if (devid > amd_iommu_last_bdf)
430 return false;
431
432 if (amd_iommu_rlookup_table[devid] == NULL)
433 return false;
434
435 return true;
436}
437
Alex Williamson25b11ce2014-09-19 10:03:13 -0600438static void init_iommu_group(struct device *dev)
Alex Williamson2851db22012-10-08 22:49:41 -0600439{
Alex Williamson2851db22012-10-08 22:49:41 -0600440 struct iommu_group *group;
Alex Williamson2851db22012-10-08 22:49:41 -0600441
Alex Williamson65d53522014-07-03 09:51:30 -0600442 group = iommu_group_get_for_dev(dev);
Joerg Roedel0bb6e242015-05-28 18:41:40 +0200443 if (IS_ERR(group))
444 return;
445
Joerg Roedel0bb6e242015-05-28 18:41:40 +0200446 iommu_group_put(group);
Alex Williamsoneb9c9522012-10-08 22:49:35 -0600447}
448
449static int iommu_init_device(struct device *dev)
450{
Alex Williamsoneb9c9522012-10-08 22:49:35 -0600451 struct iommu_dev_data *dev_data;
Joerg Roedel39ab9552017-02-01 16:56:46 +0100452 struct amd_iommu *iommu;
Wan Zongshun7aba6cb2016-04-01 09:06:02 -0400453 int devid;
Alex Williamsoneb9c9522012-10-08 22:49:35 -0600454
455 if (dev->archdata.iommu)
456 return 0;
457
Wan Zongshun7aba6cb2016-04-01 09:06:02 -0400458 devid = get_device_id(dev);
Joerg Roedel9ee35e42016-04-21 18:21:31 +0200459 if (devid < 0)
Wan Zongshun7aba6cb2016-04-01 09:06:02 -0400460 return devid;
461
Joerg Roedel39ab9552017-02-01 16:56:46 +0100462 iommu = amd_iommu_rlookup_table[devid];
463
Wan Zongshun7aba6cb2016-04-01 09:06:02 -0400464 dev_data = find_dev_data(devid);
Alex Williamsoneb9c9522012-10-08 22:49:35 -0600465 if (!dev_data)
466 return -ENOMEM;
467
Joerg Roedele3156042016-04-08 15:12:24 +0200468 dev_data->alias = get_alias(dev);
469
Wan Zongshun2bf9a0a2016-04-01 09:06:03 -0400470 if (dev_is_pci(dev) && pci_iommuv2_capable(to_pci_dev(dev))) {
Joerg Roedel5abcdba2011-12-01 15:49:45 +0100471 struct amd_iommu *iommu;
472
Wan Zongshun2bf9a0a2016-04-01 09:06:03 -0400473 iommu = amd_iommu_rlookup_table[dev_data->devid];
Joerg Roedel5abcdba2011-12-01 15:49:45 +0100474 dev_data->iommu_v2 = iommu->is_iommu_v2;
475 }
476
Joerg Roedel657cbb62009-11-23 15:26:46 +0100477 dev->archdata.iommu = dev_data;
478
Joerg Roedele3d10af2017-02-01 17:23:22 +0100479 iommu_device_link(&iommu->iommu, dev);
Alex Williamson066f2e92014-06-12 16:12:37 -0600480
Joerg Roedel657cbb62009-11-23 15:26:46 +0100481 return 0;
482}
483
Joerg Roedel26018872011-06-06 16:50:14 +0200484static void iommu_ignore_device(struct device *dev)
485{
Wan Zongshun7aba6cb2016-04-01 09:06:02 -0400486 u16 alias;
487 int devid;
Joerg Roedel26018872011-06-06 16:50:14 +0200488
489 devid = get_device_id(dev);
Joerg Roedel9ee35e42016-04-21 18:21:31 +0200490 if (devid < 0)
Wan Zongshun7aba6cb2016-04-01 09:06:02 -0400491 return;
492
Joerg Roedele3156042016-04-08 15:12:24 +0200493 alias = get_alias(dev);
Joerg Roedel26018872011-06-06 16:50:14 +0200494
495 memset(&amd_iommu_dev_table[devid], 0, sizeof(struct dev_table_entry));
496 memset(&amd_iommu_dev_table[alias], 0, sizeof(struct dev_table_entry));
497
498 amd_iommu_rlookup_table[devid] = NULL;
499 amd_iommu_rlookup_table[alias] = NULL;
500}
501
Joerg Roedel657cbb62009-11-23 15:26:46 +0100502static void iommu_uninit_device(struct device *dev)
503{
Wan Zongshun7aba6cb2016-04-01 09:06:02 -0400504 struct iommu_dev_data *dev_data;
Joerg Roedel39ab9552017-02-01 16:56:46 +0100505 struct amd_iommu *iommu;
506 int devid;
Alex Williamsonc1931092014-07-03 09:51:24 -0600507
Wan Zongshun7aba6cb2016-04-01 09:06:02 -0400508 devid = get_device_id(dev);
Joerg Roedel9ee35e42016-04-21 18:21:31 +0200509 if (devid < 0)
Wan Zongshun7aba6cb2016-04-01 09:06:02 -0400510 return;
511
Joerg Roedel39ab9552017-02-01 16:56:46 +0100512 iommu = amd_iommu_rlookup_table[devid];
513
Wan Zongshun7aba6cb2016-04-01 09:06:02 -0400514 dev_data = search_dev_data(devid);
Alex Williamsonc1931092014-07-03 09:51:24 -0600515 if (!dev_data)
516 return;
517
Joerg Roedelb6809ee2016-02-26 16:48:59 +0100518 if (dev_data->domain)
519 detach_device(dev);
520
Joerg Roedele3d10af2017-02-01 17:23:22 +0100521 iommu_device_unlink(&iommu->iommu, dev);
Alex Williamson066f2e92014-06-12 16:12:37 -0600522
Alex Williamson9dcd6132012-05-30 14:19:07 -0600523 iommu_group_remove_device(dev);
524
Joerg Roedelaafd8ba2015-05-28 18:41:39 +0200525 /* Remove dma-ops */
Bart Van Assche56579332017-01-20 13:04:02 -0800526 dev->dma_ops = NULL;
Joerg Roedelaafd8ba2015-05-28 18:41:39 +0200527
Joerg Roedel8fa5f802011-06-09 12:24:45 +0200528 /*
Alex Williamsonc1931092014-07-03 09:51:24 -0600529 * We keep dev_data around for unplugged devices and reuse it when the
530 * device is re-plugged - not doing so would introduce a ton of races.
Joerg Roedel8fa5f802011-06-09 12:24:45 +0200531 */
Joerg Roedel657cbb62009-11-23 15:26:46 +0100532}
Joerg Roedelb7cc9552009-12-10 11:03:39 +0100533
Joerg Roedel431b2a22008-07-11 17:14:22 +0200534/****************************************************************************
535 *
Joerg Roedela80dc3e2008-09-11 16:51:41 +0200536 * Interrupt handling functions
537 *
538 ****************************************************************************/
539
Joerg Roedele3e59872009-09-03 14:02:10 +0200540static void dump_dte_entry(u16 devid)
541{
542 int i;
543
Joerg Roedelee6c2862011-11-09 12:06:03 +0100544 for (i = 0; i < 4; ++i)
545 pr_err("AMD-Vi: DTE[%d]: %016llx\n", i,
Joerg Roedele3e59872009-09-03 14:02:10 +0200546 amd_iommu_dev_table[devid].data[i]);
547}
548
Joerg Roedel945b4ac2009-09-03 14:25:02 +0200549static void dump_command(unsigned long phys_addr)
550{
551 struct iommu_cmd *cmd = phys_to_virt(phys_addr);
552 int i;
553
554 for (i = 0; i < 4; ++i)
555 pr_err("AMD-Vi: CMD[%d]: %08x\n", i, cmd->data[i]);
556}
557
Joerg Roedel30bf2df2017-05-15 16:25:03 +0200558static void amd_iommu_report_page_fault(u16 devid, u16 domain_id,
559 u64 address, int flags)
560{
561 struct iommu_dev_data *dev_data = NULL;
562 struct pci_dev *pdev;
563
564 pdev = pci_get_bus_and_slot(PCI_BUS_NUM(devid), devid & 0xff);
565 if (pdev)
566 dev_data = get_dev_data(&pdev->dev);
567
568 if (dev_data && __ratelimit(&dev_data->rs)) {
569 dev_err(&pdev->dev, "AMD-Vi: Event logged [IO_PAGE_FAULT domain=0x%04x address=0x%016llx flags=0x%04x]\n",
570 domain_id, address, flags);
571 } else if (printk_ratelimit()) {
572 pr_err("AMD-Vi: Event logged [IO_PAGE_FAULT device=%02x:%02x.%x domain=0x%04x address=0x%016llx flags=0x%04x]\n",
573 PCI_BUS_NUM(devid), PCI_SLOT(devid), PCI_FUNC(devid),
574 domain_id, address, flags);
575 }
576
577 if (pdev)
578 pci_dev_put(pdev);
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 Roedel30bf2df2017-05-15 16:25:03 +0200605 if (type == EVENT_TYPE_IO_FAULT) {
606 amd_iommu_report_page_fault(devid, domid, address, flags);
607 return;
608 } else {
609 printk(KERN_ERR "AMD-Vi: Event logged [");
610 }
Joerg Roedel90008ee2008-09-09 16:41:05 +0200611
612 switch (type) {
613 case EVENT_TYPE_ILL_DEV:
614 printk("ILLEGAL_DEV_TABLE_ENTRY device=%02x:%02x.%x "
615 "address=0x%016llx flags=0x%04x]\n",
Shuah Khanc5081cd2013-02-27 17:07:19 -0700616 PCI_BUS_NUM(devid), PCI_SLOT(devid), PCI_FUNC(devid),
Joerg Roedel90008ee2008-09-09 16:41:05 +0200617 address, flags);
Joerg Roedele3e59872009-09-03 14:02:10 +0200618 dump_dte_entry(devid);
Joerg Roedel90008ee2008-09-09 16:41:05 +0200619 break;
Joerg Roedel90008ee2008-09-09 16:41:05 +0200620 case EVENT_TYPE_DEV_TAB_ERR:
621 printk("DEV_TAB_HARDWARE_ERROR device=%02x:%02x.%x "
622 "address=0x%016llx flags=0x%04x]\n",
Shuah Khanc5081cd2013-02-27 17:07:19 -0700623 PCI_BUS_NUM(devid), PCI_SLOT(devid), PCI_FUNC(devid),
Joerg Roedel90008ee2008-09-09 16:41:05 +0200624 address, flags);
625 break;
626 case EVENT_TYPE_PAGE_TAB_ERR:
627 printk("PAGE_TAB_HARDWARE_ERROR device=%02x:%02x.%x "
628 "domain=0x%04x address=0x%016llx flags=0x%04x]\n",
Shuah Khanc5081cd2013-02-27 17:07:19 -0700629 PCI_BUS_NUM(devid), PCI_SLOT(devid), PCI_FUNC(devid),
Joerg Roedel90008ee2008-09-09 16:41:05 +0200630 domid, address, flags);
631 break;
632 case EVENT_TYPE_ILL_CMD:
633 printk("ILLEGAL_COMMAND_ERROR address=0x%016llx]\n", address);
Joerg Roedel945b4ac2009-09-03 14:25:02 +0200634 dump_command(address);
Joerg Roedel90008ee2008-09-09 16:41:05 +0200635 break;
636 case EVENT_TYPE_CMD_HARD_ERR:
637 printk("COMMAND_HARDWARE_ERROR address=0x%016llx "
638 "flags=0x%04x]\n", address, flags);
639 break;
640 case EVENT_TYPE_IOTLB_INV_TO:
641 printk("IOTLB_INV_TIMEOUT device=%02x:%02x.%x "
642 "address=0x%016llx]\n",
Shuah Khanc5081cd2013-02-27 17:07:19 -0700643 PCI_BUS_NUM(devid), PCI_SLOT(devid), PCI_FUNC(devid),
Joerg Roedel90008ee2008-09-09 16:41:05 +0200644 address);
645 break;
646 case EVENT_TYPE_INV_DEV_REQ:
647 printk("INVALID_DEVICE_REQUEST device=%02x:%02x.%x "
648 "address=0x%016llx flags=0x%04x]\n",
Shuah Khanc5081cd2013-02-27 17:07:19 -0700649 PCI_BUS_NUM(devid), PCI_SLOT(devid), PCI_FUNC(devid),
Joerg Roedel90008ee2008-09-09 16:41:05 +0200650 address, flags);
651 break;
652 default:
653 printk(KERN_ERR "UNKNOWN type=0x%02x]\n", type);
654 }
Joerg Roedel3d06fca2012-04-12 14:12:00 +0200655
656 memset(__evt, 0, 4 * sizeof(u32));
Joerg Roedel90008ee2008-09-09 16:41:05 +0200657}
658
659static void iommu_poll_events(struct amd_iommu *iommu)
660{
661 u32 head, tail;
Joerg Roedel90008ee2008-09-09 16:41:05 +0200662
663 head = readl(iommu->mmio_base + MMIO_EVT_HEAD_OFFSET);
664 tail = readl(iommu->mmio_base + MMIO_EVT_TAIL_OFFSET);
665
666 while (head != tail) {
Joerg Roedela345b232009-09-03 15:01:43 +0200667 iommu_print_event(iommu, iommu->evt_buf + head);
Joerg Roedeldeba4bc2015-10-20 17:33:41 +0200668 head = (head + EVENT_ENTRY_SIZE) % EVT_BUFFER_SIZE;
Joerg Roedel90008ee2008-09-09 16:41:05 +0200669 }
670
671 writel(head, iommu->mmio_base + MMIO_EVT_HEAD_OFFSET);
Joerg Roedel90008ee2008-09-09 16:41:05 +0200672}
673
Joerg Roedeleee53532012-06-01 15:20:23 +0200674static void iommu_handle_ppr_entry(struct amd_iommu *iommu, u64 *raw)
Joerg Roedel72e1dcc2011-11-10 19:13:51 +0100675{
676 struct amd_iommu_fault fault;
Joerg Roedel72e1dcc2011-11-10 19:13:51 +0100677
Joerg Roedel72e1dcc2011-11-10 19:13:51 +0100678 if (PPR_REQ_TYPE(raw[0]) != PPR_REQ_FAULT) {
679 pr_err_ratelimited("AMD-Vi: Unknown PPR request received\n");
680 return;
681 }
682
683 fault.address = raw[1];
684 fault.pasid = PPR_PASID(raw[0]);
685 fault.device_id = PPR_DEVID(raw[0]);
686 fault.tag = PPR_TAG(raw[0]);
687 fault.flags = PPR_FLAGS(raw[0]);
688
Joerg Roedel72e1dcc2011-11-10 19:13:51 +0100689 atomic_notifier_call_chain(&ppr_notifier, 0, &fault);
690}
691
692static void iommu_poll_ppr_log(struct amd_iommu *iommu)
693{
Joerg Roedel72e1dcc2011-11-10 19:13:51 +0100694 u32 head, tail;
695
696 if (iommu->ppr_log == NULL)
697 return;
698
Joerg Roedel72e1dcc2011-11-10 19:13:51 +0100699 head = readl(iommu->mmio_base + MMIO_PPR_HEAD_OFFSET);
700 tail = readl(iommu->mmio_base + MMIO_PPR_TAIL_OFFSET);
701
702 while (head != tail) {
Joerg Roedeleee53532012-06-01 15:20:23 +0200703 volatile u64 *raw;
704 u64 entry[2];
705 int i;
Joerg Roedel72e1dcc2011-11-10 19:13:51 +0100706
Joerg Roedeleee53532012-06-01 15:20:23 +0200707 raw = (u64 *)(iommu->ppr_log + head);
Joerg Roedel72e1dcc2011-11-10 19:13:51 +0100708
Joerg Roedeleee53532012-06-01 15:20:23 +0200709 /*
710 * Hardware bug: Interrupt may arrive before the entry is
711 * written to memory. If this happens we need to wait for the
712 * entry to arrive.
713 */
714 for (i = 0; i < LOOP_TIMEOUT; ++i) {
715 if (PPR_REQ_TYPE(raw[0]) != 0)
716 break;
717 udelay(1);
718 }
719
720 /* Avoid memcpy function-call overhead */
721 entry[0] = raw[0];
722 entry[1] = raw[1];
723
724 /*
725 * To detect the hardware bug we need to clear the entry
726 * back to zero.
727 */
728 raw[0] = raw[1] = 0UL;
729
730 /* Update head pointer of hardware ring-buffer */
Joerg Roedel72e1dcc2011-11-10 19:13:51 +0100731 head = (head + PPR_ENTRY_SIZE) % PPR_LOG_SIZE;
732 writel(head, iommu->mmio_base + MMIO_PPR_HEAD_OFFSET);
Joerg Roedeleee53532012-06-01 15:20:23 +0200733
Joerg Roedeleee53532012-06-01 15:20:23 +0200734 /* Handle PPR entry */
735 iommu_handle_ppr_entry(iommu, entry);
736
Joerg Roedeleee53532012-06-01 15:20:23 +0200737 /* Refresh ring-buffer information */
738 head = readl(iommu->mmio_base + MMIO_PPR_HEAD_OFFSET);
Joerg Roedel72e1dcc2011-11-10 19:13:51 +0100739 tail = readl(iommu->mmio_base + MMIO_PPR_TAIL_OFFSET);
740 }
Joerg Roedel72e1dcc2011-11-10 19:13:51 +0100741}
742
Suravee Suthikulpanitbd6fcef2016-08-23 13:52:37 -0500743#ifdef CONFIG_IRQ_REMAP
744static int (*iommu_ga_log_notifier)(u32);
745
746int amd_iommu_register_ga_log_notifier(int (*notifier)(u32))
747{
748 iommu_ga_log_notifier = notifier;
749
750 return 0;
751}
752EXPORT_SYMBOL(amd_iommu_register_ga_log_notifier);
753
754static void iommu_poll_ga_log(struct amd_iommu *iommu)
755{
756 u32 head, tail, cnt = 0;
757
758 if (iommu->ga_log == NULL)
759 return;
760
761 head = readl(iommu->mmio_base + MMIO_GA_HEAD_OFFSET);
762 tail = readl(iommu->mmio_base + MMIO_GA_TAIL_OFFSET);
763
764 while (head != tail) {
765 volatile u64 *raw;
766 u64 log_entry;
767
768 raw = (u64 *)(iommu->ga_log + head);
769 cnt++;
770
771 /* Avoid memcpy function-call overhead */
772 log_entry = *raw;
773
774 /* Update head pointer of hardware ring-buffer */
775 head = (head + GA_ENTRY_SIZE) % GA_LOG_SIZE;
776 writel(head, iommu->mmio_base + MMIO_GA_HEAD_OFFSET);
777
778 /* Handle GA entry */
779 switch (GA_REQ_TYPE(log_entry)) {
780 case GA_GUEST_NR:
781 if (!iommu_ga_log_notifier)
782 break;
783
784 pr_debug("AMD-Vi: %s: devid=%#x, ga_tag=%#x\n",
785 __func__, GA_DEVID(log_entry),
786 GA_TAG(log_entry));
787
788 if (iommu_ga_log_notifier(GA_TAG(log_entry)) != 0)
789 pr_err("AMD-Vi: GA log notifier failed.\n");
790 break;
791 default:
792 break;
793 }
794 }
795}
796#endif /* CONFIG_IRQ_REMAP */
797
798#define AMD_IOMMU_INT_MASK \
799 (MMIO_STATUS_EVT_INT_MASK | \
800 MMIO_STATUS_PPR_INT_MASK | \
801 MMIO_STATUS_GALOG_INT_MASK)
802
Joerg Roedel72fe00f2011-05-10 10:50:42 +0200803irqreturn_t amd_iommu_int_thread(int irq, void *data)
Joerg Roedela80dc3e2008-09-11 16:51:41 +0200804{
Suravee Suthikulpanit3f398bc2013-04-22 16:32:34 -0500805 struct amd_iommu *iommu = (struct amd_iommu *) data;
806 u32 status = readl(iommu->mmio_base + MMIO_STATUS_OFFSET);
Joerg Roedel90008ee2008-09-09 16:41:05 +0200807
Suravee Suthikulpanitbd6fcef2016-08-23 13:52:37 -0500808 while (status & AMD_IOMMU_INT_MASK) {
809 /* Enable EVT and PPR and GA interrupts again */
810 writel(AMD_IOMMU_INT_MASK,
Suravee Suthikulpanit3f398bc2013-04-22 16:32:34 -0500811 iommu->mmio_base + MMIO_STATUS_OFFSET);
812
813 if (status & MMIO_STATUS_EVT_INT_MASK) {
814 pr_devel("AMD-Vi: Processing IOMMU Event Log\n");
815 iommu_poll_events(iommu);
816 }
817
818 if (status & MMIO_STATUS_PPR_INT_MASK) {
819 pr_devel("AMD-Vi: Processing IOMMU PPR Log\n");
820 iommu_poll_ppr_log(iommu);
821 }
822
Suravee Suthikulpanitbd6fcef2016-08-23 13:52:37 -0500823#ifdef CONFIG_IRQ_REMAP
824 if (status & MMIO_STATUS_GALOG_INT_MASK) {
825 pr_devel("AMD-Vi: Processing IOMMU GA Log\n");
826 iommu_poll_ga_log(iommu);
827 }
828#endif
829
Suravee Suthikulpanit3f398bc2013-04-22 16:32:34 -0500830 /*
831 * Hardware bug: ERBT1312
832 * When re-enabling interrupt (by writing 1
833 * to clear the bit), the hardware might also try to set
834 * the interrupt bit in the event status register.
835 * In this scenario, the bit will be set, and disable
836 * subsequent interrupts.
837 *
838 * Workaround: The IOMMU driver should read back the
839 * status register and check if the interrupt bits are cleared.
840 * If not, driver will need to go through the interrupt handler
841 * again and re-clear the bits
842 */
843 status = readl(iommu->mmio_base + MMIO_STATUS_OFFSET);
Joerg Roedel72e1dcc2011-11-10 19:13:51 +0100844 }
Joerg Roedel90008ee2008-09-09 16:41:05 +0200845 return IRQ_HANDLED;
Joerg Roedela80dc3e2008-09-11 16:51:41 +0200846}
847
Joerg Roedel72fe00f2011-05-10 10:50:42 +0200848irqreturn_t amd_iommu_int_handler(int irq, void *data)
849{
850 return IRQ_WAKE_THREAD;
851}
852
Joerg Roedela80dc3e2008-09-11 16:51:41 +0200853/****************************************************************************
854 *
Joerg Roedel431b2a22008-07-11 17:14:22 +0200855 * IOMMU command queuing functions
856 *
857 ****************************************************************************/
858
Joerg Roedelac0ea6e2011-04-06 18:38:20 +0200859static int wait_on_sem(volatile u64 *sem)
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200860{
Joerg Roedelac0ea6e2011-04-06 18:38:20 +0200861 int i = 0;
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200862
Joerg Roedelac0ea6e2011-04-06 18:38:20 +0200863 while (*sem == 0 && i < LOOP_TIMEOUT) {
864 udelay(1);
865 i += 1;
866 }
867
868 if (i == LOOP_TIMEOUT) {
869 pr_alert("AMD-Vi: Completion-Wait loop timed out\n");
870 return -EIO;
871 }
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200872
873 return 0;
874}
875
Joerg Roedelac0ea6e2011-04-06 18:38:20 +0200876static void copy_cmd_to_buffer(struct amd_iommu *iommu,
Tom Lendackyd334a562017-06-05 14:52:12 -0500877 struct iommu_cmd *cmd)
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200878{
Joerg Roedelac0ea6e2011-04-06 18:38:20 +0200879 u8 *target;
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200880
Tom Lendackyd334a562017-06-05 14:52:12 -0500881 target = iommu->cmd_buf + iommu->cmd_buf_tail;
882
883 iommu->cmd_buf_tail += sizeof(*cmd);
884 iommu->cmd_buf_tail %= CMD_BUFFER_SIZE;
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200885
Joerg Roedelac0ea6e2011-04-06 18:38:20 +0200886 /* Copy command to buffer */
887 memcpy(target, cmd, sizeof(*cmd));
888
889 /* Tell the IOMMU about it */
Tom Lendackyd334a562017-06-05 14:52:12 -0500890 writel(iommu->cmd_buf_tail, iommu->mmio_base + MMIO_CMD_TAIL_OFFSET);
Joerg Roedelac0ea6e2011-04-06 18:38:20 +0200891}
892
Joerg Roedel815b33f2011-04-06 17:26:49 +0200893static void build_completion_wait(struct iommu_cmd *cmd, u64 address)
Joerg Roedelded46732011-04-06 10:53:48 +0200894{
Joerg Roedel815b33f2011-04-06 17:26:49 +0200895 WARN_ON(address & 0x7ULL);
896
Joerg Roedelded46732011-04-06 10:53:48 +0200897 memset(cmd, 0, sizeof(*cmd));
Joerg Roedel815b33f2011-04-06 17:26:49 +0200898 cmd->data[0] = lower_32_bits(__pa(address)) | CMD_COMPL_WAIT_STORE_MASK;
899 cmd->data[1] = upper_32_bits(__pa(address));
900 cmd->data[2] = 1;
Joerg Roedelded46732011-04-06 10:53:48 +0200901 CMD_SET_TYPE(cmd, CMD_COMPL_WAIT);
902}
903
Joerg Roedel94fe79e2011-04-06 11:07:21 +0200904static void build_inv_dte(struct iommu_cmd *cmd, u16 devid)
905{
906 memset(cmd, 0, sizeof(*cmd));
907 cmd->data[0] = devid;
908 CMD_SET_TYPE(cmd, CMD_INV_DEV_ENTRY);
909}
910
Joerg Roedel11b64022011-04-06 11:49:28 +0200911static void build_inv_iommu_pages(struct iommu_cmd *cmd, u64 address,
912 size_t size, u16 domid, int pde)
913{
914 u64 pages;
Quentin Lambertae0cbbb2015-02-04 11:40:07 +0100915 bool s;
Joerg Roedel11b64022011-04-06 11:49:28 +0200916
917 pages = iommu_num_pages(address, size, PAGE_SIZE);
Quentin Lambertae0cbbb2015-02-04 11:40:07 +0100918 s = false;
Joerg Roedel11b64022011-04-06 11:49:28 +0200919
920 if (pages > 1) {
921 /*
922 * If we have to flush more than one page, flush all
923 * TLB entries for this domain
924 */
925 address = CMD_INV_IOMMU_ALL_PAGES_ADDRESS;
Quentin Lambertae0cbbb2015-02-04 11:40:07 +0100926 s = true;
Joerg Roedel11b64022011-04-06 11:49:28 +0200927 }
928
929 address &= PAGE_MASK;
930
931 memset(cmd, 0, sizeof(*cmd));
932 cmd->data[1] |= domid;
933 cmd->data[2] = lower_32_bits(address);
934 cmd->data[3] = upper_32_bits(address);
935 CMD_SET_TYPE(cmd, CMD_INV_IOMMU_PAGES);
936 if (s) /* size bit - we flush more than one 4kb page */
937 cmd->data[2] |= CMD_INV_IOMMU_PAGES_SIZE_MASK;
Frank Arnolddf805ab2012-08-27 19:21:04 +0200938 if (pde) /* PDE bit - we want to flush everything, not only the PTEs */
Joerg Roedel11b64022011-04-06 11:49:28 +0200939 cmd->data[2] |= CMD_INV_IOMMU_PAGES_PDE_MASK;
940}
941
Joerg Roedelcb41ed82011-04-05 11:00:53 +0200942static void build_inv_iotlb_pages(struct iommu_cmd *cmd, u16 devid, int qdep,
943 u64 address, size_t size)
944{
945 u64 pages;
Quentin Lambertae0cbbb2015-02-04 11:40:07 +0100946 bool s;
Joerg Roedelcb41ed82011-04-05 11:00:53 +0200947
948 pages = iommu_num_pages(address, size, PAGE_SIZE);
Quentin Lambertae0cbbb2015-02-04 11:40:07 +0100949 s = false;
Joerg Roedelcb41ed82011-04-05 11:00:53 +0200950
951 if (pages > 1) {
952 /*
953 * If we have to flush more than one page, flush all
954 * TLB entries for this domain
955 */
956 address = CMD_INV_IOMMU_ALL_PAGES_ADDRESS;
Quentin Lambertae0cbbb2015-02-04 11:40:07 +0100957 s = true;
Joerg Roedelcb41ed82011-04-05 11:00:53 +0200958 }
959
960 address &= PAGE_MASK;
961
962 memset(cmd, 0, sizeof(*cmd));
963 cmd->data[0] = devid;
964 cmd->data[0] |= (qdep & 0xff) << 24;
965 cmd->data[1] = devid;
966 cmd->data[2] = lower_32_bits(address);
967 cmd->data[3] = upper_32_bits(address);
968 CMD_SET_TYPE(cmd, CMD_INV_IOTLB_PAGES);
969 if (s)
970 cmd->data[2] |= CMD_INV_IOMMU_PAGES_SIZE_MASK;
971}
972
Joerg Roedel22e266c2011-11-21 15:59:08 +0100973static void build_inv_iommu_pasid(struct iommu_cmd *cmd, u16 domid, int pasid,
974 u64 address, bool size)
975{
976 memset(cmd, 0, sizeof(*cmd));
977
978 address &= ~(0xfffULL);
979
Suravee Suthikulpanita919a012014-03-05 18:54:18 -0600980 cmd->data[0] = pasid;
Joerg Roedel22e266c2011-11-21 15:59:08 +0100981 cmd->data[1] = domid;
982 cmd->data[2] = lower_32_bits(address);
983 cmd->data[3] = upper_32_bits(address);
984 cmd->data[2] |= CMD_INV_IOMMU_PAGES_PDE_MASK;
985 cmd->data[2] |= CMD_INV_IOMMU_PAGES_GN_MASK;
986 if (size)
987 cmd->data[2] |= CMD_INV_IOMMU_PAGES_SIZE_MASK;
988 CMD_SET_TYPE(cmd, CMD_INV_IOMMU_PAGES);
989}
990
991static void build_inv_iotlb_pasid(struct iommu_cmd *cmd, u16 devid, int pasid,
992 int qdep, u64 address, bool size)
993{
994 memset(cmd, 0, sizeof(*cmd));
995
996 address &= ~(0xfffULL);
997
998 cmd->data[0] = devid;
Jay Cornwalle8d2d822014-02-26 15:49:31 -0600999 cmd->data[0] |= ((pasid >> 8) & 0xff) << 16;
Joerg Roedel22e266c2011-11-21 15:59:08 +01001000 cmd->data[0] |= (qdep & 0xff) << 24;
1001 cmd->data[1] = devid;
Jay Cornwalle8d2d822014-02-26 15:49:31 -06001002 cmd->data[1] |= (pasid & 0xff) << 16;
Joerg Roedel22e266c2011-11-21 15:59:08 +01001003 cmd->data[2] = lower_32_bits(address);
1004 cmd->data[2] |= CMD_INV_IOMMU_PAGES_GN_MASK;
1005 cmd->data[3] = upper_32_bits(address);
1006 if (size)
1007 cmd->data[2] |= CMD_INV_IOMMU_PAGES_SIZE_MASK;
1008 CMD_SET_TYPE(cmd, CMD_INV_IOTLB_PAGES);
1009}
1010
Joerg Roedelc99afa22011-11-21 18:19:25 +01001011static void build_complete_ppr(struct iommu_cmd *cmd, u16 devid, int pasid,
1012 int status, int tag, bool gn)
1013{
1014 memset(cmd, 0, sizeof(*cmd));
1015
1016 cmd->data[0] = devid;
1017 if (gn) {
Suravee Suthikulpanita919a012014-03-05 18:54:18 -06001018 cmd->data[1] = pasid;
Joerg Roedelc99afa22011-11-21 18:19:25 +01001019 cmd->data[2] = CMD_INV_IOMMU_PAGES_GN_MASK;
1020 }
1021 cmd->data[3] = tag & 0x1ff;
1022 cmd->data[3] |= (status & PPR_STATUS_MASK) << PPR_STATUS_SHIFT;
1023
1024 CMD_SET_TYPE(cmd, CMD_COMPLETE_PPR);
1025}
1026
Joerg Roedel58fc7f12011-04-11 11:13:24 +02001027static void build_inv_all(struct iommu_cmd *cmd)
1028{
1029 memset(cmd, 0, sizeof(*cmd));
1030 CMD_SET_TYPE(cmd, CMD_INV_ALL);
Joerg Roedela19ae1e2008-06-26 21:27:55 +02001031}
1032
Joerg Roedel7ef27982012-06-21 16:46:04 +02001033static void build_inv_irt(struct iommu_cmd *cmd, u16 devid)
1034{
1035 memset(cmd, 0, sizeof(*cmd));
1036 cmd->data[0] = devid;
1037 CMD_SET_TYPE(cmd, CMD_INV_IRT);
1038}
1039
Joerg Roedel431b2a22008-07-11 17:14:22 +02001040/*
Joerg Roedelb6c02712008-06-26 21:27:53 +02001041 * Writes the command to the IOMMUs command buffer and informs the
Joerg Roedelac0ea6e2011-04-06 18:38:20 +02001042 * hardware about the new command.
Joerg Roedel431b2a22008-07-11 17:14:22 +02001043 */
Joerg Roedel4bf5bee2016-09-14 11:41:59 +02001044static int __iommu_queue_command_sync(struct amd_iommu *iommu,
1045 struct iommu_cmd *cmd,
1046 bool sync)
Joerg Roedela19ae1e2008-06-26 21:27:55 +02001047{
Tom Lendacky23e967e2017-06-05 14:52:26 -05001048 unsigned int count = 0;
Tom Lendackyd334a562017-06-05 14:52:12 -05001049 u32 left, next_tail;
Joerg Roedela19ae1e2008-06-26 21:27:55 +02001050
Tom Lendackyd334a562017-06-05 14:52:12 -05001051 next_tail = (iommu->cmd_buf_tail + sizeof(*cmd)) % CMD_BUFFER_SIZE;
Joerg Roedelac0ea6e2011-04-06 18:38:20 +02001052again:
Tom Lendackyd334a562017-06-05 14:52:12 -05001053 left = (iommu->cmd_buf_head - next_tail) % CMD_BUFFER_SIZE;
Joerg Roedelac0ea6e2011-04-06 18:38:20 +02001054
Huang Rui432abf62016-12-12 07:28:26 -05001055 if (left <= 0x20) {
Tom Lendacky23e967e2017-06-05 14:52:26 -05001056 /* Skip udelay() the first time around */
1057 if (count++) {
1058 if (count == LOOP_TIMEOUT) {
1059 pr_err("AMD-Vi: Command buffer timeout\n");
1060 return -EIO;
1061 }
Joerg Roedelac0ea6e2011-04-06 18:38:20 +02001062
Tom Lendacky23e967e2017-06-05 14:52:26 -05001063 udelay(1);
Tom Lendackyd334a562017-06-05 14:52:12 -05001064 }
1065
Tom Lendacky23e967e2017-06-05 14:52:26 -05001066 /* Update head and recheck remaining space */
1067 iommu->cmd_buf_head = readl(iommu->mmio_base +
1068 MMIO_CMD_HEAD_OFFSET);
Joerg Roedelac0ea6e2011-04-06 18:38:20 +02001069
1070 goto again;
Joerg Roedel136f78a2008-07-11 17:14:27 +02001071 }
1072
Tom Lendackyd334a562017-06-05 14:52:12 -05001073 copy_cmd_to_buffer(iommu, cmd);
Joerg Roedel519c31b2008-08-14 19:55:15 +02001074
Tom Lendacky23e967e2017-06-05 14:52:26 -05001075 /* Do we need to make sure all commands are processed? */
Joerg Roedelf1ca1512011-09-02 14:10:32 +02001076 iommu->need_sync = sync;
Joerg Roedelac0ea6e2011-04-06 18:38:20 +02001077
Joerg Roedel4bf5bee2016-09-14 11:41:59 +02001078 return 0;
1079}
1080
1081static int iommu_queue_command_sync(struct amd_iommu *iommu,
1082 struct iommu_cmd *cmd,
1083 bool sync)
1084{
1085 unsigned long flags;
1086 int ret;
1087
1088 spin_lock_irqsave(&iommu->lock, flags);
1089 ret = __iommu_queue_command_sync(iommu, cmd, sync);
Joerg Roedela19ae1e2008-06-26 21:27:55 +02001090 spin_unlock_irqrestore(&iommu->lock, flags);
1091
Joerg Roedel4bf5bee2016-09-14 11:41:59 +02001092 return ret;
Joerg Roedel8d201962008-12-02 20:34:41 +01001093}
1094
Joerg Roedelf1ca1512011-09-02 14:10:32 +02001095static int iommu_queue_command(struct amd_iommu *iommu, struct iommu_cmd *cmd)
1096{
1097 return iommu_queue_command_sync(iommu, cmd, true);
1098}
1099
Joerg Roedel8d201962008-12-02 20:34:41 +01001100/*
1101 * This function queues a completion wait command into the command
1102 * buffer of an IOMMU
1103 */
Joerg Roedel8d201962008-12-02 20:34:41 +01001104static int iommu_completion_wait(struct amd_iommu *iommu)
1105{
Joerg Roedel815b33f2011-04-06 17:26:49 +02001106 struct iommu_cmd cmd;
Joerg Roedel4bf5bee2016-09-14 11:41:59 +02001107 unsigned long flags;
Joerg Roedelac0ea6e2011-04-06 18:38:20 +02001108 int ret;
Joerg Roedel8d201962008-12-02 20:34:41 +01001109
1110 if (!iommu->need_sync)
Joerg Roedel815b33f2011-04-06 17:26:49 +02001111 return 0;
Joerg Roedel8d201962008-12-02 20:34:41 +01001112
Joerg Roedel8d201962008-12-02 20:34:41 +01001113
Joerg Roedel4bf5bee2016-09-14 11:41:59 +02001114 build_completion_wait(&cmd, (u64)&iommu->cmd_sem);
1115
1116 spin_lock_irqsave(&iommu->lock, flags);
1117
1118 iommu->cmd_sem = 0;
1119
1120 ret = __iommu_queue_command_sync(iommu, &cmd, false);
Joerg Roedel8d201962008-12-02 20:34:41 +01001121 if (ret)
Joerg Roedel4bf5bee2016-09-14 11:41:59 +02001122 goto out_unlock;
Joerg Roedel8d201962008-12-02 20:34:41 +01001123
Joerg Roedel4bf5bee2016-09-14 11:41:59 +02001124 ret = wait_on_sem(&iommu->cmd_sem);
1125
1126out_unlock:
1127 spin_unlock_irqrestore(&iommu->lock, flags);
1128
1129 return ret;
Joerg Roedela19ae1e2008-06-26 21:27:55 +02001130}
1131
Joerg Roedeld8c13082011-04-06 18:51:26 +02001132static int iommu_flush_dte(struct amd_iommu *iommu, u16 devid)
Joerg Roedela19ae1e2008-06-26 21:27:55 +02001133{
1134 struct iommu_cmd cmd;
1135
Joerg Roedeld8c13082011-04-06 18:51:26 +02001136 build_inv_dte(&cmd, devid);
Joerg Roedela19ae1e2008-06-26 21:27:55 +02001137
Joerg Roedeld8c13082011-04-06 18:51:26 +02001138 return iommu_queue_command(iommu, &cmd);
1139}
1140
Joerg Roedel7d0c5cc2011-04-07 08:16:10 +02001141static void iommu_flush_dte_all(struct amd_iommu *iommu)
1142{
1143 u32 devid;
1144
1145 for (devid = 0; devid <= 0xffff; ++devid)
1146 iommu_flush_dte(iommu, devid);
1147
1148 iommu_completion_wait(iommu);
Joerg Roedela19ae1e2008-06-26 21:27:55 +02001149}
1150
1151/*
Joerg Roedel7d0c5cc2011-04-07 08:16:10 +02001152 * This function uses heavy locking and may disable irqs for some time. But
1153 * this is no issue because it is only called during resume.
Joerg Roedela19ae1e2008-06-26 21:27:55 +02001154 */
Joerg Roedel7d0c5cc2011-04-07 08:16:10 +02001155static void iommu_flush_tlb_all(struct amd_iommu *iommu)
Joerg Roedela19ae1e2008-06-26 21:27:55 +02001156{
Joerg Roedel7d0c5cc2011-04-07 08:16:10 +02001157 u32 dom_id;
Joerg Roedela19ae1e2008-06-26 21:27:55 +02001158
Joerg Roedel7d0c5cc2011-04-07 08:16:10 +02001159 for (dom_id = 0; dom_id <= 0xffff; ++dom_id) {
1160 struct iommu_cmd cmd;
1161 build_inv_iommu_pages(&cmd, 0, CMD_INV_IOMMU_ALL_PAGES_ADDRESS,
1162 dom_id, 1);
1163 iommu_queue_command(iommu, &cmd);
1164 }
Joerg Roedel431b2a22008-07-11 17:14:22 +02001165
Joerg Roedel7d0c5cc2011-04-07 08:16:10 +02001166 iommu_completion_wait(iommu);
Joerg Roedela19ae1e2008-06-26 21:27:55 +02001167}
1168
Joerg Roedel58fc7f12011-04-11 11:13:24 +02001169static void iommu_flush_all(struct amd_iommu *iommu)
1170{
1171 struct iommu_cmd cmd;
1172
1173 build_inv_all(&cmd);
1174
1175 iommu_queue_command(iommu, &cmd);
1176 iommu_completion_wait(iommu);
1177}
1178
Joerg Roedel7ef27982012-06-21 16:46:04 +02001179static void iommu_flush_irt(struct amd_iommu *iommu, u16 devid)
1180{
1181 struct iommu_cmd cmd;
1182
1183 build_inv_irt(&cmd, devid);
1184
1185 iommu_queue_command(iommu, &cmd);
1186}
1187
1188static void iommu_flush_irt_all(struct amd_iommu *iommu)
1189{
1190 u32 devid;
1191
1192 for (devid = 0; devid <= MAX_DEV_TABLE_ENTRIES; devid++)
1193 iommu_flush_irt(iommu, devid);
1194
1195 iommu_completion_wait(iommu);
1196}
1197
Joerg Roedel7d0c5cc2011-04-07 08:16:10 +02001198void iommu_flush_all_caches(struct amd_iommu *iommu)
1199{
Joerg Roedel58fc7f12011-04-11 11:13:24 +02001200 if (iommu_feature(iommu, FEATURE_IA)) {
1201 iommu_flush_all(iommu);
1202 } else {
1203 iommu_flush_dte_all(iommu);
Joerg Roedel7ef27982012-06-21 16:46:04 +02001204 iommu_flush_irt_all(iommu);
Joerg Roedel58fc7f12011-04-11 11:13:24 +02001205 iommu_flush_tlb_all(iommu);
1206 }
Joerg Roedel7d0c5cc2011-04-07 08:16:10 +02001207}
1208
Joerg Roedel431b2a22008-07-11 17:14:22 +02001209/*
Joerg Roedelcb41ed82011-04-05 11:00:53 +02001210 * Command send function for flushing on-device TLB
1211 */
Joerg Roedel6c542042011-06-09 17:07:31 +02001212static int device_flush_iotlb(struct iommu_dev_data *dev_data,
1213 u64 address, size_t size)
Joerg Roedelcb41ed82011-04-05 11:00:53 +02001214{
Joerg Roedelcb41ed82011-04-05 11:00:53 +02001215 struct amd_iommu *iommu;
1216 struct iommu_cmd cmd;
Joerg Roedelcb41ed82011-04-05 11:00:53 +02001217 int qdep;
1218
Joerg Roedelea61cdd2011-06-09 12:56:30 +02001219 qdep = dev_data->ats.qdep;
1220 iommu = amd_iommu_rlookup_table[dev_data->devid];
Joerg Roedelcb41ed82011-04-05 11:00:53 +02001221
Joerg Roedelea61cdd2011-06-09 12:56:30 +02001222 build_inv_iotlb_pages(&cmd, dev_data->devid, qdep, address, size);
Joerg Roedelcb41ed82011-04-05 11:00:53 +02001223
1224 return iommu_queue_command(iommu, &cmd);
1225}
1226
1227/*
Joerg Roedel431b2a22008-07-11 17:14:22 +02001228 * Command send function for invalidating a device table entry
1229 */
Joerg Roedel6c542042011-06-09 17:07:31 +02001230static int device_flush_dte(struct iommu_dev_data *dev_data)
Joerg Roedel3fa43652009-11-26 15:04:38 +01001231{
1232 struct amd_iommu *iommu;
Joerg Roedele25bfb52015-10-20 17:33:38 +02001233 u16 alias;
Joerg Roedelcb41ed82011-04-05 11:00:53 +02001234 int ret;
Joerg Roedel3fa43652009-11-26 15:04:38 +01001235
Joerg Roedel6c542042011-06-09 17:07:31 +02001236 iommu = amd_iommu_rlookup_table[dev_data->devid];
Joerg Roedele3156042016-04-08 15:12:24 +02001237 alias = dev_data->alias;
Joerg Roedel3fa43652009-11-26 15:04:38 +01001238
Joerg Roedelf62dda62011-06-09 12:55:35 +02001239 ret = iommu_flush_dte(iommu, dev_data->devid);
Joerg Roedele25bfb52015-10-20 17:33:38 +02001240 if (!ret && alias != dev_data->devid)
1241 ret = iommu_flush_dte(iommu, alias);
Joerg Roedelcb41ed82011-04-05 11:00:53 +02001242 if (ret)
1243 return ret;
1244
Joerg Roedelea61cdd2011-06-09 12:56:30 +02001245 if (dev_data->ats.enabled)
Joerg Roedel6c542042011-06-09 17:07:31 +02001246 ret = device_flush_iotlb(dev_data, 0, ~0UL);
Joerg Roedelcb41ed82011-04-05 11:00:53 +02001247
1248 return ret;
Joerg Roedel3fa43652009-11-26 15:04:38 +01001249}
1250
Joerg Roedel431b2a22008-07-11 17:14:22 +02001251/*
1252 * TLB invalidation function which is called from the mapping functions.
1253 * It invalidates a single PTE if the range to flush is within a single
1254 * page. Otherwise it flushes the whole TLB of the IOMMU.
1255 */
Joerg Roedel17b124b2011-04-06 18:01:35 +02001256static void __domain_flush_pages(struct protection_domain *domain,
1257 u64 address, size_t size, int pde)
Joerg Roedela19ae1e2008-06-26 21:27:55 +02001258{
Joerg Roedelcb41ed82011-04-05 11:00:53 +02001259 struct iommu_dev_data *dev_data;
Joerg Roedel11b64022011-04-06 11:49:28 +02001260 struct iommu_cmd cmd;
1261 int ret = 0, i;
Joerg Roedela19ae1e2008-06-26 21:27:55 +02001262
Joerg Roedel11b64022011-04-06 11:49:28 +02001263 build_inv_iommu_pages(&cmd, address, size, domain->id, pde);
Joerg Roedel999ba412008-07-03 19:35:08 +02001264
Suravee Suthikulpanit6b9376e2017-02-24 02:48:17 -06001265 for (i = 0; i < amd_iommu_get_num_iommus(); ++i) {
Joerg Roedel6de8ad92009-11-23 18:30:32 +01001266 if (!domain->dev_iommu[i])
1267 continue;
1268
1269 /*
1270 * Devices of this domain are behind this IOMMU
1271 * We need a TLB flush
1272 */
Joerg Roedel11b64022011-04-06 11:49:28 +02001273 ret |= iommu_queue_command(amd_iommus[i], &cmd);
Joerg Roedel6de8ad92009-11-23 18:30:32 +01001274 }
1275
Joerg Roedelcb41ed82011-04-05 11:00:53 +02001276 list_for_each_entry(dev_data, &domain->dev_list, list) {
Joerg Roedelcb41ed82011-04-05 11:00:53 +02001277
Joerg Roedelea61cdd2011-06-09 12:56:30 +02001278 if (!dev_data->ats.enabled)
Joerg Roedelcb41ed82011-04-05 11:00:53 +02001279 continue;
1280
Joerg Roedel6c542042011-06-09 17:07:31 +02001281 ret |= device_flush_iotlb(dev_data, address, size);
Joerg Roedelcb41ed82011-04-05 11:00:53 +02001282 }
1283
Joerg Roedel11b64022011-04-06 11:49:28 +02001284 WARN_ON(ret);
Joerg Roedel6de8ad92009-11-23 18:30:32 +01001285}
1286
Joerg Roedel17b124b2011-04-06 18:01:35 +02001287static void domain_flush_pages(struct protection_domain *domain,
1288 u64 address, size_t size)
Joerg Roedel6de8ad92009-11-23 18:30:32 +01001289{
Joerg Roedel17b124b2011-04-06 18:01:35 +02001290 __domain_flush_pages(domain, address, size, 0);
Joerg Roedela19ae1e2008-06-26 21:27:55 +02001291}
Joerg Roedelb6c02712008-06-26 21:27:53 +02001292
Joerg Roedel1c655772008-09-04 18:40:05 +02001293/* Flush the whole IO/TLB for a given protection domain */
Joerg Roedel17b124b2011-04-06 18:01:35 +02001294static void domain_flush_tlb(struct protection_domain *domain)
Joerg Roedel1c655772008-09-04 18:40:05 +02001295{
Joerg Roedel17b124b2011-04-06 18:01:35 +02001296 __domain_flush_pages(domain, 0, CMD_INV_IOMMU_ALL_PAGES_ADDRESS, 0);
Joerg Roedel1c655772008-09-04 18:40:05 +02001297}
1298
Chris Wright42a49f92009-06-15 15:42:00 +02001299/* Flush the whole IO/TLB for a given protection domain - including PDE */
Joerg Roedel17b124b2011-04-06 18:01:35 +02001300static void domain_flush_tlb_pde(struct protection_domain *domain)
Chris Wright42a49f92009-06-15 15:42:00 +02001301{
Joerg Roedel17b124b2011-04-06 18:01:35 +02001302 __domain_flush_pages(domain, 0, CMD_INV_IOMMU_ALL_PAGES_ADDRESS, 1);
1303}
1304
1305static void domain_flush_complete(struct protection_domain *domain)
Joerg Roedelb6c02712008-06-26 21:27:53 +02001306{
1307 int i;
1308
Suravee Suthikulpanit6b9376e2017-02-24 02:48:17 -06001309 for (i = 0; i < amd_iommu_get_num_iommus(); ++i) {
Joerg Roedelf1eae7c2016-07-06 12:50:35 +02001310 if (domain && !domain->dev_iommu[i])
Joerg Roedelb6c02712008-06-26 21:27:53 +02001311 continue;
1312
1313 /*
1314 * Devices of this domain are behind this IOMMU
1315 * We need to wait for completion of all commands.
1316 */
1317 iommu_completion_wait(amd_iommus[i]);
1318 }
1319}
1320
Joerg Roedelb00d3bc2009-11-26 15:35:33 +01001321
Joerg Roedel43f49602008-12-02 21:01:12 +01001322/*
Joerg Roedelb00d3bc2009-11-26 15:35:33 +01001323 * This function flushes the DTEs for all devices in domain
Joerg Roedel43f49602008-12-02 21:01:12 +01001324 */
Joerg Roedel17b124b2011-04-06 18:01:35 +02001325static void domain_flush_devices(struct protection_domain *domain)
Joerg Roedelbfd1be12009-05-05 15:33:57 +02001326{
Joerg Roedelb00d3bc2009-11-26 15:35:33 +01001327 struct iommu_dev_data *dev_data;
Joerg Roedelb00d3bc2009-11-26 15:35:33 +01001328
1329 list_for_each_entry(dev_data, &domain->dev_list, list)
Joerg Roedel6c542042011-06-09 17:07:31 +02001330 device_flush_dte(dev_data);
Joerg Roedelb00d3bc2009-11-26 15:35:33 +01001331}
1332
Joerg Roedel431b2a22008-07-11 17:14:22 +02001333/****************************************************************************
1334 *
1335 * The functions below are used the create the page table mappings for
1336 * unity mapped regions.
1337 *
1338 ****************************************************************************/
1339
1340/*
Joerg Roedel308973d2009-11-24 17:43:32 +01001341 * This function is used to add another level to an IO page table. Adding
1342 * another level increases the size of the address space by 9 bits to a size up
1343 * to 64 bits.
1344 */
1345static bool increase_address_space(struct protection_domain *domain,
1346 gfp_t gfp)
1347{
1348 u64 *pte;
1349
1350 if (domain->mode == PAGE_MODE_6_LEVEL)
1351 /* address space already 64 bit large */
1352 return false;
1353
1354 pte = (void *)get_zeroed_page(gfp);
1355 if (!pte)
1356 return false;
1357
1358 *pte = PM_LEVEL_PDE(domain->mode,
1359 virt_to_phys(domain->pt_root));
1360 domain->pt_root = pte;
1361 domain->mode += 1;
1362 domain->updated = true;
1363
1364 return true;
1365}
1366
1367static u64 *alloc_pte(struct protection_domain *domain,
1368 unsigned long address,
Joerg Roedelcbb9d722010-01-15 14:41:15 +01001369 unsigned long page_size,
Joerg Roedel308973d2009-11-24 17:43:32 +01001370 u64 **pte_page,
1371 gfp_t gfp)
1372{
Joerg Roedelcbb9d722010-01-15 14:41:15 +01001373 int level, end_lvl;
Joerg Roedel308973d2009-11-24 17:43:32 +01001374 u64 *pte, *page;
Joerg Roedelcbb9d722010-01-15 14:41:15 +01001375
1376 BUG_ON(!is_power_of_2(page_size));
Joerg Roedel308973d2009-11-24 17:43:32 +01001377
1378 while (address > PM_LEVEL_SIZE(domain->mode))
1379 increase_address_space(domain, gfp);
1380
Joerg Roedelcbb9d722010-01-15 14:41:15 +01001381 level = domain->mode - 1;
1382 pte = &domain->pt_root[PM_LEVEL_INDEX(level, address)];
1383 address = PAGE_SIZE_ALIGN(address, page_size);
1384 end_lvl = PAGE_SIZE_LEVEL(page_size);
Joerg Roedel308973d2009-11-24 17:43:32 +01001385
1386 while (level > end_lvl) {
Joerg Roedel7bfa5bd2015-12-21 19:07:50 +01001387 u64 __pte, __npte;
1388
1389 __pte = *pte;
1390
1391 if (!IOMMU_PTE_PRESENT(__pte)) {
Joerg Roedel308973d2009-11-24 17:43:32 +01001392 page = (u64 *)get_zeroed_page(gfp);
1393 if (!page)
1394 return NULL;
Joerg Roedel7bfa5bd2015-12-21 19:07:50 +01001395
1396 __npte = PM_LEVEL_PDE(level, virt_to_phys(page));
1397
Baoquan He134414f2016-09-15 16:50:50 +08001398 /* pte could have been changed somewhere. */
1399 if (cmpxchg64(pte, __pte, __npte) != __pte) {
Joerg Roedel7bfa5bd2015-12-21 19:07:50 +01001400 free_page((unsigned long)page);
1401 continue;
1402 }
Joerg Roedel308973d2009-11-24 17:43:32 +01001403 }
1404
Joerg Roedelcbb9d722010-01-15 14:41:15 +01001405 /* No level skipping support yet */
1406 if (PM_PTE_LEVEL(*pte) != level)
1407 return NULL;
1408
Joerg Roedel308973d2009-11-24 17:43:32 +01001409 level -= 1;
1410
1411 pte = IOMMU_PTE_PAGE(*pte);
1412
1413 if (pte_page && level == end_lvl)
1414 *pte_page = pte;
1415
1416 pte = &pte[PM_LEVEL_INDEX(level, address)];
1417 }
1418
1419 return pte;
1420}
1421
1422/*
1423 * This function checks if there is a PTE for a given dma address. If
1424 * there is one, it returns the pointer to it.
1425 */
Joerg Roedel3039ca12015-04-01 14:58:48 +02001426static u64 *fetch_pte(struct protection_domain *domain,
1427 unsigned long address,
1428 unsigned long *page_size)
Joerg Roedel308973d2009-11-24 17:43:32 +01001429{
1430 int level;
1431 u64 *pte;
1432
Joerg Roedel24cd7722010-01-19 17:27:39 +01001433 if (address > PM_LEVEL_SIZE(domain->mode))
1434 return NULL;
Joerg Roedel308973d2009-11-24 17:43:32 +01001435
Joerg Roedel3039ca12015-04-01 14:58:48 +02001436 level = domain->mode - 1;
1437 pte = &domain->pt_root[PM_LEVEL_INDEX(level, address)];
1438 *page_size = PTE_LEVEL_PAGE_SIZE(level);
Joerg Roedel24cd7722010-01-19 17:27:39 +01001439
1440 while (level > 0) {
1441
1442 /* Not Present */
Joerg Roedel308973d2009-11-24 17:43:32 +01001443 if (!IOMMU_PTE_PRESENT(*pte))
1444 return NULL;
1445
Joerg Roedel24cd7722010-01-19 17:27:39 +01001446 /* Large PTE */
Joerg Roedel3039ca12015-04-01 14:58:48 +02001447 if (PM_PTE_LEVEL(*pte) == 7 ||
1448 PM_PTE_LEVEL(*pte) == 0)
1449 break;
Joerg Roedel24cd7722010-01-19 17:27:39 +01001450
1451 /* No level skipping support yet */
1452 if (PM_PTE_LEVEL(*pte) != level)
1453 return NULL;
1454
Joerg Roedel308973d2009-11-24 17:43:32 +01001455 level -= 1;
1456
Joerg Roedel24cd7722010-01-19 17:27:39 +01001457 /* Walk to the next level */
Joerg Roedel3039ca12015-04-01 14:58:48 +02001458 pte = IOMMU_PTE_PAGE(*pte);
1459 pte = &pte[PM_LEVEL_INDEX(level, address)];
1460 *page_size = PTE_LEVEL_PAGE_SIZE(level);
1461 }
1462
1463 if (PM_PTE_LEVEL(*pte) == 0x07) {
1464 unsigned long pte_mask;
1465
1466 /*
1467 * If we have a series of large PTEs, make
1468 * sure to return a pointer to the first one.
1469 */
1470 *page_size = pte_mask = PTE_PAGE_SIZE(*pte);
1471 pte_mask = ~((PAGE_SIZE_PTE_COUNT(pte_mask) << 3) - 1);
1472 pte = (u64 *)(((unsigned long)pte) & pte_mask);
Joerg Roedel308973d2009-11-24 17:43:32 +01001473 }
1474
1475 return pte;
1476}
1477
1478/*
Joerg Roedel431b2a22008-07-11 17:14:22 +02001479 * Generic mapping functions. It maps a physical address into a DMA
1480 * address space. It allocates the page table pages if necessary.
1481 * In the future it can be extended to a generic mapping function
1482 * supporting all features of AMD IOMMU page tables like level skipping
1483 * and full 64 bit address spaces.
1484 */
Joerg Roedel38e817f2008-12-02 17:27:52 +01001485static int iommu_map_page(struct protection_domain *dom,
1486 unsigned long bus_addr,
1487 unsigned long phys_addr,
Joerg Roedelb911b892016-07-05 14:29:11 +02001488 unsigned long page_size,
Joerg Roedelabdc5eb2009-09-03 11:33:51 +02001489 int prot,
Joerg Roedelb911b892016-07-05 14:29:11 +02001490 gfp_t gfp)
Joerg Roedelbd0e5212008-06-26 21:27:56 +02001491{
Joerg Roedel8bda3092009-05-12 12:02:46 +02001492 u64 __pte, *pte;
Joerg Roedelcbb9d722010-01-15 14:41:15 +01001493 int i, count;
Joerg Roedelabdc5eb2009-09-03 11:33:51 +02001494
Joerg Roedeld4b03662015-04-01 14:58:52 +02001495 BUG_ON(!IS_ALIGNED(bus_addr, page_size));
1496 BUG_ON(!IS_ALIGNED(phys_addr, page_size));
1497
Joerg Roedelbad1cac2009-09-02 16:52:23 +02001498 if (!(prot & IOMMU_PROT_MASK))
Joerg Roedelbd0e5212008-06-26 21:27:56 +02001499 return -EINVAL;
1500
Joerg Roedeld4b03662015-04-01 14:58:52 +02001501 count = PAGE_SIZE_PTE_COUNT(page_size);
Joerg Roedelb911b892016-07-05 14:29:11 +02001502 pte = alloc_pte(dom, bus_addr, page_size, NULL, gfp);
Joerg Roedelbd0e5212008-06-26 21:27:56 +02001503
Maurizio Lombardi63eaa752014-09-11 12:28:03 +02001504 if (!pte)
1505 return -ENOMEM;
1506
Joerg Roedelcbb9d722010-01-15 14:41:15 +01001507 for (i = 0; i < count; ++i)
1508 if (IOMMU_PTE_PRESENT(pte[i]))
1509 return -EBUSY;
Joerg Roedelbd0e5212008-06-26 21:27:56 +02001510
Joerg Roedeld4b03662015-04-01 14:58:52 +02001511 if (count > 1) {
Joerg Roedelcbb9d722010-01-15 14:41:15 +01001512 __pte = PAGE_SIZE_PTE(phys_addr, page_size);
1513 __pte |= PM_LEVEL_ENC(7) | IOMMU_PTE_P | IOMMU_PTE_FC;
1514 } else
1515 __pte = phys_addr | IOMMU_PTE_P | IOMMU_PTE_FC;
1516
Joerg Roedelbd0e5212008-06-26 21:27:56 +02001517 if (prot & IOMMU_PROT_IR)
1518 __pte |= IOMMU_PTE_IR;
1519 if (prot & IOMMU_PROT_IW)
1520 __pte |= IOMMU_PTE_IW;
1521
Joerg Roedelcbb9d722010-01-15 14:41:15 +01001522 for (i = 0; i < count; ++i)
1523 pte[i] = __pte;
Joerg Roedelbd0e5212008-06-26 21:27:56 +02001524
Joerg Roedel04bfdd82009-09-02 16:00:23 +02001525 update_domain(dom);
1526
Joerg Roedelbd0e5212008-06-26 21:27:56 +02001527 return 0;
1528}
1529
Joerg Roedel24cd7722010-01-19 17:27:39 +01001530static unsigned long iommu_unmap_page(struct protection_domain *dom,
1531 unsigned long bus_addr,
1532 unsigned long page_size)
Joerg Roedeleb74ff62008-12-02 19:59:10 +01001533{
Joerg Roedel71b390e2015-04-01 14:58:49 +02001534 unsigned long long unmapped;
1535 unsigned long unmap_size;
Joerg Roedel24cd7722010-01-19 17:27:39 +01001536 u64 *pte;
Joerg Roedeleb74ff62008-12-02 19:59:10 +01001537
Joerg Roedel24cd7722010-01-19 17:27:39 +01001538 BUG_ON(!is_power_of_2(page_size));
1539
1540 unmapped = 0;
1541
1542 while (unmapped < page_size) {
1543
Joerg Roedel71b390e2015-04-01 14:58:49 +02001544 pte = fetch_pte(dom, bus_addr, &unmap_size);
Joerg Roedel24cd7722010-01-19 17:27:39 +01001545
Joerg Roedel71b390e2015-04-01 14:58:49 +02001546 if (pte) {
1547 int i, count;
Joerg Roedel24cd7722010-01-19 17:27:39 +01001548
Joerg Roedel71b390e2015-04-01 14:58:49 +02001549 count = PAGE_SIZE_PTE_COUNT(unmap_size);
Joerg Roedel24cd7722010-01-19 17:27:39 +01001550 for (i = 0; i < count; i++)
1551 pte[i] = 0ULL;
1552 }
1553
1554 bus_addr = (bus_addr & ~(unmap_size - 1)) + unmap_size;
1555 unmapped += unmap_size;
1556 }
1557
Alex Williamson60d0ca32013-06-21 14:33:19 -06001558 BUG_ON(unmapped && !is_power_of_2(unmapped));
Joerg Roedel24cd7722010-01-19 17:27:39 +01001559
1560 return unmapped;
Joerg Roedeleb74ff62008-12-02 19:59:10 +01001561}
Joerg Roedeleb74ff62008-12-02 19:59:10 +01001562
Joerg Roedel431b2a22008-07-11 17:14:22 +02001563/****************************************************************************
1564 *
1565 * The next functions belong to the address allocator for the dma_ops
Joerg Roedel2d4c5152016-07-05 16:21:32 +02001566 * interface functions.
Joerg Roedel431b2a22008-07-11 17:14:22 +02001567 *
1568 ****************************************************************************/
Joerg Roedeld3086442008-06-26 21:27:57 +02001569
Joerg Roedel9cabe892009-05-18 16:38:55 +02001570
Joerg Roedel256e4622016-07-05 14:23:01 +02001571static unsigned long dma_ops_alloc_iova(struct device *dev,
1572 struct dma_ops_domain *dma_dom,
1573 unsigned int pages, u64 dma_mask)
Joerg Roedela0f51442015-12-21 16:20:09 +01001574{
Joerg Roedel256e4622016-07-05 14:23:01 +02001575 unsigned long pfn = 0;
Joerg Roedela0f51442015-12-21 16:20:09 +01001576
Joerg Roedel256e4622016-07-05 14:23:01 +02001577 pages = __roundup_pow_of_two(pages);
Joerg Roedela0f51442015-12-21 16:20:09 +01001578
Joerg Roedel256e4622016-07-05 14:23:01 +02001579 if (dma_mask > DMA_BIT_MASK(32))
1580 pfn = alloc_iova_fast(&dma_dom->iovad, pages,
1581 IOVA_PFN(DMA_BIT_MASK(32)));
Joerg Roedel7b5e25b2015-12-22 13:38:12 +01001582
Joerg Roedel256e4622016-07-05 14:23:01 +02001583 if (!pfn)
1584 pfn = alloc_iova_fast(&dma_dom->iovad, pages, IOVA_PFN(dma_mask));
Joerg Roedel60e6a7c2015-12-21 16:53:17 +01001585
Joerg Roedel256e4622016-07-05 14:23:01 +02001586 return (pfn << PAGE_SHIFT);
Joerg Roedela0f51442015-12-21 16:20:09 +01001587}
1588
Joerg Roedel256e4622016-07-05 14:23:01 +02001589static void dma_ops_free_iova(struct dma_ops_domain *dma_dom,
1590 unsigned long address,
1591 unsigned int pages)
Joerg Roedel384de722009-05-15 12:30:05 +02001592{
Joerg Roedel256e4622016-07-05 14:23:01 +02001593 pages = __roundup_pow_of_two(pages);
1594 address >>= PAGE_SHIFT;
Joerg Roedel5f6bed52015-12-22 13:34:22 +01001595
Joerg Roedel256e4622016-07-05 14:23:01 +02001596 free_iova_fast(&dma_dom->iovad, address, pages);
Joerg Roedeld3086442008-06-26 21:27:57 +02001597}
1598
Joerg Roedel431b2a22008-07-11 17:14:22 +02001599/****************************************************************************
1600 *
1601 * The next functions belong to the domain allocation. A domain is
1602 * allocated for every IOMMU as the default domain. If device isolation
1603 * is enabled, every device get its own domain. The most important thing
1604 * about domains is the page table mapping the DMA address space they
1605 * contain.
1606 *
1607 ****************************************************************************/
1608
Joerg Roedelaeb26f52009-11-20 16:44:01 +01001609/*
1610 * This function adds a protection domain to the global protection domain list
1611 */
1612static void add_domain_to_list(struct protection_domain *domain)
1613{
1614 unsigned long flags;
1615
1616 spin_lock_irqsave(&amd_iommu_pd_lock, flags);
1617 list_add(&domain->list, &amd_iommu_pd_list);
1618 spin_unlock_irqrestore(&amd_iommu_pd_lock, flags);
1619}
1620
1621/*
1622 * This function removes a protection domain to the global
1623 * protection domain list
1624 */
1625static void del_domain_from_list(struct protection_domain *domain)
1626{
1627 unsigned long flags;
1628
1629 spin_lock_irqsave(&amd_iommu_pd_lock, flags);
1630 list_del(&domain->list);
1631 spin_unlock_irqrestore(&amd_iommu_pd_lock, flags);
1632}
1633
Joerg Roedelec487d12008-06-26 21:27:58 +02001634static u16 domain_id_alloc(void)
1635{
1636 unsigned long flags;
1637 int id;
1638
1639 write_lock_irqsave(&amd_iommu_devtable_lock, flags);
1640 id = find_first_zero_bit(amd_iommu_pd_alloc_bitmap, MAX_DOMAIN_ID);
1641 BUG_ON(id == 0);
1642 if (id > 0 && id < MAX_DOMAIN_ID)
1643 __set_bit(id, amd_iommu_pd_alloc_bitmap);
1644 else
1645 id = 0;
1646 write_unlock_irqrestore(&amd_iommu_devtable_lock, flags);
1647
1648 return id;
1649}
1650
Joerg Roedela2acfb72008-12-02 18:28:53 +01001651static void domain_id_free(int id)
1652{
1653 unsigned long flags;
1654
1655 write_lock_irqsave(&amd_iommu_devtable_lock, flags);
1656 if (id > 0 && id < MAX_DOMAIN_ID)
1657 __clear_bit(id, amd_iommu_pd_alloc_bitmap);
1658 write_unlock_irqrestore(&amd_iommu_devtable_lock, flags);
1659}
Joerg Roedela2acfb72008-12-02 18:28:53 +01001660
Joerg Roedel5c34c402013-06-20 20:22:58 +02001661#define DEFINE_FREE_PT_FN(LVL, FN) \
1662static void free_pt_##LVL (unsigned long __pt) \
1663{ \
1664 unsigned long p; \
1665 u64 *pt; \
1666 int i; \
1667 \
1668 pt = (u64 *)__pt; \
1669 \
1670 for (i = 0; i < 512; ++i) { \
Joerg Roedel0b3fff52015-06-18 10:48:34 +02001671 /* PTE present? */ \
Joerg Roedel5c34c402013-06-20 20:22:58 +02001672 if (!IOMMU_PTE_PRESENT(pt[i])) \
1673 continue; \
1674 \
Joerg Roedel0b3fff52015-06-18 10:48:34 +02001675 /* Large PTE? */ \
1676 if (PM_PTE_LEVEL(pt[i]) == 0 || \
1677 PM_PTE_LEVEL(pt[i]) == 7) \
1678 continue; \
1679 \
Joerg Roedel5c34c402013-06-20 20:22:58 +02001680 p = (unsigned long)IOMMU_PTE_PAGE(pt[i]); \
1681 FN(p); \
1682 } \
1683 free_page((unsigned long)pt); \
1684}
1685
1686DEFINE_FREE_PT_FN(l2, free_page)
1687DEFINE_FREE_PT_FN(l3, free_pt_l2)
1688DEFINE_FREE_PT_FN(l4, free_pt_l3)
1689DEFINE_FREE_PT_FN(l5, free_pt_l4)
1690DEFINE_FREE_PT_FN(l6, free_pt_l5)
1691
Joerg Roedel86db2e52008-12-02 18:20:21 +01001692static void free_pagetable(struct protection_domain *domain)
Joerg Roedelec487d12008-06-26 21:27:58 +02001693{
Joerg Roedel5c34c402013-06-20 20:22:58 +02001694 unsigned long root = (unsigned long)domain->pt_root;
Joerg Roedelec487d12008-06-26 21:27:58 +02001695
Joerg Roedel5c34c402013-06-20 20:22:58 +02001696 switch (domain->mode) {
1697 case PAGE_MODE_NONE:
1698 break;
1699 case PAGE_MODE_1_LEVEL:
1700 free_page(root);
1701 break;
1702 case PAGE_MODE_2_LEVEL:
1703 free_pt_l2(root);
1704 break;
1705 case PAGE_MODE_3_LEVEL:
1706 free_pt_l3(root);
1707 break;
1708 case PAGE_MODE_4_LEVEL:
1709 free_pt_l4(root);
1710 break;
1711 case PAGE_MODE_5_LEVEL:
1712 free_pt_l5(root);
1713 break;
1714 case PAGE_MODE_6_LEVEL:
1715 free_pt_l6(root);
1716 break;
1717 default:
1718 BUG();
Joerg Roedelec487d12008-06-26 21:27:58 +02001719 }
Joerg Roedelec487d12008-06-26 21:27:58 +02001720}
1721
Joerg Roedelb16137b2011-11-21 16:50:23 +01001722static void free_gcr3_tbl_level1(u64 *tbl)
1723{
1724 u64 *ptr;
1725 int i;
1726
1727 for (i = 0; i < 512; ++i) {
1728 if (!(tbl[i] & GCR3_VALID))
1729 continue;
1730
1731 ptr = __va(tbl[i] & PAGE_MASK);
1732
1733 free_page((unsigned long)ptr);
1734 }
1735}
1736
1737static void free_gcr3_tbl_level2(u64 *tbl)
1738{
1739 u64 *ptr;
1740 int i;
1741
1742 for (i = 0; i < 512; ++i) {
1743 if (!(tbl[i] & GCR3_VALID))
1744 continue;
1745
1746 ptr = __va(tbl[i] & PAGE_MASK);
1747
1748 free_gcr3_tbl_level1(ptr);
1749 }
1750}
1751
Joerg Roedel52815b72011-11-17 17:24:28 +01001752static void free_gcr3_table(struct protection_domain *domain)
1753{
Joerg Roedelb16137b2011-11-21 16:50:23 +01001754 if (domain->glx == 2)
1755 free_gcr3_tbl_level2(domain->gcr3_tbl);
1756 else if (domain->glx == 1)
1757 free_gcr3_tbl_level1(domain->gcr3_tbl);
Joerg Roedel23d3a982015-08-13 11:15:13 +02001758 else
1759 BUG_ON(domain->glx != 0);
Joerg Roedelb16137b2011-11-21 16:50:23 +01001760
Joerg Roedel52815b72011-11-17 17:24:28 +01001761 free_page((unsigned long)domain->gcr3_tbl);
1762}
1763
Joerg Roedel431b2a22008-07-11 17:14:22 +02001764/*
1765 * Free a domain, only used if something went wrong in the
1766 * allocation path and we need to free an already allocated page table
1767 */
Joerg Roedelec487d12008-06-26 21:27:58 +02001768static void dma_ops_domain_free(struct dma_ops_domain *dom)
1769{
1770 if (!dom)
1771 return;
1772
Joerg Roedelaeb26f52009-11-20 16:44:01 +01001773 del_domain_from_list(&dom->domain);
1774
Joerg Roedel2d4c5152016-07-05 16:21:32 +02001775 put_iova_domain(&dom->iovad);
1776
Joerg Roedel86db2e52008-12-02 18:20:21 +01001777 free_pagetable(&dom->domain);
Joerg Roedelec487d12008-06-26 21:27:58 +02001778
Baoquan Hec3db9012016-09-15 16:50:52 +08001779 if (dom->domain.id)
1780 domain_id_free(dom->domain.id);
1781
Joerg Roedelec487d12008-06-26 21:27:58 +02001782 kfree(dom);
1783}
1784
Joerg Roedel431b2a22008-07-11 17:14:22 +02001785/*
1786 * Allocates a new protection domain usable for the dma_ops functions.
Uwe Kleine-Königb5950762010-11-01 15:38:34 -04001787 * It also initializes the page table and the address allocator data
Joerg Roedel431b2a22008-07-11 17:14:22 +02001788 * structures required for the dma_ops interface
1789 */
Joerg Roedel87a64d52009-11-24 17:26:43 +01001790static struct dma_ops_domain *dma_ops_domain_alloc(void)
Joerg Roedelec487d12008-06-26 21:27:58 +02001791{
1792 struct dma_ops_domain *dma_dom;
Joerg Roedelec487d12008-06-26 21:27:58 +02001793
1794 dma_dom = kzalloc(sizeof(struct dma_ops_domain), GFP_KERNEL);
1795 if (!dma_dom)
1796 return NULL;
1797
Joerg Roedel7a5a5662015-06-30 08:56:11 +02001798 if (protection_domain_init(&dma_dom->domain))
Joerg Roedelec487d12008-06-26 21:27:58 +02001799 goto free_dma_dom;
Joerg Roedel7a5a5662015-06-30 08:56:11 +02001800
Joerg Roedelffec2192016-07-26 15:31:23 +02001801 dma_dom->domain.mode = PAGE_MODE_3_LEVEL;
Joerg Roedelec487d12008-06-26 21:27:58 +02001802 dma_dom->domain.pt_root = (void *)get_zeroed_page(GFP_KERNEL);
Joerg Roedel9fdb19d2008-12-02 17:46:25 +01001803 dma_dom->domain.flags = PD_DMA_OPS_MASK;
Joerg Roedelec487d12008-06-26 21:27:58 +02001804 if (!dma_dom->domain.pt_root)
1805 goto free_dma_dom;
Joerg Roedelec487d12008-06-26 21:27:58 +02001806
Joerg Roedel307d5852016-07-05 11:54:04 +02001807 init_iova_domain(&dma_dom->iovad, PAGE_SIZE,
1808 IOVA_START_PFN, DMA_32BIT_PFN);
1809
Joerg Roedel81cd07b2016-07-07 18:01:10 +02001810 /* Initialize reserved ranges */
1811 copy_reserved_iova(&reserved_iova_ranges, &dma_dom->iovad);
1812
Joerg Roedel2d4c5152016-07-05 16:21:32 +02001813 add_domain_to_list(&dma_dom->domain);
1814
Joerg Roedelec487d12008-06-26 21:27:58 +02001815 return dma_dom;
1816
1817free_dma_dom:
1818 dma_ops_domain_free(dma_dom);
1819
1820 return NULL;
1821}
1822
Joerg Roedel431b2a22008-07-11 17:14:22 +02001823/*
Joerg Roedel5b28df62008-12-02 17:49:42 +01001824 * little helper function to check whether a given protection domain is a
1825 * dma_ops domain
1826 */
1827static bool dma_ops_domain(struct protection_domain *domain)
1828{
1829 return domain->flags & PD_DMA_OPS_MASK;
1830}
1831
Joerg Roedelfd7b5532011-04-05 15:31:08 +02001832static void set_dte_entry(u16 devid, struct protection_domain *domain, bool ats)
Joerg Roedelb20ac0d2008-06-26 21:27:59 +02001833{
Joerg Roedel132bd682011-11-17 14:18:46 +01001834 u64 pte_root = 0;
Joerg Roedelee6c2862011-11-09 12:06:03 +01001835 u64 flags = 0;
Joerg Roedel863c74e2008-12-02 17:56:36 +01001836
Joerg Roedel132bd682011-11-17 14:18:46 +01001837 if (domain->mode != PAGE_MODE_NONE)
1838 pte_root = virt_to_phys(domain->pt_root);
1839
Joerg Roedel38ddf412008-09-11 10:38:32 +02001840 pte_root |= (domain->mode & DEV_ENTRY_MODE_MASK)
1841 << DEV_ENTRY_MODE_SHIFT;
1842 pte_root |= IOMMU_PTE_IR | IOMMU_PTE_IW | IOMMU_PTE_P | IOMMU_PTE_TV;
Joerg Roedelb20ac0d2008-06-26 21:27:59 +02001843
Joerg Roedelee6c2862011-11-09 12:06:03 +01001844 flags = amd_iommu_dev_table[devid].data[1];
1845
Joerg Roedelfd7b5532011-04-05 15:31:08 +02001846 if (ats)
1847 flags |= DTE_FLAG_IOTLB;
1848
Joerg Roedel52815b72011-11-17 17:24:28 +01001849 if (domain->flags & PD_IOMMUV2_MASK) {
1850 u64 gcr3 = __pa(domain->gcr3_tbl);
1851 u64 glx = domain->glx;
1852 u64 tmp;
1853
1854 pte_root |= DTE_FLAG_GV;
1855 pte_root |= (glx & DTE_GLX_MASK) << DTE_GLX_SHIFT;
1856
1857 /* First mask out possible old values for GCR3 table */
1858 tmp = DTE_GCR3_VAL_B(~0ULL) << DTE_GCR3_SHIFT_B;
1859 flags &= ~tmp;
1860
1861 tmp = DTE_GCR3_VAL_C(~0ULL) << DTE_GCR3_SHIFT_C;
1862 flags &= ~tmp;
1863
1864 /* Encode GCR3 table into DTE */
1865 tmp = DTE_GCR3_VAL_A(gcr3) << DTE_GCR3_SHIFT_A;
1866 pte_root |= tmp;
1867
1868 tmp = DTE_GCR3_VAL_B(gcr3) << DTE_GCR3_SHIFT_B;
1869 flags |= tmp;
1870
1871 tmp = DTE_GCR3_VAL_C(gcr3) << DTE_GCR3_SHIFT_C;
1872 flags |= tmp;
1873 }
1874
Joerg Roedelee6c2862011-11-09 12:06:03 +01001875 flags &= ~(0xffffUL);
1876 flags |= domain->id;
1877
1878 amd_iommu_dev_table[devid].data[1] = flags;
1879 amd_iommu_dev_table[devid].data[0] = pte_root;
Joerg Roedelb20ac0d2008-06-26 21:27:59 +02001880}
1881
Joerg Roedel15898bb2009-11-24 15:39:42 +01001882static void clear_dte_entry(u16 devid)
Joerg Roedel355bf552008-12-08 12:02:41 +01001883{
Joerg Roedel355bf552008-12-08 12:02:41 +01001884 /* remove entry from the device table seen by the hardware */
Joerg Roedelcbf3ccd2015-10-20 14:59:36 +02001885 amd_iommu_dev_table[devid].data[0] = IOMMU_PTE_P | IOMMU_PTE_TV;
1886 amd_iommu_dev_table[devid].data[1] &= DTE_FLAG_MASK;
Joerg Roedel355bf552008-12-08 12:02:41 +01001887
Joerg Roedelc5cca142009-10-09 18:31:20 +02001888 amd_iommu_apply_erratum_63(devid);
Joerg Roedel7f760dd2009-11-26 14:49:59 +01001889}
1890
Joerg Roedelec9e79e2011-06-09 17:25:50 +02001891static void do_attach(struct iommu_dev_data *dev_data,
1892 struct protection_domain *domain)
Joerg Roedel7f760dd2009-11-26 14:49:59 +01001893{
Joerg Roedel7f760dd2009-11-26 14:49:59 +01001894 struct amd_iommu *iommu;
Joerg Roedele25bfb52015-10-20 17:33:38 +02001895 u16 alias;
Joerg Roedelec9e79e2011-06-09 17:25:50 +02001896 bool ats;
Joerg Roedel7f760dd2009-11-26 14:49:59 +01001897
Joerg Roedelec9e79e2011-06-09 17:25:50 +02001898 iommu = amd_iommu_rlookup_table[dev_data->devid];
Joerg Roedele3156042016-04-08 15:12:24 +02001899 alias = dev_data->alias;
Joerg Roedelec9e79e2011-06-09 17:25:50 +02001900 ats = dev_data->ats.enabled;
Joerg Roedel7f760dd2009-11-26 14:49:59 +01001901
1902 /* Update data structures */
1903 dev_data->domain = domain;
1904 list_add(&dev_data->list, &domain->dev_list);
Joerg Roedel7f760dd2009-11-26 14:49:59 +01001905
1906 /* Do reference counting */
1907 domain->dev_iommu[iommu->index] += 1;
1908 domain->dev_cnt += 1;
1909
Joerg Roedele25bfb52015-10-20 17:33:38 +02001910 /* Update device table */
1911 set_dte_entry(dev_data->devid, domain, ats);
1912 if (alias != dev_data->devid)
Baoquan He9b1a12d2016-01-20 22:01:19 +08001913 set_dte_entry(alias, domain, ats);
Joerg Roedele25bfb52015-10-20 17:33:38 +02001914
Joerg Roedel6c542042011-06-09 17:07:31 +02001915 device_flush_dte(dev_data);
Joerg Roedel7f760dd2009-11-26 14:49:59 +01001916}
1917
Joerg Roedelec9e79e2011-06-09 17:25:50 +02001918static void do_detach(struct iommu_dev_data *dev_data)
Joerg Roedel7f760dd2009-11-26 14:49:59 +01001919{
Joerg Roedel7f760dd2009-11-26 14:49:59 +01001920 struct amd_iommu *iommu;
Joerg Roedele25bfb52015-10-20 17:33:38 +02001921 u16 alias;
Joerg Roedel7f760dd2009-11-26 14:49:59 +01001922
Joerg Roedel5adad992015-10-09 16:23:33 +02001923 /*
1924 * First check if the device is still attached. It might already
1925 * be detached from its domain because the generic
1926 * iommu_detach_group code detached it and we try again here in
1927 * our alias handling.
1928 */
1929 if (!dev_data->domain)
1930 return;
1931
Joerg Roedelec9e79e2011-06-09 17:25:50 +02001932 iommu = amd_iommu_rlookup_table[dev_data->devid];
Joerg Roedele3156042016-04-08 15:12:24 +02001933 alias = dev_data->alias;
Joerg Roedelc5cca142009-10-09 18:31:20 +02001934
Joerg Roedelc4596112009-11-20 14:57:32 +01001935 /* decrease reference counters */
Joerg Roedel7f760dd2009-11-26 14:49:59 +01001936 dev_data->domain->dev_iommu[iommu->index] -= 1;
1937 dev_data->domain->dev_cnt -= 1;
Joerg Roedel355bf552008-12-08 12:02:41 +01001938
Joerg Roedel7f760dd2009-11-26 14:49:59 +01001939 /* Update data structures */
1940 dev_data->domain = NULL;
1941 list_del(&dev_data->list);
Joerg Roedelf62dda62011-06-09 12:55:35 +02001942 clear_dte_entry(dev_data->devid);
Joerg Roedele25bfb52015-10-20 17:33:38 +02001943 if (alias != dev_data->devid)
1944 clear_dte_entry(alias);
Joerg Roedel7f760dd2009-11-26 14:49:59 +01001945
1946 /* Flush the DTE entry */
Joerg Roedel6c542042011-06-09 17:07:31 +02001947 device_flush_dte(dev_data);
Joerg Roedel15898bb2009-11-24 15:39:42 +01001948}
1949
1950/*
1951 * If a device is not yet associated with a domain, this function does
1952 * assigns it visible for the hardware
1953 */
Joerg Roedelec9e79e2011-06-09 17:25:50 +02001954static int __attach_device(struct iommu_dev_data *dev_data,
Joerg Roedel15898bb2009-11-24 15:39:42 +01001955 struct protection_domain *domain)
1956{
Julia Lawall84fe6c12010-05-27 12:31:51 +02001957 int ret;
Joerg Roedel657cbb62009-11-23 15:26:46 +01001958
Joerg Roedel272e4f92015-10-20 17:33:37 +02001959 /*
1960 * Must be called with IRQs disabled. Warn here to detect early
1961 * when its not.
1962 */
1963 WARN_ON(!irqs_disabled());
1964
Joerg Roedel15898bb2009-11-24 15:39:42 +01001965 /* lock domain */
1966 spin_lock(&domain->lock);
1967
Joerg Roedel397111a2014-08-05 17:31:51 +02001968 ret = -EBUSY;
Joerg Roedel150952f2015-10-20 17:33:35 +02001969 if (dev_data->domain != NULL)
Joerg Roedel397111a2014-08-05 17:31:51 +02001970 goto out_unlock;
Joerg Roedel24100052009-11-25 15:59:57 +01001971
Joerg Roedel397111a2014-08-05 17:31:51 +02001972 /* Attach alias group root */
Joerg Roedel150952f2015-10-20 17:33:35 +02001973 do_attach(dev_data, domain);
Joerg Roedel24100052009-11-25 15:59:57 +01001974
Julia Lawall84fe6c12010-05-27 12:31:51 +02001975 ret = 0;
1976
1977out_unlock:
1978
Joerg Roedel355bf552008-12-08 12:02:41 +01001979 /* ready */
1980 spin_unlock(&domain->lock);
Joerg Roedel21129f72009-09-01 11:59:42 +02001981
Julia Lawall84fe6c12010-05-27 12:31:51 +02001982 return ret;
Joerg Roedel15898bb2009-11-24 15:39:42 +01001983}
1984
Joerg Roedel52815b72011-11-17 17:24:28 +01001985
1986static void pdev_iommuv2_disable(struct pci_dev *pdev)
1987{
1988 pci_disable_ats(pdev);
1989 pci_disable_pri(pdev);
1990 pci_disable_pasid(pdev);
1991}
1992
Joerg Roedel6a113dd2011-12-01 12:04:58 +01001993/* FIXME: Change generic reset-function to do the same */
1994static int pri_reset_while_enabled(struct pci_dev *pdev)
1995{
1996 u16 control;
1997 int pos;
1998
Joerg Roedel46277b72011-12-07 14:34:02 +01001999 pos = pci_find_ext_capability(pdev, PCI_EXT_CAP_ID_PRI);
Joerg Roedel6a113dd2011-12-01 12:04:58 +01002000 if (!pos)
2001 return -EINVAL;
2002
Joerg Roedel46277b72011-12-07 14:34:02 +01002003 pci_read_config_word(pdev, pos + PCI_PRI_CTRL, &control);
2004 control |= PCI_PRI_CTRL_RESET;
2005 pci_write_config_word(pdev, pos + PCI_PRI_CTRL, control);
Joerg Roedel6a113dd2011-12-01 12:04:58 +01002006
2007 return 0;
2008}
2009
Joerg Roedel52815b72011-11-17 17:24:28 +01002010static int pdev_iommuv2_enable(struct pci_dev *pdev)
2011{
Joerg Roedel6a113dd2011-12-01 12:04:58 +01002012 bool reset_enable;
2013 int reqs, ret;
2014
2015 /* FIXME: Hardcode number of outstanding requests for now */
2016 reqs = 32;
2017 if (pdev_pri_erratum(pdev, AMD_PRI_DEV_ERRATUM_LIMIT_REQ_ONE))
2018 reqs = 1;
2019 reset_enable = pdev_pri_erratum(pdev, AMD_PRI_DEV_ERRATUM_ENABLE_RESET);
Joerg Roedel52815b72011-11-17 17:24:28 +01002020
2021 /* Only allow access to user-accessible pages */
2022 ret = pci_enable_pasid(pdev, 0);
2023 if (ret)
2024 goto out_err;
2025
2026 /* First reset the PRI state of the device */
2027 ret = pci_reset_pri(pdev);
2028 if (ret)
2029 goto out_err;
2030
Joerg Roedel6a113dd2011-12-01 12:04:58 +01002031 /* Enable PRI */
2032 ret = pci_enable_pri(pdev, reqs);
Joerg Roedel52815b72011-11-17 17:24:28 +01002033 if (ret)
2034 goto out_err;
2035
Joerg Roedel6a113dd2011-12-01 12:04:58 +01002036 if (reset_enable) {
2037 ret = pri_reset_while_enabled(pdev);
2038 if (ret)
2039 goto out_err;
2040 }
2041
Joerg Roedel52815b72011-11-17 17:24:28 +01002042 ret = pci_enable_ats(pdev, PAGE_SHIFT);
2043 if (ret)
2044 goto out_err;
2045
2046 return 0;
2047
2048out_err:
2049 pci_disable_pri(pdev);
2050 pci_disable_pasid(pdev);
2051
2052 return ret;
2053}
2054
Joerg Roedelc99afa22011-11-21 18:19:25 +01002055/* FIXME: Move this to PCI code */
Joerg Roedela3b93122012-04-12 12:49:26 +02002056#define PCI_PRI_TLP_OFF (1 << 15)
Joerg Roedelc99afa22011-11-21 18:19:25 +01002057
Joerg Roedel98f1ad22012-07-06 13:28:37 +02002058static bool pci_pri_tlp_required(struct pci_dev *pdev)
Joerg Roedelc99afa22011-11-21 18:19:25 +01002059{
Joerg Roedela3b93122012-04-12 12:49:26 +02002060 u16 status;
Joerg Roedelc99afa22011-11-21 18:19:25 +01002061 int pos;
2062
Joerg Roedel46277b72011-12-07 14:34:02 +01002063 pos = pci_find_ext_capability(pdev, PCI_EXT_CAP_ID_PRI);
Joerg Roedelc99afa22011-11-21 18:19:25 +01002064 if (!pos)
2065 return false;
2066
Joerg Roedela3b93122012-04-12 12:49:26 +02002067 pci_read_config_word(pdev, pos + PCI_PRI_STATUS, &status);
Joerg Roedelc99afa22011-11-21 18:19:25 +01002068
Joerg Roedela3b93122012-04-12 12:49:26 +02002069 return (status & PCI_PRI_TLP_OFF) ? true : false;
Joerg Roedelc99afa22011-11-21 18:19:25 +01002070}
2071
Joerg Roedel15898bb2009-11-24 15:39:42 +01002072/*
Frank Arnolddf805ab2012-08-27 19:21:04 +02002073 * If a device is not yet associated with a domain, this function
Joerg Roedel15898bb2009-11-24 15:39:42 +01002074 * assigns it visible for the hardware
2075 */
2076static int attach_device(struct device *dev,
2077 struct protection_domain *domain)
2078{
Wan Zongshun2bf9a0a2016-04-01 09:06:03 -04002079 struct pci_dev *pdev;
Joerg Roedelea61cdd2011-06-09 12:56:30 +02002080 struct iommu_dev_data *dev_data;
Joerg Roedel15898bb2009-11-24 15:39:42 +01002081 unsigned long flags;
2082 int ret;
2083
Joerg Roedelea61cdd2011-06-09 12:56:30 +02002084 dev_data = get_dev_data(dev);
2085
Wan Zongshun2bf9a0a2016-04-01 09:06:03 -04002086 if (!dev_is_pci(dev))
2087 goto skip_ats_check;
2088
2089 pdev = to_pci_dev(dev);
Joerg Roedel52815b72011-11-17 17:24:28 +01002090 if (domain->flags & PD_IOMMUV2_MASK) {
Joerg Roedel02ca2022015-07-28 16:58:49 +02002091 if (!dev_data->passthrough)
Joerg Roedel52815b72011-11-17 17:24:28 +01002092 return -EINVAL;
2093
Joerg Roedel02ca2022015-07-28 16:58:49 +02002094 if (dev_data->iommu_v2) {
2095 if (pdev_iommuv2_enable(pdev) != 0)
2096 return -EINVAL;
Joerg Roedel52815b72011-11-17 17:24:28 +01002097
Joerg Roedel02ca2022015-07-28 16:58:49 +02002098 dev_data->ats.enabled = true;
2099 dev_data->ats.qdep = pci_ats_queue_depth(pdev);
2100 dev_data->pri_tlp = pci_pri_tlp_required(pdev);
2101 }
Joerg Roedel52815b72011-11-17 17:24:28 +01002102 } else if (amd_iommu_iotlb_sup &&
2103 pci_enable_ats(pdev, PAGE_SHIFT) == 0) {
Joerg Roedelea61cdd2011-06-09 12:56:30 +02002104 dev_data->ats.enabled = true;
2105 dev_data->ats.qdep = pci_ats_queue_depth(pdev);
2106 }
Joerg Roedelfd7b5532011-04-05 15:31:08 +02002107
Wan Zongshun2bf9a0a2016-04-01 09:06:03 -04002108skip_ats_check:
Joerg Roedel15898bb2009-11-24 15:39:42 +01002109 write_lock_irqsave(&amd_iommu_devtable_lock, flags);
Joerg Roedelec9e79e2011-06-09 17:25:50 +02002110 ret = __attach_device(dev_data, domain);
Joerg Roedel15898bb2009-11-24 15:39:42 +01002111 write_unlock_irqrestore(&amd_iommu_devtable_lock, flags);
2112
2113 /*
2114 * We might boot into a crash-kernel here. The crashed kernel
2115 * left the caches in the IOMMU dirty. So we have to flush
2116 * here to evict all dirty stuff.
2117 */
Joerg Roedel17b124b2011-04-06 18:01:35 +02002118 domain_flush_tlb_pde(domain);
Joerg Roedel15898bb2009-11-24 15:39:42 +01002119
2120 return ret;
2121}
2122
2123/*
2124 * Removes a device from a protection domain (unlocked)
2125 */
Joerg Roedelec9e79e2011-06-09 17:25:50 +02002126static void __detach_device(struct iommu_dev_data *dev_data)
Joerg Roedel15898bb2009-11-24 15:39:42 +01002127{
Joerg Roedel2ca76272010-01-22 16:45:31 +01002128 struct protection_domain *domain;
Joerg Roedel15898bb2009-11-24 15:39:42 +01002129
Joerg Roedel272e4f92015-10-20 17:33:37 +02002130 /*
2131 * Must be called with IRQs disabled. Warn here to detect early
2132 * when its not.
2133 */
2134 WARN_ON(!irqs_disabled());
2135
Joerg Roedelf34c73f2015-10-20 17:33:34 +02002136 if (WARN_ON(!dev_data->domain))
2137 return;
Joerg Roedel15898bb2009-11-24 15:39:42 +01002138
Joerg Roedel2ca76272010-01-22 16:45:31 +01002139 domain = dev_data->domain;
2140
Joerg Roedelf1dd0a82015-10-20 17:33:36 +02002141 spin_lock(&domain->lock);
Joerg Roedel24100052009-11-25 15:59:57 +01002142
Joerg Roedel150952f2015-10-20 17:33:35 +02002143 do_detach(dev_data);
Joerg Roedel71f77582011-06-09 19:03:15 +02002144
Joerg Roedelf1dd0a82015-10-20 17:33:36 +02002145 spin_unlock(&domain->lock);
Joerg Roedel355bf552008-12-08 12:02:41 +01002146}
2147
2148/*
2149 * Removes a device from a protection domain (with devtable_lock held)
2150 */
Joerg Roedel15898bb2009-11-24 15:39:42 +01002151static void detach_device(struct device *dev)
Joerg Roedel355bf552008-12-08 12:02:41 +01002152{
Joerg Roedel52815b72011-11-17 17:24:28 +01002153 struct protection_domain *domain;
Joerg Roedelea61cdd2011-06-09 12:56:30 +02002154 struct iommu_dev_data *dev_data;
Joerg Roedel355bf552008-12-08 12:02:41 +01002155 unsigned long flags;
2156
Joerg Roedelec9e79e2011-06-09 17:25:50 +02002157 dev_data = get_dev_data(dev);
Joerg Roedel52815b72011-11-17 17:24:28 +01002158 domain = dev_data->domain;
Joerg Roedelec9e79e2011-06-09 17:25:50 +02002159
Joerg Roedel355bf552008-12-08 12:02:41 +01002160 /* lock device table */
2161 write_lock_irqsave(&amd_iommu_devtable_lock, flags);
Joerg Roedelec9e79e2011-06-09 17:25:50 +02002162 __detach_device(dev_data);
Joerg Roedel355bf552008-12-08 12:02:41 +01002163 write_unlock_irqrestore(&amd_iommu_devtable_lock, flags);
Joerg Roedelfd7b5532011-04-05 15:31:08 +02002164
Wan Zongshun2bf9a0a2016-04-01 09:06:03 -04002165 if (!dev_is_pci(dev))
2166 return;
2167
Joerg Roedel02ca2022015-07-28 16:58:49 +02002168 if (domain->flags & PD_IOMMUV2_MASK && dev_data->iommu_v2)
Joerg Roedel52815b72011-11-17 17:24:28 +01002169 pdev_iommuv2_disable(to_pci_dev(dev));
2170 else if (dev_data->ats.enabled)
Joerg Roedelea61cdd2011-06-09 12:56:30 +02002171 pci_disable_ats(to_pci_dev(dev));
Joerg Roedel52815b72011-11-17 17:24:28 +01002172
2173 dev_data->ats.enabled = false;
Joerg Roedel355bf552008-12-08 12:02:41 +01002174}
Joerg Roedele275a2a2008-12-10 18:27:25 +01002175
Joerg Roedelaafd8ba2015-05-28 18:41:39 +02002176static int amd_iommu_add_device(struct device *dev)
Joerg Roedel15898bb2009-11-24 15:39:42 +01002177{
Joerg Roedel71f77582011-06-09 19:03:15 +02002178 struct iommu_dev_data *dev_data;
Joerg Roedel07ee8692015-05-28 18:41:42 +02002179 struct iommu_domain *domain;
Joerg Roedele275a2a2008-12-10 18:27:25 +01002180 struct amd_iommu *iommu;
Wan Zongshun7aba6cb2016-04-01 09:06:02 -04002181 int ret, devid;
Joerg Roedele275a2a2008-12-10 18:27:25 +01002182
Joerg Roedelaafd8ba2015-05-28 18:41:39 +02002183 if (!check_device(dev) || get_dev_data(dev))
Joerg Roedel98fc5a62009-11-24 17:19:23 +01002184 return 0;
Joerg Roedele275a2a2008-12-10 18:27:25 +01002185
Joerg Roedelaafd8ba2015-05-28 18:41:39 +02002186 devid = get_device_id(dev);
Joerg Roedel9ee35e42016-04-21 18:21:31 +02002187 if (devid < 0)
Wan Zongshun7aba6cb2016-04-01 09:06:02 -04002188 return devid;
2189
Joerg Roedelaafd8ba2015-05-28 18:41:39 +02002190 iommu = amd_iommu_rlookup_table[devid];
Joerg Roedele275a2a2008-12-10 18:27:25 +01002191
Joerg Roedelaafd8ba2015-05-28 18:41:39 +02002192 ret = iommu_init_device(dev);
Joerg Roedel4d58b8a2015-06-11 09:21:39 +02002193 if (ret) {
2194 if (ret != -ENOTSUPP)
2195 pr_err("Failed to initialize device %s - trying to proceed anyway\n",
2196 dev_name(dev));
Joerg Roedel657cbb62009-11-23 15:26:46 +01002197
Joerg Roedelaafd8ba2015-05-28 18:41:39 +02002198 iommu_ignore_device(dev);
Bart Van Assche56579332017-01-20 13:04:02 -08002199 dev->dma_ops = &nommu_dma_ops;
Joerg Roedele275a2a2008-12-10 18:27:25 +01002200 goto out;
2201 }
Joerg Roedelaafd8ba2015-05-28 18:41:39 +02002202 init_iommu_group(dev);
Joerg Roedele275a2a2008-12-10 18:27:25 +01002203
Joerg Roedel07ee8692015-05-28 18:41:42 +02002204 dev_data = get_dev_data(dev);
Joerg Roedel4d58b8a2015-06-11 09:21:39 +02002205
2206 BUG_ON(!dev_data);
2207
Joerg Roedel1e6a7b02015-07-28 16:58:48 +02002208 if (iommu_pass_through || dev_data->iommu_v2)
Joerg Roedel07ee8692015-05-28 18:41:42 +02002209 iommu_request_dm_for_dev(dev);
2210
2211 /* Domains are initialized for this device - have a look what we ended up with */
2212 domain = iommu_get_domain_for_dev(dev);
Joerg Roedel32302322015-07-28 16:58:50 +02002213 if (domain->type == IOMMU_DOMAIN_IDENTITY)
Joerg Roedel07ee8692015-05-28 18:41:42 +02002214 dev_data->passthrough = true;
Joerg Roedel32302322015-07-28 16:58:50 +02002215 else
Bart Van Assche56579332017-01-20 13:04:02 -08002216 dev->dma_ops = &amd_iommu_dma_ops;
Joerg Roedele275a2a2008-12-10 18:27:25 +01002217
2218out:
Joerg Roedelaafd8ba2015-05-28 18:41:39 +02002219 iommu_completion_wait(iommu);
2220
Joerg Roedele275a2a2008-12-10 18:27:25 +01002221 return 0;
2222}
2223
Joerg Roedelaafd8ba2015-05-28 18:41:39 +02002224static void amd_iommu_remove_device(struct device *dev)
Joerg Roedel8638c492009-12-10 11:12:25 +01002225{
Joerg Roedelaafd8ba2015-05-28 18:41:39 +02002226 struct amd_iommu *iommu;
Wan Zongshun7aba6cb2016-04-01 09:06:02 -04002227 int devid;
Joerg Roedelaafd8ba2015-05-28 18:41:39 +02002228
2229 if (!check_device(dev))
2230 return;
2231
2232 devid = get_device_id(dev);
Joerg Roedel9ee35e42016-04-21 18:21:31 +02002233 if (devid < 0)
Wan Zongshun7aba6cb2016-04-01 09:06:02 -04002234 return;
2235
Joerg Roedelaafd8ba2015-05-28 18:41:39 +02002236 iommu = amd_iommu_rlookup_table[devid];
2237
2238 iommu_uninit_device(dev);
2239 iommu_completion_wait(iommu);
Joerg Roedel8638c492009-12-10 11:12:25 +01002240}
2241
Wan Zongshunb097d112016-04-01 09:06:04 -04002242static struct iommu_group *amd_iommu_device_group(struct device *dev)
2243{
2244 if (dev_is_pci(dev))
2245 return pci_device_group(dev);
2246
2247 return acpihid_device_group(dev);
2248}
2249
Joerg Roedel431b2a22008-07-11 17:14:22 +02002250/*****************************************************************************
2251 *
2252 * The next functions belong to the dma_ops mapping/unmapping code.
2253 *
2254 *****************************************************************************/
2255
Joerg Roedelb1516a12016-07-06 13:07:22 +02002256static void __queue_flush(struct flush_queue *queue)
2257{
2258 struct protection_domain *domain;
2259 unsigned long flags;
2260 int idx;
2261
2262 /* First flush TLB of all known domains */
2263 spin_lock_irqsave(&amd_iommu_pd_lock, flags);
2264 list_for_each_entry(domain, &amd_iommu_pd_list, list)
2265 domain_flush_tlb(domain);
2266 spin_unlock_irqrestore(&amd_iommu_pd_lock, flags);
2267
2268 /* Wait until flushes have completed */
2269 domain_flush_complete(NULL);
2270
2271 for (idx = 0; idx < queue->next; ++idx) {
2272 struct flush_queue_entry *entry;
2273
2274 entry = queue->entries + idx;
2275
2276 free_iova_fast(&entry->dma_dom->iovad,
2277 entry->iova_pfn,
2278 entry->pages);
2279
2280 /* Not really necessary, just to make sure we catch any bugs */
2281 entry->dma_dom = NULL;
2282 }
2283
2284 queue->next = 0;
2285}
2286
Joerg Roedel281e8cc2016-07-07 16:12:02 +02002287static void queue_flush_all(void)
Joerg Roedelbb279472016-07-06 13:56:36 +02002288{
2289 int cpu;
2290
Joerg Roedelbb279472016-07-06 13:56:36 +02002291 for_each_possible_cpu(cpu) {
2292 struct flush_queue *queue;
2293 unsigned long flags;
2294
2295 queue = per_cpu_ptr(&flush_queue, cpu);
2296 spin_lock_irqsave(&queue->lock, flags);
2297 if (queue->next > 0)
2298 __queue_flush(queue);
2299 spin_unlock_irqrestore(&queue->lock, flags);
2300 }
2301}
2302
Joerg Roedel281e8cc2016-07-07 16:12:02 +02002303static void queue_flush_timeout(unsigned long unsused)
2304{
2305 atomic_set(&queue_timer_on, 0);
2306 queue_flush_all();
2307}
2308
Joerg Roedelb1516a12016-07-06 13:07:22 +02002309static void queue_add(struct dma_ops_domain *dma_dom,
2310 unsigned long address, unsigned long pages)
2311{
2312 struct flush_queue_entry *entry;
2313 struct flush_queue *queue;
2314 unsigned long flags;
2315 int idx;
2316
2317 pages = __roundup_pow_of_two(pages);
2318 address >>= PAGE_SHIFT;
2319
2320 queue = get_cpu_ptr(&flush_queue);
2321 spin_lock_irqsave(&queue->lock, flags);
2322
2323 if (queue->next == FLUSH_QUEUE_SIZE)
2324 __queue_flush(queue);
2325
2326 idx = queue->next++;
2327 entry = queue->entries + idx;
2328
2329 entry->iova_pfn = address;
2330 entry->pages = pages;
2331 entry->dma_dom = dma_dom;
2332
2333 spin_unlock_irqrestore(&queue->lock, flags);
Joerg Roedelbb279472016-07-06 13:56:36 +02002334
2335 if (atomic_cmpxchg(&queue_timer_on, 0, 1) == 0)
2336 mod_timer(&queue_timer, jiffies + msecs_to_jiffies(10));
2337
Joerg Roedelb1516a12016-07-06 13:07:22 +02002338 put_cpu_ptr(&flush_queue);
2339}
2340
2341
Joerg Roedel431b2a22008-07-11 17:14:22 +02002342/*
2343 * In the dma_ops path we only have the struct device. This function
2344 * finds the corresponding IOMMU, the protection domain and the
2345 * requestor id for a given device.
2346 * If the device is not yet associated with a domain this is also done
2347 * in this function.
2348 */
Joerg Roedel94f6d192009-11-24 16:40:02 +01002349static struct protection_domain *get_domain(struct device *dev)
Joerg Roedelb20ac0d2008-06-26 21:27:59 +02002350{
Joerg Roedel94f6d192009-11-24 16:40:02 +01002351 struct protection_domain *domain;
Joerg Roedelb20ac0d2008-06-26 21:27:59 +02002352
Joerg Roedelf99c0f12009-11-23 16:52:56 +01002353 if (!check_device(dev))
Joerg Roedel94f6d192009-11-24 16:40:02 +01002354 return ERR_PTR(-EINVAL);
Joerg Roedeldbcc1122008-09-04 15:04:26 +02002355
Joerg Roedeld26592a2016-07-07 15:31:13 +02002356 domain = get_dev_data(dev)->domain;
Joerg Roedel0bb6e242015-05-28 18:41:40 +02002357 if (!dma_ops_domain(domain))
Joerg Roedel94f6d192009-11-24 16:40:02 +01002358 return ERR_PTR(-EBUSY);
Joerg Roedelf99c0f12009-11-23 16:52:56 +01002359
Joerg Roedel0bb6e242015-05-28 18:41:40 +02002360 return domain;
Joerg Roedelb20ac0d2008-06-26 21:27:59 +02002361}
2362
Joerg Roedel04bfdd82009-09-02 16:00:23 +02002363static void update_device_table(struct protection_domain *domain)
2364{
Joerg Roedel492667d2009-11-27 13:25:47 +01002365 struct iommu_dev_data *dev_data;
Joerg Roedel04bfdd82009-09-02 16:00:23 +02002366
Joerg Roedel3254de62016-07-26 15:18:54 +02002367 list_for_each_entry(dev_data, &domain->dev_list, list) {
Joerg Roedelea61cdd2011-06-09 12:56:30 +02002368 set_dte_entry(dev_data->devid, domain, dev_data->ats.enabled);
Joerg Roedel3254de62016-07-26 15:18:54 +02002369
2370 if (dev_data->devid == dev_data->alias)
2371 continue;
2372
2373 /* There is an alias, update device table entry for it */
2374 set_dte_entry(dev_data->alias, domain, dev_data->ats.enabled);
2375 }
Joerg Roedel04bfdd82009-09-02 16:00:23 +02002376}
2377
2378static void update_domain(struct protection_domain *domain)
2379{
2380 if (!domain->updated)
2381 return;
2382
2383 update_device_table(domain);
Joerg Roedel17b124b2011-04-06 18:01:35 +02002384
2385 domain_flush_devices(domain);
2386 domain_flush_tlb_pde(domain);
Joerg Roedel04bfdd82009-09-02 16:00:23 +02002387
2388 domain->updated = false;
2389}
2390
Joerg Roedelf37f7f32016-07-08 11:47:22 +02002391static int dir2prot(enum dma_data_direction direction)
2392{
2393 if (direction == DMA_TO_DEVICE)
2394 return IOMMU_PROT_IR;
2395 else if (direction == DMA_FROM_DEVICE)
2396 return IOMMU_PROT_IW;
2397 else if (direction == DMA_BIDIRECTIONAL)
2398 return IOMMU_PROT_IW | IOMMU_PROT_IR;
2399 else
2400 return 0;
2401}
Joerg Roedel431b2a22008-07-11 17:14:22 +02002402/*
Joerg Roedel431b2a22008-07-11 17:14:22 +02002403 * This function contains common code for mapping of a physically
Joerg Roedel24f81162008-12-08 14:25:39 +01002404 * contiguous memory region into DMA address space. It is used by all
2405 * mapping functions provided with this IOMMU driver.
Joerg Roedel431b2a22008-07-11 17:14:22 +02002406 * Must be called with the domain lock held.
2407 */
Joerg Roedelcb76c322008-06-26 21:28:00 +02002408static dma_addr_t __map_single(struct device *dev,
Joerg Roedelcb76c322008-06-26 21:28:00 +02002409 struct dma_ops_domain *dma_dom,
2410 phys_addr_t paddr,
2411 size_t size,
Joerg Roedelf37f7f32016-07-08 11:47:22 +02002412 enum dma_data_direction direction,
Joerg Roedel832a90c2008-09-18 15:54:23 +02002413 u64 dma_mask)
Joerg Roedelcb76c322008-06-26 21:28:00 +02002414{
2415 dma_addr_t offset = paddr & ~PAGE_MASK;
Joerg Roedel53812c12009-05-12 12:17:38 +02002416 dma_addr_t address, start, ret;
Joerg Roedelcb76c322008-06-26 21:28:00 +02002417 unsigned int pages;
Joerg Roedel518d9b42016-07-05 14:39:47 +02002418 int prot = 0;
Joerg Roedelcb76c322008-06-26 21:28:00 +02002419 int i;
2420
Joerg Roedele3c449f2008-10-15 22:02:11 -07002421 pages = iommu_num_pages(paddr, size, PAGE_SIZE);
Joerg Roedelcb76c322008-06-26 21:28:00 +02002422 paddr &= PAGE_MASK;
2423
Joerg Roedel256e4622016-07-05 14:23:01 +02002424 address = dma_ops_alloc_iova(dev, dma_dom, pages, dma_mask);
Joerg Roedel266a3bd2015-12-21 18:54:24 +01002425 if (address == DMA_ERROR_CODE)
2426 goto out;
Joerg Roedelcb76c322008-06-26 21:28:00 +02002427
Joerg Roedelf37f7f32016-07-08 11:47:22 +02002428 prot = dir2prot(direction);
Joerg Roedel518d9b42016-07-05 14:39:47 +02002429
Joerg Roedelcb76c322008-06-26 21:28:00 +02002430 start = address;
2431 for (i = 0; i < pages; ++i) {
Joerg Roedel518d9b42016-07-05 14:39:47 +02002432 ret = iommu_map_page(&dma_dom->domain, start, paddr,
2433 PAGE_SIZE, prot, GFP_ATOMIC);
2434 if (ret)
Joerg Roedel53812c12009-05-12 12:17:38 +02002435 goto out_unmap;
2436
Joerg Roedelcb76c322008-06-26 21:28:00 +02002437 paddr += PAGE_SIZE;
2438 start += PAGE_SIZE;
2439 }
2440 address += offset;
2441
Joerg Roedelab7032b2015-12-21 18:47:11 +01002442 if (unlikely(amd_iommu_np_cache)) {
Joerg Roedel17b124b2011-04-06 18:01:35 +02002443 domain_flush_pages(&dma_dom->domain, address, size);
Joerg Roedelab7032b2015-12-21 18:47:11 +01002444 domain_flush_complete(&dma_dom->domain);
2445 }
Joerg Roedel270cab242008-09-04 15:49:46 +02002446
Joerg Roedelcb76c322008-06-26 21:28:00 +02002447out:
2448 return address;
Joerg Roedel53812c12009-05-12 12:17:38 +02002449
2450out_unmap:
2451
2452 for (--i; i >= 0; --i) {
2453 start -= PAGE_SIZE;
Joerg Roedel518d9b42016-07-05 14:39:47 +02002454 iommu_unmap_page(&dma_dom->domain, start, PAGE_SIZE);
Joerg Roedel53812c12009-05-12 12:17:38 +02002455 }
2456
Joerg Roedel256e4622016-07-05 14:23:01 +02002457 domain_flush_tlb(&dma_dom->domain);
2458 domain_flush_complete(&dma_dom->domain);
2459
2460 dma_ops_free_iova(dma_dom, address, pages);
Joerg Roedel53812c12009-05-12 12:17:38 +02002461
FUJITA Tomonori8fd524b2009-11-15 21:19:53 +09002462 return DMA_ERROR_CODE;
Joerg Roedelcb76c322008-06-26 21:28:00 +02002463}
2464
Joerg Roedel431b2a22008-07-11 17:14:22 +02002465/*
2466 * Does the reverse of the __map_single function. Must be called with
2467 * the domain lock held too
2468 */
Joerg Roedelcd8c82e2009-11-23 19:33:56 +01002469static void __unmap_single(struct dma_ops_domain *dma_dom,
Joerg Roedelcb76c322008-06-26 21:28:00 +02002470 dma_addr_t dma_addr,
2471 size_t size,
2472 int dir)
2473{
Joerg Roedel04e04632010-09-23 16:12:48 +02002474 dma_addr_t flush_addr;
Joerg Roedelcb76c322008-06-26 21:28:00 +02002475 dma_addr_t i, start;
2476 unsigned int pages;
2477
Joerg Roedel04e04632010-09-23 16:12:48 +02002478 flush_addr = dma_addr;
Joerg Roedele3c449f2008-10-15 22:02:11 -07002479 pages = iommu_num_pages(dma_addr, size, PAGE_SIZE);
Joerg Roedelcb76c322008-06-26 21:28:00 +02002480 dma_addr &= PAGE_MASK;
2481 start = dma_addr;
2482
2483 for (i = 0; i < pages; ++i) {
Joerg Roedel518d9b42016-07-05 14:39:47 +02002484 iommu_unmap_page(&dma_dom->domain, start, PAGE_SIZE);
Joerg Roedelcb76c322008-06-26 21:28:00 +02002485 start += PAGE_SIZE;
2486 }
2487
Joerg Roedelb1516a12016-07-06 13:07:22 +02002488 if (amd_iommu_unmap_flush) {
2489 dma_ops_free_iova(dma_dom, dma_addr, pages);
2490 domain_flush_tlb(&dma_dom->domain);
2491 domain_flush_complete(&dma_dom->domain);
2492 } else {
2493 queue_add(dma_dom, dma_addr, pages);
2494 }
Joerg Roedelcb76c322008-06-26 21:28:00 +02002495}
2496
Joerg Roedel431b2a22008-07-11 17:14:22 +02002497/*
2498 * The exported map_single function for dma_ops.
2499 */
FUJITA Tomonori51491362009-01-05 23:47:25 +09002500static dma_addr_t map_page(struct device *dev, struct page *page,
2501 unsigned long offset, size_t size,
2502 enum dma_data_direction dir,
Krzysztof Kozlowski00085f12016-08-03 13:46:00 -07002503 unsigned long attrs)
Joerg Roedel4da70b92008-06-26 21:28:01 +02002504{
FUJITA Tomonori51491362009-01-05 23:47:25 +09002505 phys_addr_t paddr = page_to_phys(page) + offset;
Joerg Roedel92d420e2015-12-21 19:31:33 +01002506 struct protection_domain *domain;
Joerg Roedelb3311b02016-07-08 13:31:31 +02002507 struct dma_ops_domain *dma_dom;
Joerg Roedel92d420e2015-12-21 19:31:33 +01002508 u64 dma_mask;
Joerg Roedel4da70b92008-06-26 21:28:01 +02002509
Joerg Roedel94f6d192009-11-24 16:40:02 +01002510 domain = get_domain(dev);
2511 if (PTR_ERR(domain) == -EINVAL)
Joerg Roedel4da70b92008-06-26 21:28:01 +02002512 return (dma_addr_t)paddr;
Joerg Roedel94f6d192009-11-24 16:40:02 +01002513 else if (IS_ERR(domain))
2514 return DMA_ERROR_CODE;
Joerg Roedel4da70b92008-06-26 21:28:01 +02002515
Joerg Roedelf99c0f12009-11-23 16:52:56 +01002516 dma_mask = *dev->dma_mask;
Joerg Roedelb3311b02016-07-08 13:31:31 +02002517 dma_dom = to_dma_ops_domain(domain);
Joerg Roedelf99c0f12009-11-23 16:52:56 +01002518
Joerg Roedelb3311b02016-07-08 13:31:31 +02002519 return __map_single(dev, dma_dom, paddr, size, dir, dma_mask);
Joerg Roedel4da70b92008-06-26 21:28:01 +02002520}
2521
Joerg Roedel431b2a22008-07-11 17:14:22 +02002522/*
2523 * The exported unmap_single function for dma_ops.
2524 */
FUJITA Tomonori51491362009-01-05 23:47:25 +09002525static void unmap_page(struct device *dev, dma_addr_t dma_addr, size_t size,
Krzysztof Kozlowski00085f12016-08-03 13:46:00 -07002526 enum dma_data_direction dir, unsigned long attrs)
Joerg Roedel4da70b92008-06-26 21:28:01 +02002527{
Joerg Roedel4da70b92008-06-26 21:28:01 +02002528 struct protection_domain *domain;
Joerg Roedelb3311b02016-07-08 13:31:31 +02002529 struct dma_ops_domain *dma_dom;
Joerg Roedel4da70b92008-06-26 21:28:01 +02002530
Joerg Roedel94f6d192009-11-24 16:40:02 +01002531 domain = get_domain(dev);
2532 if (IS_ERR(domain))
Joerg Roedel5b28df62008-12-02 17:49:42 +01002533 return;
2534
Joerg Roedelb3311b02016-07-08 13:31:31 +02002535 dma_dom = to_dma_ops_domain(domain);
2536
2537 __unmap_single(dma_dom, dma_addr, size, dir);
Joerg Roedel4da70b92008-06-26 21:28:01 +02002538}
2539
Joerg Roedel80187fd2016-07-06 17:20:54 +02002540static int sg_num_pages(struct device *dev,
2541 struct scatterlist *sglist,
2542 int nelems)
2543{
2544 unsigned long mask, boundary_size;
2545 struct scatterlist *s;
2546 int i, npages = 0;
2547
2548 mask = dma_get_seg_boundary(dev);
2549 boundary_size = mask + 1 ? ALIGN(mask + 1, PAGE_SIZE) >> PAGE_SHIFT :
2550 1UL << (BITS_PER_LONG - PAGE_SHIFT);
2551
2552 for_each_sg(sglist, s, nelems, i) {
2553 int p, n;
2554
2555 s->dma_address = npages << PAGE_SHIFT;
2556 p = npages % boundary_size;
2557 n = iommu_num_pages(sg_phys(s), s->length, PAGE_SIZE);
2558 if (p + n > boundary_size)
2559 npages += boundary_size - p;
2560 npages += n;
2561 }
2562
2563 return npages;
2564}
2565
Joerg Roedel431b2a22008-07-11 17:14:22 +02002566/*
Joerg Roedel431b2a22008-07-11 17:14:22 +02002567 * The exported map_sg function for dma_ops (handles scatter-gather
2568 * lists).
2569 */
Joerg Roedel65b050a2008-06-26 21:28:02 +02002570static int map_sg(struct device *dev, struct scatterlist *sglist,
Joerg Roedel80187fd2016-07-06 17:20:54 +02002571 int nelems, enum dma_data_direction direction,
Krzysztof Kozlowski00085f12016-08-03 13:46:00 -07002572 unsigned long attrs)
Joerg Roedel65b050a2008-06-26 21:28:02 +02002573{
Joerg Roedel80187fd2016-07-06 17:20:54 +02002574 int mapped_pages = 0, npages = 0, prot = 0, i;
Joerg Roedel65b050a2008-06-26 21:28:02 +02002575 struct protection_domain *domain;
Joerg Roedel80187fd2016-07-06 17:20:54 +02002576 struct dma_ops_domain *dma_dom;
Joerg Roedel65b050a2008-06-26 21:28:02 +02002577 struct scatterlist *s;
Joerg Roedel80187fd2016-07-06 17:20:54 +02002578 unsigned long address;
Joerg Roedel832a90c2008-09-18 15:54:23 +02002579 u64 dma_mask;
Joerg Roedel65b050a2008-06-26 21:28:02 +02002580
Joerg Roedel94f6d192009-11-24 16:40:02 +01002581 domain = get_domain(dev);
Joerg Roedela0e191b2013-04-09 15:04:36 +02002582 if (IS_ERR(domain))
Joerg Roedel94f6d192009-11-24 16:40:02 +01002583 return 0;
Joerg Roedeldbcc1122008-09-04 15:04:26 +02002584
Joerg Roedelb3311b02016-07-08 13:31:31 +02002585 dma_dom = to_dma_ops_domain(domain);
Joerg Roedel832a90c2008-09-18 15:54:23 +02002586 dma_mask = *dev->dma_mask;
Joerg Roedel65b050a2008-06-26 21:28:02 +02002587
Joerg Roedel80187fd2016-07-06 17:20:54 +02002588 npages = sg_num_pages(dev, sglist, nelems);
2589
2590 address = dma_ops_alloc_iova(dev, dma_dom, npages, dma_mask);
2591 if (address == DMA_ERROR_CODE)
2592 goto out_err;
2593
2594 prot = dir2prot(direction);
2595
2596 /* Map all sg entries */
Joerg Roedel65b050a2008-06-26 21:28:02 +02002597 for_each_sg(sglist, s, nelems, i) {
Joerg Roedel80187fd2016-07-06 17:20:54 +02002598 int j, pages = iommu_num_pages(sg_phys(s), s->length, PAGE_SIZE);
Joerg Roedel65b050a2008-06-26 21:28:02 +02002599
Joerg Roedel80187fd2016-07-06 17:20:54 +02002600 for (j = 0; j < pages; ++j) {
2601 unsigned long bus_addr, phys_addr;
2602 int ret;
Joerg Roedel65b050a2008-06-26 21:28:02 +02002603
Joerg Roedel80187fd2016-07-06 17:20:54 +02002604 bus_addr = address + s->dma_address + (j << PAGE_SHIFT);
2605 phys_addr = (sg_phys(s) & PAGE_MASK) + (j << PAGE_SHIFT);
2606 ret = iommu_map_page(domain, bus_addr, phys_addr, PAGE_SIZE, prot, GFP_ATOMIC);
2607 if (ret)
2608 goto out_unmap;
2609
2610 mapped_pages += 1;
2611 }
Joerg Roedel65b050a2008-06-26 21:28:02 +02002612 }
2613
Joerg Roedel80187fd2016-07-06 17:20:54 +02002614 /* Everything is mapped - write the right values into s->dma_address */
2615 for_each_sg(sglist, s, nelems, i) {
2616 s->dma_address += address + s->offset;
2617 s->dma_length = s->length;
Joerg Roedel65b050a2008-06-26 21:28:02 +02002618 }
2619
Joerg Roedel80187fd2016-07-06 17:20:54 +02002620 return nelems;
2621
2622out_unmap:
2623 pr_err("%s: IOMMU mapping error in map_sg (io-pages: %d)\n",
2624 dev_name(dev), npages);
2625
2626 for_each_sg(sglist, s, nelems, i) {
2627 int j, pages = iommu_num_pages(sg_phys(s), s->length, PAGE_SIZE);
2628
2629 for (j = 0; j < pages; ++j) {
2630 unsigned long bus_addr;
2631
2632 bus_addr = address + s->dma_address + (j << PAGE_SHIFT);
2633 iommu_unmap_page(domain, bus_addr, PAGE_SIZE);
2634
2635 if (--mapped_pages)
2636 goto out_free_iova;
2637 }
2638 }
2639
2640out_free_iova:
2641 free_iova_fast(&dma_dom->iovad, address, npages);
2642
2643out_err:
Joerg Roedel92d420e2015-12-21 19:31:33 +01002644 return 0;
Joerg Roedel65b050a2008-06-26 21:28:02 +02002645}
2646
Joerg Roedel431b2a22008-07-11 17:14:22 +02002647/*
2648 * The exported map_sg function for dma_ops (handles scatter-gather
2649 * lists).
2650 */
Joerg Roedel65b050a2008-06-26 21:28:02 +02002651static void unmap_sg(struct device *dev, struct scatterlist *sglist,
FUJITA Tomonori160c1d82009-01-05 23:59:02 +09002652 int nelems, enum dma_data_direction dir,
Krzysztof Kozlowski00085f12016-08-03 13:46:00 -07002653 unsigned long attrs)
Joerg Roedel65b050a2008-06-26 21:28:02 +02002654{
Joerg Roedel65b050a2008-06-26 21:28:02 +02002655 struct protection_domain *domain;
Joerg Roedelb3311b02016-07-08 13:31:31 +02002656 struct dma_ops_domain *dma_dom;
Joerg Roedel80187fd2016-07-06 17:20:54 +02002657 unsigned long startaddr;
2658 int npages = 2;
Joerg Roedel65b050a2008-06-26 21:28:02 +02002659
Joerg Roedel94f6d192009-11-24 16:40:02 +01002660 domain = get_domain(dev);
2661 if (IS_ERR(domain))
Joerg Roedel5b28df62008-12-02 17:49:42 +01002662 return;
2663
Joerg Roedel80187fd2016-07-06 17:20:54 +02002664 startaddr = sg_dma_address(sglist) & PAGE_MASK;
Joerg Roedelb3311b02016-07-08 13:31:31 +02002665 dma_dom = to_dma_ops_domain(domain);
Joerg Roedel80187fd2016-07-06 17:20:54 +02002666 npages = sg_num_pages(dev, sglist, nelems);
2667
Joerg Roedelb3311b02016-07-08 13:31:31 +02002668 __unmap_single(dma_dom, startaddr, npages << PAGE_SHIFT, dir);
Joerg Roedel65b050a2008-06-26 21:28:02 +02002669}
2670
Joerg Roedel431b2a22008-07-11 17:14:22 +02002671/*
2672 * The exported alloc_coherent function for dma_ops.
2673 */
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002674static void *alloc_coherent(struct device *dev, size_t size,
Andrzej Pietrasiewiczbaa676f2012-03-27 14:28:18 +02002675 dma_addr_t *dma_addr, gfp_t flag,
Krzysztof Kozlowski00085f12016-08-03 13:46:00 -07002676 unsigned long attrs)
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002677{
Joerg Roedel832a90c2008-09-18 15:54:23 +02002678 u64 dma_mask = dev->coherent_dma_mask;
Joerg Roedel3b839a52015-04-01 14:58:47 +02002679 struct protection_domain *domain;
Joerg Roedelb3311b02016-07-08 13:31:31 +02002680 struct dma_ops_domain *dma_dom;
Joerg Roedel3b839a52015-04-01 14:58:47 +02002681 struct page *page;
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002682
Joerg Roedel94f6d192009-11-24 16:40:02 +01002683 domain = get_domain(dev);
2684 if (PTR_ERR(domain) == -EINVAL) {
Joerg Roedel3b839a52015-04-01 14:58:47 +02002685 page = alloc_pages(flag, get_order(size));
2686 *dma_addr = page_to_phys(page);
2687 return page_address(page);
Joerg Roedel94f6d192009-11-24 16:40:02 +01002688 } else if (IS_ERR(domain))
2689 return NULL;
Joerg Roedeldbcc1122008-09-04 15:04:26 +02002690
Joerg Roedelb3311b02016-07-08 13:31:31 +02002691 dma_dom = to_dma_ops_domain(domain);
Joerg Roedel3b839a52015-04-01 14:58:47 +02002692 size = PAGE_ALIGN(size);
Joerg Roedelf99c0f12009-11-23 16:52:56 +01002693 dma_mask = dev->coherent_dma_mask;
2694 flag &= ~(__GFP_DMA | __GFP_HIGHMEM | __GFP_DMA32);
Joerg Roedel2d0ec7a2015-06-01 17:30:57 +02002695 flag |= __GFP_ZERO;
FUJITA Tomonori13d9fea2008-09-10 20:19:40 +09002696
Joerg Roedel3b839a52015-04-01 14:58:47 +02002697 page = alloc_pages(flag | __GFP_NOWARN, get_order(size));
2698 if (!page) {
Mel Gormand0164ad2015-11-06 16:28:21 -08002699 if (!gfpflags_allow_blocking(flag))
Joerg Roedel3b839a52015-04-01 14:58:47 +02002700 return NULL;
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002701
Joerg Roedel3b839a52015-04-01 14:58:47 +02002702 page = dma_alloc_from_contiguous(dev, size >> PAGE_SHIFT,
Lucas Stach712c6042017-02-24 14:58:44 -08002703 get_order(size), flag);
Joerg Roedel3b839a52015-04-01 14:58:47 +02002704 if (!page)
2705 return NULL;
2706 }
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002707
Joerg Roedel832a90c2008-09-18 15:54:23 +02002708 if (!dma_mask)
2709 dma_mask = *dev->dma_mask;
2710
Joerg Roedelb3311b02016-07-08 13:31:31 +02002711 *dma_addr = __map_single(dev, dma_dom, page_to_phys(page),
Joerg Roedelbda350d2016-07-05 16:28:02 +02002712 size, DMA_BIDIRECTIONAL, dma_mask);
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002713
Joerg Roedel92d420e2015-12-21 19:31:33 +01002714 if (*dma_addr == DMA_ERROR_CODE)
Joerg Roedel5b28df62008-12-02 17:49:42 +01002715 goto out_free;
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002716
Joerg Roedel3b839a52015-04-01 14:58:47 +02002717 return page_address(page);
Joerg Roedel5b28df62008-12-02 17:49:42 +01002718
2719out_free:
2720
Joerg Roedel3b839a52015-04-01 14:58:47 +02002721 if (!dma_release_from_contiguous(dev, page, size >> PAGE_SHIFT))
2722 __free_pages(page, get_order(size));
Joerg Roedel5b28df62008-12-02 17:49:42 +01002723
2724 return NULL;
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002725}
2726
Joerg Roedel431b2a22008-07-11 17:14:22 +02002727/*
2728 * The exported free_coherent function for dma_ops.
Joerg Roedel431b2a22008-07-11 17:14:22 +02002729 */
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002730static void free_coherent(struct device *dev, size_t size,
Andrzej Pietrasiewiczbaa676f2012-03-27 14:28:18 +02002731 void *virt_addr, dma_addr_t dma_addr,
Krzysztof Kozlowski00085f12016-08-03 13:46:00 -07002732 unsigned long attrs)
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002733{
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002734 struct protection_domain *domain;
Joerg Roedelb3311b02016-07-08 13:31:31 +02002735 struct dma_ops_domain *dma_dom;
Joerg Roedel3b839a52015-04-01 14:58:47 +02002736 struct page *page;
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002737
Joerg Roedel3b839a52015-04-01 14:58:47 +02002738 page = virt_to_page(virt_addr);
2739 size = PAGE_ALIGN(size);
2740
Joerg Roedel94f6d192009-11-24 16:40:02 +01002741 domain = get_domain(dev);
2742 if (IS_ERR(domain))
Joerg Roedel5b28df62008-12-02 17:49:42 +01002743 goto free_mem;
2744
Joerg Roedelb3311b02016-07-08 13:31:31 +02002745 dma_dom = to_dma_ops_domain(domain);
2746
2747 __unmap_single(dma_dom, dma_addr, size, DMA_BIDIRECTIONAL);
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002748
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002749free_mem:
Joerg Roedel3b839a52015-04-01 14:58:47 +02002750 if (!dma_release_from_contiguous(dev, page, size >> PAGE_SHIFT))
2751 __free_pages(page, get_order(size));
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002752}
2753
Joerg Roedelc432f3d2008-06-26 21:28:04 +02002754/*
Joerg Roedelb39ba6a2008-09-09 18:40:46 +02002755 * This function is called by the DMA layer to find out if we can handle a
2756 * particular device. It is part of the dma_ops.
2757 */
2758static int amd_iommu_dma_supported(struct device *dev, u64 mask)
2759{
Joerg Roedel420aef82009-11-23 16:14:57 +01002760 return check_device(dev);
Joerg Roedelb39ba6a2008-09-09 18:40:46 +02002761}
2762
Bart Van Assche52997092017-01-20 13:04:01 -08002763static const struct dma_map_ops amd_iommu_dma_ops = {
Joerg Roedela639a8e2015-12-22 16:06:49 +01002764 .alloc = alloc_coherent,
2765 .free = free_coherent,
2766 .map_page = map_page,
2767 .unmap_page = unmap_page,
2768 .map_sg = map_sg,
2769 .unmap_sg = unmap_sg,
2770 .dma_supported = amd_iommu_dma_supported,
Joerg Roedel6631ee92008-06-26 21:28:05 +02002771};
2772
Joerg Roedel81cd07b2016-07-07 18:01:10 +02002773static int init_reserved_iova_ranges(void)
2774{
2775 struct pci_dev *pdev = NULL;
2776 struct iova *val;
2777
2778 init_iova_domain(&reserved_iova_ranges, PAGE_SIZE,
2779 IOVA_START_PFN, DMA_32BIT_PFN);
2780
2781 lockdep_set_class(&reserved_iova_ranges.iova_rbtree_lock,
2782 &reserved_rbtree_key);
2783
2784 /* MSI memory range */
2785 val = reserve_iova(&reserved_iova_ranges,
2786 IOVA_PFN(MSI_RANGE_START), IOVA_PFN(MSI_RANGE_END));
2787 if (!val) {
2788 pr_err("Reserving MSI range failed\n");
2789 return -ENOMEM;
2790 }
2791
2792 /* HT memory range */
2793 val = reserve_iova(&reserved_iova_ranges,
2794 IOVA_PFN(HT_RANGE_START), IOVA_PFN(HT_RANGE_END));
2795 if (!val) {
2796 pr_err("Reserving HT range failed\n");
2797 return -ENOMEM;
2798 }
2799
2800 /*
2801 * Memory used for PCI resources
2802 * FIXME: Check whether we can reserve the PCI-hole completly
2803 */
2804 for_each_pci_dev(pdev) {
2805 int i;
2806
2807 for (i = 0; i < PCI_NUM_RESOURCES; ++i) {
2808 struct resource *r = &pdev->resource[i];
2809
2810 if (!(r->flags & IORESOURCE_MEM))
2811 continue;
2812
2813 val = reserve_iova(&reserved_iova_ranges,
2814 IOVA_PFN(r->start),
2815 IOVA_PFN(r->end));
2816 if (!val) {
2817 pr_err("Reserve pci-resource range failed\n");
2818 return -ENOMEM;
2819 }
2820 }
2821 }
2822
2823 return 0;
2824}
2825
Joerg Roedel3a18404c2015-05-28 18:41:45 +02002826int __init amd_iommu_init_api(void)
Joerg Roedel27c21272011-05-30 15:56:24 +02002827{
Joerg Roedelc5b5da92016-07-06 11:55:37 +02002828 int ret, cpu, err = 0;
Joerg Roedel307d5852016-07-05 11:54:04 +02002829
2830 ret = iova_cache_get();
2831 if (ret)
2832 return ret;
Wan Zongshun9a4d3bf52016-04-01 09:06:05 -04002833
Joerg Roedel81cd07b2016-07-07 18:01:10 +02002834 ret = init_reserved_iova_ranges();
2835 if (ret)
2836 return ret;
2837
Joerg Roedelc5b5da92016-07-06 11:55:37 +02002838 for_each_possible_cpu(cpu) {
2839 struct flush_queue *queue = per_cpu_ptr(&flush_queue, cpu);
2840
2841 queue->entries = kzalloc(FLUSH_QUEUE_SIZE *
2842 sizeof(*queue->entries),
2843 GFP_KERNEL);
2844 if (!queue->entries)
2845 goto out_put_iova;
2846
2847 spin_lock_init(&queue->lock);
2848 }
2849
Wan Zongshun9a4d3bf52016-04-01 09:06:05 -04002850 err = bus_set_iommu(&pci_bus_type, &amd_iommu_ops);
2851 if (err)
2852 return err;
2853#ifdef CONFIG_ARM_AMBA
2854 err = bus_set_iommu(&amba_bustype, &amd_iommu_ops);
2855 if (err)
2856 return err;
2857#endif
Wan Zongshun0076cd32016-05-10 09:21:01 -04002858 err = bus_set_iommu(&platform_bus_type, &amd_iommu_ops);
2859 if (err)
2860 return err;
Wan Zongshun9a4d3bf52016-04-01 09:06:05 -04002861 return 0;
Joerg Roedelc5b5da92016-07-06 11:55:37 +02002862
2863out_put_iova:
2864 for_each_possible_cpu(cpu) {
2865 struct flush_queue *queue = per_cpu_ptr(&flush_queue, cpu);
2866
2867 kfree(queue->entries);
2868 }
2869
2870 return -ENOMEM;
Joerg Roedelf5325092010-01-22 17:44:35 +01002871}
2872
Joerg Roedel6631ee92008-06-26 21:28:05 +02002873int __init amd_iommu_init_dma_ops(void)
2874{
Joerg Roedelbb279472016-07-06 13:56:36 +02002875 setup_timer(&queue_timer, queue_flush_timeout, 0);
2876 atomic_set(&queue_timer_on, 0);
2877
Joerg Roedel32302322015-07-28 16:58:50 +02002878 swiotlb = iommu_pass_through ? 1 : 0;
Joerg Roedel6631ee92008-06-26 21:28:05 +02002879 iommu_detected = 1;
Joerg Roedel6631ee92008-06-26 21:28:05 +02002880
Joerg Roedel52717822015-07-28 16:58:51 +02002881 /*
2882 * In case we don't initialize SWIOTLB (actually the common case
2883 * when AMD IOMMU is enabled), make sure there are global
2884 * dma_ops set as a fall-back for devices not handled by this
2885 * driver (for example non-PCI devices).
2886 */
2887 if (!swiotlb)
2888 dma_ops = &nommu_dma_ops;
2889
Joerg Roedel62410ee2012-06-12 16:42:43 +02002890 if (amd_iommu_unmap_flush)
2891 pr_info("AMD-Vi: IO/TLB flush on unmap enabled\n");
2892 else
2893 pr_info("AMD-Vi: Lazy IO/TLB flushing enabled\n");
2894
Joerg Roedel6631ee92008-06-26 21:28:05 +02002895 return 0;
Joerg Roedelc5b5da92016-07-06 11:55:37 +02002896
Joerg Roedel6631ee92008-06-26 21:28:05 +02002897}
Joerg Roedel6d98cd82008-12-08 12:05:55 +01002898
2899/*****************************************************************************
2900 *
2901 * The following functions belong to the exported interface of AMD IOMMU
2902 *
2903 * This interface allows access to lower level functions of the IOMMU
2904 * like protection domain handling and assignement of devices to domains
2905 * which is not possible with the dma_ops interface.
2906 *
2907 *****************************************************************************/
2908
Joerg Roedel6d98cd82008-12-08 12:05:55 +01002909static void cleanup_domain(struct protection_domain *domain)
2910{
Joerg Roedel9b29d3c2014-08-05 17:50:15 +02002911 struct iommu_dev_data *entry;
Joerg Roedel6d98cd82008-12-08 12:05:55 +01002912 unsigned long flags;
Joerg Roedel6d98cd82008-12-08 12:05:55 +01002913
2914 write_lock_irqsave(&amd_iommu_devtable_lock, flags);
2915
Joerg Roedel9b29d3c2014-08-05 17:50:15 +02002916 while (!list_empty(&domain->dev_list)) {
2917 entry = list_first_entry(&domain->dev_list,
2918 struct iommu_dev_data, list);
2919 __detach_device(entry);
Joerg Roedel492667d2009-11-27 13:25:47 +01002920 }
Joerg Roedel6d98cd82008-12-08 12:05:55 +01002921
2922 write_unlock_irqrestore(&amd_iommu_devtable_lock, flags);
2923}
2924
Joerg Roedel26508152009-08-26 16:52:40 +02002925static void protection_domain_free(struct protection_domain *domain)
2926{
2927 if (!domain)
2928 return;
2929
Joerg Roedelaeb26f52009-11-20 16:44:01 +01002930 del_domain_from_list(domain);
2931
Joerg Roedel26508152009-08-26 16:52:40 +02002932 if (domain->id)
2933 domain_id_free(domain->id);
2934
2935 kfree(domain);
2936}
2937
Joerg Roedel7a5a5662015-06-30 08:56:11 +02002938static int protection_domain_init(struct protection_domain *domain)
2939{
2940 spin_lock_init(&domain->lock);
2941 mutex_init(&domain->api_lock);
2942 domain->id = domain_id_alloc();
2943 if (!domain->id)
2944 return -ENOMEM;
2945 INIT_LIST_HEAD(&domain->dev_list);
2946
2947 return 0;
2948}
2949
Joerg Roedel26508152009-08-26 16:52:40 +02002950static struct protection_domain *protection_domain_alloc(void)
Joerg Roedelc156e342008-12-02 18:13:27 +01002951{
2952 struct protection_domain *domain;
2953
2954 domain = kzalloc(sizeof(*domain), GFP_KERNEL);
2955 if (!domain)
Joerg Roedel26508152009-08-26 16:52:40 +02002956 return NULL;
Joerg Roedelc156e342008-12-02 18:13:27 +01002957
Joerg Roedel7a5a5662015-06-30 08:56:11 +02002958 if (protection_domain_init(domain))
Joerg Roedel26508152009-08-26 16:52:40 +02002959 goto out_err;
2960
Joerg Roedelaeb26f52009-11-20 16:44:01 +01002961 add_domain_to_list(domain);
2962
Joerg Roedel26508152009-08-26 16:52:40 +02002963 return domain;
2964
2965out_err:
2966 kfree(domain);
2967
2968 return NULL;
2969}
2970
Joerg Roedel3f4b87b2015-03-26 13:43:07 +01002971static struct iommu_domain *amd_iommu_domain_alloc(unsigned type)
2972{
2973 struct protection_domain *pdomain;
Joerg Roedel0bb6e242015-05-28 18:41:40 +02002974 struct dma_ops_domain *dma_domain;
Joerg Roedel3f4b87b2015-03-26 13:43:07 +01002975
Joerg Roedel0bb6e242015-05-28 18:41:40 +02002976 switch (type) {
2977 case IOMMU_DOMAIN_UNMANAGED:
2978 pdomain = protection_domain_alloc();
2979 if (!pdomain)
2980 return NULL;
2981
2982 pdomain->mode = PAGE_MODE_3_LEVEL;
2983 pdomain->pt_root = (void *)get_zeroed_page(GFP_KERNEL);
2984 if (!pdomain->pt_root) {
2985 protection_domain_free(pdomain);
2986 return NULL;
2987 }
2988
2989 pdomain->domain.geometry.aperture_start = 0;
2990 pdomain->domain.geometry.aperture_end = ~0ULL;
2991 pdomain->domain.geometry.force_aperture = true;
2992
2993 break;
2994 case IOMMU_DOMAIN_DMA:
2995 dma_domain = dma_ops_domain_alloc();
2996 if (!dma_domain) {
2997 pr_err("AMD-Vi: Failed to allocate\n");
2998 return NULL;
2999 }
3000 pdomain = &dma_domain->domain;
3001 break;
Joerg Roedel07f643a2015-05-28 18:41:41 +02003002 case IOMMU_DOMAIN_IDENTITY:
3003 pdomain = protection_domain_alloc();
3004 if (!pdomain)
3005 return NULL;
3006
3007 pdomain->mode = PAGE_MODE_NONE;
3008 break;
Joerg Roedel0bb6e242015-05-28 18:41:40 +02003009 default:
Joerg Roedel3f4b87b2015-03-26 13:43:07 +01003010 return NULL;
Joerg Roedel0bb6e242015-05-28 18:41:40 +02003011 }
Joerg Roedel3f4b87b2015-03-26 13:43:07 +01003012
3013 return &pdomain->domain;
Joerg Roedel3f4b87b2015-03-26 13:43:07 +01003014}
3015
3016static void amd_iommu_domain_free(struct iommu_domain *dom)
Joerg Roedel26508152009-08-26 16:52:40 +02003017{
3018 struct protection_domain *domain;
Joerg Roedelcda70052016-07-07 15:57:04 +02003019 struct dma_ops_domain *dma_dom;
Joerg Roedel98383fc2008-12-02 18:34:12 +01003020
Joerg Roedel3f4b87b2015-03-26 13:43:07 +01003021 domain = to_pdomain(dom);
3022
Joerg Roedel98383fc2008-12-02 18:34:12 +01003023 if (domain->dev_cnt > 0)
3024 cleanup_domain(domain);
3025
3026 BUG_ON(domain->dev_cnt != 0);
3027
Joerg Roedelcda70052016-07-07 15:57:04 +02003028 if (!dom)
3029 return;
Joerg Roedel98383fc2008-12-02 18:34:12 +01003030
Joerg Roedelcda70052016-07-07 15:57:04 +02003031 switch (dom->type) {
3032 case IOMMU_DOMAIN_DMA:
Joerg Roedel281e8cc2016-07-07 16:12:02 +02003033 /*
3034 * First make sure the domain is no longer referenced from the
3035 * flush queue
3036 */
3037 queue_flush_all();
3038
3039 /* Now release the domain */
Joerg Roedelb3311b02016-07-08 13:31:31 +02003040 dma_dom = to_dma_ops_domain(domain);
Joerg Roedelcda70052016-07-07 15:57:04 +02003041 dma_ops_domain_free(dma_dom);
3042 break;
3043 default:
3044 if (domain->mode != PAGE_MODE_NONE)
3045 free_pagetable(domain);
Joerg Roedel52815b72011-11-17 17:24:28 +01003046
Joerg Roedelcda70052016-07-07 15:57:04 +02003047 if (domain->flags & PD_IOMMUV2_MASK)
3048 free_gcr3_table(domain);
3049
3050 protection_domain_free(domain);
3051 break;
3052 }
Joerg Roedel98383fc2008-12-02 18:34:12 +01003053}
3054
Joerg Roedel684f2882008-12-08 12:07:44 +01003055static void amd_iommu_detach_device(struct iommu_domain *dom,
3056 struct device *dev)
3057{
Joerg Roedel657cbb62009-11-23 15:26:46 +01003058 struct iommu_dev_data *dev_data = dev->archdata.iommu;
Joerg Roedel684f2882008-12-08 12:07:44 +01003059 struct amd_iommu *iommu;
Wan Zongshun7aba6cb2016-04-01 09:06:02 -04003060 int devid;
Joerg Roedel684f2882008-12-08 12:07:44 +01003061
Joerg Roedel98fc5a62009-11-24 17:19:23 +01003062 if (!check_device(dev))
Joerg Roedel684f2882008-12-08 12:07:44 +01003063 return;
3064
Joerg Roedel98fc5a62009-11-24 17:19:23 +01003065 devid = get_device_id(dev);
Joerg Roedel9ee35e42016-04-21 18:21:31 +02003066 if (devid < 0)
Wan Zongshun7aba6cb2016-04-01 09:06:02 -04003067 return;
Joerg Roedel684f2882008-12-08 12:07:44 +01003068
Joerg Roedel657cbb62009-11-23 15:26:46 +01003069 if (dev_data->domain != NULL)
Joerg Roedel15898bb2009-11-24 15:39:42 +01003070 detach_device(dev);
Joerg Roedel684f2882008-12-08 12:07:44 +01003071
3072 iommu = amd_iommu_rlookup_table[devid];
3073 if (!iommu)
3074 return;
3075
Suravee Suthikulpanitd98de492016-08-23 13:52:40 -05003076#ifdef CONFIG_IRQ_REMAP
3077 if (AMD_IOMMU_GUEST_IR_VAPIC(amd_iommu_guest_ir) &&
3078 (dom->type == IOMMU_DOMAIN_UNMANAGED))
3079 dev_data->use_vapic = 0;
3080#endif
3081
Joerg Roedel684f2882008-12-08 12:07:44 +01003082 iommu_completion_wait(iommu);
3083}
3084
Joerg Roedel01106062008-12-02 19:34:11 +01003085static int amd_iommu_attach_device(struct iommu_domain *dom,
3086 struct device *dev)
3087{
Joerg Roedel3f4b87b2015-03-26 13:43:07 +01003088 struct protection_domain *domain = to_pdomain(dom);
Joerg Roedel657cbb62009-11-23 15:26:46 +01003089 struct iommu_dev_data *dev_data;
Joerg Roedel01106062008-12-02 19:34:11 +01003090 struct amd_iommu *iommu;
Joerg Roedel15898bb2009-11-24 15:39:42 +01003091 int ret;
Joerg Roedel01106062008-12-02 19:34:11 +01003092
Joerg Roedel98fc5a62009-11-24 17:19:23 +01003093 if (!check_device(dev))
Joerg Roedel01106062008-12-02 19:34:11 +01003094 return -EINVAL;
3095
Joerg Roedel657cbb62009-11-23 15:26:46 +01003096 dev_data = dev->archdata.iommu;
3097
Joerg Roedelf62dda62011-06-09 12:55:35 +02003098 iommu = amd_iommu_rlookup_table[dev_data->devid];
Joerg Roedel01106062008-12-02 19:34:11 +01003099 if (!iommu)
3100 return -EINVAL;
3101
Joerg Roedel657cbb62009-11-23 15:26:46 +01003102 if (dev_data->domain)
Joerg Roedel15898bb2009-11-24 15:39:42 +01003103 detach_device(dev);
Joerg Roedel01106062008-12-02 19:34:11 +01003104
Joerg Roedel15898bb2009-11-24 15:39:42 +01003105 ret = attach_device(dev, domain);
Joerg Roedel01106062008-12-02 19:34:11 +01003106
Suravee Suthikulpanitd98de492016-08-23 13:52:40 -05003107#ifdef CONFIG_IRQ_REMAP
3108 if (AMD_IOMMU_GUEST_IR_VAPIC(amd_iommu_guest_ir)) {
3109 if (dom->type == IOMMU_DOMAIN_UNMANAGED)
3110 dev_data->use_vapic = 1;
3111 else
3112 dev_data->use_vapic = 0;
3113 }
3114#endif
3115
Joerg Roedel01106062008-12-02 19:34:11 +01003116 iommu_completion_wait(iommu);
3117
Joerg Roedel15898bb2009-11-24 15:39:42 +01003118 return ret;
Joerg Roedel01106062008-12-02 19:34:11 +01003119}
3120
Joerg Roedel468e2362010-01-21 16:37:36 +01003121static int amd_iommu_map(struct iommu_domain *dom, unsigned long iova,
Ohad Ben-Cohen50090652011-11-10 11:32:25 +02003122 phys_addr_t paddr, size_t page_size, int iommu_prot)
Joerg Roedelc6229ca2008-12-02 19:48:43 +01003123{
Joerg Roedel3f4b87b2015-03-26 13:43:07 +01003124 struct protection_domain *domain = to_pdomain(dom);
Joerg Roedelc6229ca2008-12-02 19:48:43 +01003125 int prot = 0;
3126 int ret;
3127
Joerg Roedel132bd682011-11-17 14:18:46 +01003128 if (domain->mode == PAGE_MODE_NONE)
3129 return -EINVAL;
3130
Joerg Roedelc6229ca2008-12-02 19:48:43 +01003131 if (iommu_prot & IOMMU_READ)
3132 prot |= IOMMU_PROT_IR;
3133 if (iommu_prot & IOMMU_WRITE)
3134 prot |= IOMMU_PROT_IW;
3135
Joerg Roedel5d214fe2010-02-08 14:44:49 +01003136 mutex_lock(&domain->api_lock);
Joerg Roedelb911b892016-07-05 14:29:11 +02003137 ret = iommu_map_page(domain, iova, paddr, page_size, prot, GFP_KERNEL);
Joerg Roedel5d214fe2010-02-08 14:44:49 +01003138 mutex_unlock(&domain->api_lock);
3139
Joerg Roedel795e74f72010-05-11 17:40:57 +02003140 return ret;
Joerg Roedelc6229ca2008-12-02 19:48:43 +01003141}
3142
Ohad Ben-Cohen50090652011-11-10 11:32:25 +02003143static size_t amd_iommu_unmap(struct iommu_domain *dom, unsigned long iova,
3144 size_t page_size)
Joerg Roedeleb74ff62008-12-02 19:59:10 +01003145{
Joerg Roedel3f4b87b2015-03-26 13:43:07 +01003146 struct protection_domain *domain = to_pdomain(dom);
Ohad Ben-Cohen50090652011-11-10 11:32:25 +02003147 size_t unmap_size;
Joerg Roedeleb74ff62008-12-02 19:59:10 +01003148
Joerg Roedel132bd682011-11-17 14:18:46 +01003149 if (domain->mode == PAGE_MODE_NONE)
3150 return -EINVAL;
3151
Joerg Roedel5d214fe2010-02-08 14:44:49 +01003152 mutex_lock(&domain->api_lock);
Joerg Roedel468e2362010-01-21 16:37:36 +01003153 unmap_size = iommu_unmap_page(domain, iova, page_size);
Joerg Roedel795e74f72010-05-11 17:40:57 +02003154 mutex_unlock(&domain->api_lock);
Joerg Roedeleb74ff62008-12-02 19:59:10 +01003155
Joerg Roedel17b124b2011-04-06 18:01:35 +02003156 domain_flush_tlb_pde(domain);
Joerg Roedel5d214fe2010-02-08 14:44:49 +01003157
Ohad Ben-Cohen50090652011-11-10 11:32:25 +02003158 return unmap_size;
Joerg Roedeleb74ff62008-12-02 19:59:10 +01003159}
3160
Joerg Roedel645c4c82008-12-02 20:05:50 +01003161static phys_addr_t amd_iommu_iova_to_phys(struct iommu_domain *dom,
Varun Sethibb5547a2013-03-29 01:23:58 +05303162 dma_addr_t iova)
Joerg Roedel645c4c82008-12-02 20:05:50 +01003163{
Joerg Roedel3f4b87b2015-03-26 13:43:07 +01003164 struct protection_domain *domain = to_pdomain(dom);
Joerg Roedel3039ca12015-04-01 14:58:48 +02003165 unsigned long offset_mask, pte_pgsize;
Joerg Roedelf03152b2010-01-21 16:15:24 +01003166 u64 *pte, __pte;
Joerg Roedel645c4c82008-12-02 20:05:50 +01003167
Joerg Roedel132bd682011-11-17 14:18:46 +01003168 if (domain->mode == PAGE_MODE_NONE)
3169 return iova;
3170
Joerg Roedel3039ca12015-04-01 14:58:48 +02003171 pte = fetch_pte(domain, iova, &pte_pgsize);
Joerg Roedel645c4c82008-12-02 20:05:50 +01003172
Joerg Roedela6d41a42009-09-02 17:08:55 +02003173 if (!pte || !IOMMU_PTE_PRESENT(*pte))
Joerg Roedel645c4c82008-12-02 20:05:50 +01003174 return 0;
3175
Joerg Roedelb24b1b62015-04-01 14:58:51 +02003176 offset_mask = pte_pgsize - 1;
3177 __pte = *pte & PM_ADDR_MASK;
Joerg Roedelf03152b2010-01-21 16:15:24 +01003178
Joerg Roedelb24b1b62015-04-01 14:58:51 +02003179 return (__pte & ~offset_mask) | (iova & offset_mask);
Joerg Roedel645c4c82008-12-02 20:05:50 +01003180}
3181
Joerg Roedelab636482014-09-05 10:48:21 +02003182static bool amd_iommu_capable(enum iommu_cap cap)
Sheng Yangdbb9fd82009-03-18 15:33:06 +08003183{
Joerg Roedel80a506b2010-07-27 17:14:24 +02003184 switch (cap) {
3185 case IOMMU_CAP_CACHE_COHERENCY:
Joerg Roedelab636482014-09-05 10:48:21 +02003186 return true;
Joerg Roedelbdddadc2012-07-02 18:38:13 +02003187 case IOMMU_CAP_INTR_REMAP:
Joerg Roedelab636482014-09-05 10:48:21 +02003188 return (irq_remapping_enabled == 1);
Will Deaconcfdeec22014-10-27 11:24:48 +00003189 case IOMMU_CAP_NOEXEC:
3190 return false;
Joerg Roedel80a506b2010-07-27 17:14:24 +02003191 }
3192
Joerg Roedelab636482014-09-05 10:48:21 +02003193 return false;
Sheng Yangdbb9fd82009-03-18 15:33:06 +08003194}
3195
Eric Augere5b52342017-01-19 20:57:47 +00003196static void amd_iommu_get_resv_regions(struct device *dev,
3197 struct list_head *head)
Joerg Roedel35cf2482015-05-28 18:41:37 +02003198{
Eric Auger4397f322017-01-19 20:57:54 +00003199 struct iommu_resv_region *region;
Joerg Roedel35cf2482015-05-28 18:41:37 +02003200 struct unity_map_entry *entry;
Wan Zongshun7aba6cb2016-04-01 09:06:02 -04003201 int devid;
Joerg Roedel35cf2482015-05-28 18:41:37 +02003202
3203 devid = get_device_id(dev);
Joerg Roedel9ee35e42016-04-21 18:21:31 +02003204 if (devid < 0)
Wan Zongshun7aba6cb2016-04-01 09:06:02 -04003205 return;
Joerg Roedel35cf2482015-05-28 18:41:37 +02003206
3207 list_for_each_entry(entry, &amd_iommu_unity_map, list) {
Eric Auger4397f322017-01-19 20:57:54 +00003208 size_t length;
3209 int prot = 0;
Joerg Roedel35cf2482015-05-28 18:41:37 +02003210
3211 if (devid < entry->devid_start || devid > entry->devid_end)
3212 continue;
3213
Eric Auger4397f322017-01-19 20:57:54 +00003214 length = entry->address_end - entry->address_start;
3215 if (entry->prot & IOMMU_PROT_IR)
3216 prot |= IOMMU_READ;
3217 if (entry->prot & IOMMU_PROT_IW)
3218 prot |= IOMMU_WRITE;
3219
3220 region = iommu_alloc_resv_region(entry->address_start,
3221 length, prot,
3222 IOMMU_RESV_DIRECT);
Joerg Roedel35cf2482015-05-28 18:41:37 +02003223 if (!region) {
3224 pr_err("Out of memory allocating dm-regions for %s\n",
3225 dev_name(dev));
3226 return;
3227 }
Joerg Roedel35cf2482015-05-28 18:41:37 +02003228 list_add_tail(&region->list, head);
3229 }
Eric Auger4397f322017-01-19 20:57:54 +00003230
3231 region = iommu_alloc_resv_region(MSI_RANGE_START,
3232 MSI_RANGE_END - MSI_RANGE_START + 1,
Robin Murphy9d3a4de2017-03-16 17:00:16 +00003233 0, IOMMU_RESV_MSI);
Eric Auger4397f322017-01-19 20:57:54 +00003234 if (!region)
3235 return;
3236 list_add_tail(&region->list, head);
3237
3238 region = iommu_alloc_resv_region(HT_RANGE_START,
3239 HT_RANGE_END - HT_RANGE_START + 1,
3240 0, IOMMU_RESV_RESERVED);
3241 if (!region)
3242 return;
3243 list_add_tail(&region->list, head);
Joerg Roedel35cf2482015-05-28 18:41:37 +02003244}
3245
Eric Augere5b52342017-01-19 20:57:47 +00003246static void amd_iommu_put_resv_regions(struct device *dev,
Joerg Roedel35cf2482015-05-28 18:41:37 +02003247 struct list_head *head)
3248{
Eric Augere5b52342017-01-19 20:57:47 +00003249 struct iommu_resv_region *entry, *next;
Joerg Roedel35cf2482015-05-28 18:41:37 +02003250
3251 list_for_each_entry_safe(entry, next, head, list)
3252 kfree(entry);
3253}
3254
Eric Augere5b52342017-01-19 20:57:47 +00003255static void amd_iommu_apply_resv_region(struct device *dev,
Joerg Roedel8d54d6c2016-07-05 13:32:20 +02003256 struct iommu_domain *domain,
Eric Augere5b52342017-01-19 20:57:47 +00003257 struct iommu_resv_region *region)
Joerg Roedel8d54d6c2016-07-05 13:32:20 +02003258{
Joerg Roedelb3311b02016-07-08 13:31:31 +02003259 struct dma_ops_domain *dma_dom = to_dma_ops_domain(to_pdomain(domain));
Joerg Roedel8d54d6c2016-07-05 13:32:20 +02003260 unsigned long start, end;
3261
3262 start = IOVA_PFN(region->start);
3263 end = IOVA_PFN(region->start + region->length);
3264
3265 WARN_ON_ONCE(reserve_iova(&dma_dom->iovad, start, end) == NULL);
3266}
3267
Joerg Roedelb0119e82017-02-01 13:23:08 +01003268const struct iommu_ops amd_iommu_ops = {
Joerg Roedelab636482014-09-05 10:48:21 +02003269 .capable = amd_iommu_capable,
Joerg Roedel3f4b87b2015-03-26 13:43:07 +01003270 .domain_alloc = amd_iommu_domain_alloc,
3271 .domain_free = amd_iommu_domain_free,
Joerg Roedel26961ef2008-12-03 17:00:17 +01003272 .attach_dev = amd_iommu_attach_device,
3273 .detach_dev = amd_iommu_detach_device,
Joerg Roedel468e2362010-01-21 16:37:36 +01003274 .map = amd_iommu_map,
3275 .unmap = amd_iommu_unmap,
Olav Haugan315786e2014-10-25 09:55:16 -07003276 .map_sg = default_iommu_map_sg,
Joerg Roedel26961ef2008-12-03 17:00:17 +01003277 .iova_to_phys = amd_iommu_iova_to_phys,
Joerg Roedelaafd8ba2015-05-28 18:41:39 +02003278 .add_device = amd_iommu_add_device,
3279 .remove_device = amd_iommu_remove_device,
Wan Zongshunb097d112016-04-01 09:06:04 -04003280 .device_group = amd_iommu_device_group,
Eric Augere5b52342017-01-19 20:57:47 +00003281 .get_resv_regions = amd_iommu_get_resv_regions,
3282 .put_resv_regions = amd_iommu_put_resv_regions,
3283 .apply_resv_region = amd_iommu_apply_resv_region,
Ohad Ben-Cohenaa3de9c2011-11-10 11:32:29 +02003284 .pgsize_bitmap = AMD_IOMMU_PGSIZES,
Joerg Roedel26961ef2008-12-03 17:00:17 +01003285};
3286
Joerg Roedel0feae532009-08-26 15:26:30 +02003287/*****************************************************************************
3288 *
3289 * The next functions do a basic initialization of IOMMU for pass through
3290 * mode
3291 *
3292 * In passthrough mode the IOMMU is initialized and enabled but not used for
3293 * DMA-API translation.
3294 *
3295 *****************************************************************************/
3296
Joerg Roedel72e1dcc2011-11-10 19:13:51 +01003297/* IOMMUv2 specific functions */
3298int amd_iommu_register_ppr_notifier(struct notifier_block *nb)
3299{
3300 return atomic_notifier_chain_register(&ppr_notifier, nb);
3301}
3302EXPORT_SYMBOL(amd_iommu_register_ppr_notifier);
3303
3304int amd_iommu_unregister_ppr_notifier(struct notifier_block *nb)
3305{
3306 return atomic_notifier_chain_unregister(&ppr_notifier, nb);
3307}
3308EXPORT_SYMBOL(amd_iommu_unregister_ppr_notifier);
Joerg Roedel132bd682011-11-17 14:18:46 +01003309
3310void amd_iommu_domain_direct_map(struct iommu_domain *dom)
3311{
Joerg Roedel3f4b87b2015-03-26 13:43:07 +01003312 struct protection_domain *domain = to_pdomain(dom);
Joerg Roedel132bd682011-11-17 14:18:46 +01003313 unsigned long flags;
3314
3315 spin_lock_irqsave(&domain->lock, flags);
3316
3317 /* Update data structure */
3318 domain->mode = PAGE_MODE_NONE;
3319 domain->updated = true;
3320
3321 /* Make changes visible to IOMMUs */
3322 update_domain(domain);
3323
3324 /* Page-table is not visible to IOMMU anymore, so free it */
3325 free_pagetable(domain);
3326
3327 spin_unlock_irqrestore(&domain->lock, flags);
3328}
3329EXPORT_SYMBOL(amd_iommu_domain_direct_map);
Joerg Roedel52815b72011-11-17 17:24:28 +01003330
3331int amd_iommu_domain_enable_v2(struct iommu_domain *dom, int pasids)
3332{
Joerg Roedel3f4b87b2015-03-26 13:43:07 +01003333 struct protection_domain *domain = to_pdomain(dom);
Joerg Roedel52815b72011-11-17 17:24:28 +01003334 unsigned long flags;
3335 int levels, ret;
3336
3337 if (pasids <= 0 || pasids > (PASID_MASK + 1))
3338 return -EINVAL;
3339
3340 /* Number of GCR3 table levels required */
3341 for (levels = 0; (pasids - 1) & ~0x1ff; pasids >>= 9)
3342 levels += 1;
3343
3344 if (levels > amd_iommu_max_glx_val)
3345 return -EINVAL;
3346
3347 spin_lock_irqsave(&domain->lock, flags);
3348
3349 /*
3350 * Save us all sanity checks whether devices already in the
3351 * domain support IOMMUv2. Just force that the domain has no
3352 * devices attached when it is switched into IOMMUv2 mode.
3353 */
3354 ret = -EBUSY;
3355 if (domain->dev_cnt > 0 || domain->flags & PD_IOMMUV2_MASK)
3356 goto out;
3357
3358 ret = -ENOMEM;
3359 domain->gcr3_tbl = (void *)get_zeroed_page(GFP_ATOMIC);
3360 if (domain->gcr3_tbl == NULL)
3361 goto out;
3362
3363 domain->glx = levels;
3364 domain->flags |= PD_IOMMUV2_MASK;
3365 domain->updated = true;
3366
3367 update_domain(domain);
3368
3369 ret = 0;
3370
3371out:
3372 spin_unlock_irqrestore(&domain->lock, flags);
3373
3374 return ret;
3375}
3376EXPORT_SYMBOL(amd_iommu_domain_enable_v2);
Joerg Roedel22e266c2011-11-21 15:59:08 +01003377
3378static int __flush_pasid(struct protection_domain *domain, int pasid,
3379 u64 address, bool size)
3380{
3381 struct iommu_dev_data *dev_data;
3382 struct iommu_cmd cmd;
3383 int i, ret;
3384
3385 if (!(domain->flags & PD_IOMMUV2_MASK))
3386 return -EINVAL;
3387
3388 build_inv_iommu_pasid(&cmd, domain->id, pasid, address, size);
3389
3390 /*
3391 * IOMMU TLB needs to be flushed before Device TLB to
3392 * prevent device TLB refill from IOMMU TLB
3393 */
Suravee Suthikulpanit6b9376e2017-02-24 02:48:17 -06003394 for (i = 0; i < amd_iommu_get_num_iommus(); ++i) {
Joerg Roedel22e266c2011-11-21 15:59:08 +01003395 if (domain->dev_iommu[i] == 0)
3396 continue;
3397
3398 ret = iommu_queue_command(amd_iommus[i], &cmd);
3399 if (ret != 0)
3400 goto out;
3401 }
3402
3403 /* Wait until IOMMU TLB flushes are complete */
3404 domain_flush_complete(domain);
3405
3406 /* Now flush device TLBs */
3407 list_for_each_entry(dev_data, &domain->dev_list, list) {
3408 struct amd_iommu *iommu;
3409 int qdep;
3410
Joerg Roedel1c1cc452015-07-30 11:24:45 +02003411 /*
3412 There might be non-IOMMUv2 capable devices in an IOMMUv2
3413 * domain.
3414 */
3415 if (!dev_data->ats.enabled)
3416 continue;
Joerg Roedel22e266c2011-11-21 15:59:08 +01003417
3418 qdep = dev_data->ats.qdep;
3419 iommu = amd_iommu_rlookup_table[dev_data->devid];
3420
3421 build_inv_iotlb_pasid(&cmd, dev_data->devid, pasid,
3422 qdep, address, size);
3423
3424 ret = iommu_queue_command(iommu, &cmd);
3425 if (ret != 0)
3426 goto out;
3427 }
3428
3429 /* Wait until all device TLBs are flushed */
3430 domain_flush_complete(domain);
3431
3432 ret = 0;
3433
3434out:
3435
3436 return ret;
3437}
3438
3439static int __amd_iommu_flush_page(struct protection_domain *domain, int pasid,
3440 u64 address)
3441{
3442 return __flush_pasid(domain, pasid, address, false);
3443}
3444
3445int amd_iommu_flush_page(struct iommu_domain *dom, int pasid,
3446 u64 address)
3447{
Joerg Roedel3f4b87b2015-03-26 13:43:07 +01003448 struct protection_domain *domain = to_pdomain(dom);
Joerg Roedel22e266c2011-11-21 15:59:08 +01003449 unsigned long flags;
3450 int ret;
3451
3452 spin_lock_irqsave(&domain->lock, flags);
3453 ret = __amd_iommu_flush_page(domain, pasid, address);
3454 spin_unlock_irqrestore(&domain->lock, flags);
3455
3456 return ret;
3457}
3458EXPORT_SYMBOL(amd_iommu_flush_page);
3459
3460static int __amd_iommu_flush_tlb(struct protection_domain *domain, int pasid)
3461{
3462 return __flush_pasid(domain, pasid, CMD_INV_IOMMU_ALL_PAGES_ADDRESS,
3463 true);
3464}
3465
3466int amd_iommu_flush_tlb(struct iommu_domain *dom, int pasid)
3467{
Joerg Roedel3f4b87b2015-03-26 13:43:07 +01003468 struct protection_domain *domain = to_pdomain(dom);
Joerg Roedel22e266c2011-11-21 15:59:08 +01003469 unsigned long flags;
3470 int ret;
3471
3472 spin_lock_irqsave(&domain->lock, flags);
3473 ret = __amd_iommu_flush_tlb(domain, pasid);
3474 spin_unlock_irqrestore(&domain->lock, flags);
3475
3476 return ret;
3477}
3478EXPORT_SYMBOL(amd_iommu_flush_tlb);
3479
Joerg Roedelb16137b2011-11-21 16:50:23 +01003480static u64 *__get_gcr3_pte(u64 *root, int level, int pasid, bool alloc)
3481{
3482 int index;
3483 u64 *pte;
3484
3485 while (true) {
3486
3487 index = (pasid >> (9 * level)) & 0x1ff;
3488 pte = &root[index];
3489
3490 if (level == 0)
3491 break;
3492
3493 if (!(*pte & GCR3_VALID)) {
3494 if (!alloc)
3495 return NULL;
3496
3497 root = (void *)get_zeroed_page(GFP_ATOMIC);
3498 if (root == NULL)
3499 return NULL;
3500
3501 *pte = __pa(root) | GCR3_VALID;
3502 }
3503
3504 root = __va(*pte & PAGE_MASK);
3505
3506 level -= 1;
3507 }
3508
3509 return pte;
3510}
3511
3512static int __set_gcr3(struct protection_domain *domain, int pasid,
3513 unsigned long cr3)
3514{
3515 u64 *pte;
3516
3517 if (domain->mode != PAGE_MODE_NONE)
3518 return -EINVAL;
3519
3520 pte = __get_gcr3_pte(domain->gcr3_tbl, domain->glx, pasid, true);
3521 if (pte == NULL)
3522 return -ENOMEM;
3523
3524 *pte = (cr3 & PAGE_MASK) | GCR3_VALID;
3525
3526 return __amd_iommu_flush_tlb(domain, pasid);
3527}
3528
3529static int __clear_gcr3(struct protection_domain *domain, int pasid)
3530{
3531 u64 *pte;
3532
3533 if (domain->mode != PAGE_MODE_NONE)
3534 return -EINVAL;
3535
3536 pte = __get_gcr3_pte(domain->gcr3_tbl, domain->glx, pasid, false);
3537 if (pte == NULL)
3538 return 0;
3539
3540 *pte = 0;
3541
3542 return __amd_iommu_flush_tlb(domain, pasid);
3543}
3544
3545int amd_iommu_domain_set_gcr3(struct iommu_domain *dom, int pasid,
3546 unsigned long cr3)
3547{
Joerg Roedel3f4b87b2015-03-26 13:43:07 +01003548 struct protection_domain *domain = to_pdomain(dom);
Joerg Roedelb16137b2011-11-21 16:50:23 +01003549 unsigned long flags;
3550 int ret;
3551
3552 spin_lock_irqsave(&domain->lock, flags);
3553 ret = __set_gcr3(domain, pasid, cr3);
3554 spin_unlock_irqrestore(&domain->lock, flags);
3555
3556 return ret;
3557}
3558EXPORT_SYMBOL(amd_iommu_domain_set_gcr3);
3559
3560int amd_iommu_domain_clear_gcr3(struct iommu_domain *dom, int pasid)
3561{
Joerg Roedel3f4b87b2015-03-26 13:43:07 +01003562 struct protection_domain *domain = to_pdomain(dom);
Joerg Roedelb16137b2011-11-21 16:50:23 +01003563 unsigned long flags;
3564 int ret;
3565
3566 spin_lock_irqsave(&domain->lock, flags);
3567 ret = __clear_gcr3(domain, pasid);
3568 spin_unlock_irqrestore(&domain->lock, flags);
3569
3570 return ret;
3571}
3572EXPORT_SYMBOL(amd_iommu_domain_clear_gcr3);
Joerg Roedelc99afa22011-11-21 18:19:25 +01003573
3574int amd_iommu_complete_ppr(struct pci_dev *pdev, int pasid,
3575 int status, int tag)
3576{
3577 struct iommu_dev_data *dev_data;
3578 struct amd_iommu *iommu;
3579 struct iommu_cmd cmd;
3580
3581 dev_data = get_dev_data(&pdev->dev);
3582 iommu = amd_iommu_rlookup_table[dev_data->devid];
3583
3584 build_complete_ppr(&cmd, dev_data->devid, pasid, status,
3585 tag, dev_data->pri_tlp);
3586
3587 return iommu_queue_command(iommu, &cmd);
3588}
3589EXPORT_SYMBOL(amd_iommu_complete_ppr);
Joerg Roedelf3572db2011-11-23 12:36:25 +01003590
3591struct iommu_domain *amd_iommu_get_v2_domain(struct pci_dev *pdev)
3592{
Joerg Roedel3f4b87b2015-03-26 13:43:07 +01003593 struct protection_domain *pdomain;
Joerg Roedelf3572db2011-11-23 12:36:25 +01003594
Joerg Roedel3f4b87b2015-03-26 13:43:07 +01003595 pdomain = get_domain(&pdev->dev);
3596 if (IS_ERR(pdomain))
Joerg Roedelf3572db2011-11-23 12:36:25 +01003597 return NULL;
3598
3599 /* Only return IOMMUv2 domains */
Joerg Roedel3f4b87b2015-03-26 13:43:07 +01003600 if (!(pdomain->flags & PD_IOMMUV2_MASK))
Joerg Roedelf3572db2011-11-23 12:36:25 +01003601 return NULL;
3602
Joerg Roedel3f4b87b2015-03-26 13:43:07 +01003603 return &pdomain->domain;
Joerg Roedelf3572db2011-11-23 12:36:25 +01003604}
3605EXPORT_SYMBOL(amd_iommu_get_v2_domain);
Joerg Roedel6a113dd2011-12-01 12:04:58 +01003606
3607void amd_iommu_enable_device_erratum(struct pci_dev *pdev, u32 erratum)
3608{
3609 struct iommu_dev_data *dev_data;
3610
3611 if (!amd_iommu_v2_supported())
3612 return;
3613
3614 dev_data = get_dev_data(&pdev->dev);
3615 dev_data->errata |= (1 << erratum);
3616}
3617EXPORT_SYMBOL(amd_iommu_enable_device_erratum);
Joerg Roedel52efdb82011-12-07 12:01:36 +01003618
3619int amd_iommu_device_info(struct pci_dev *pdev,
3620 struct amd_iommu_device_info *info)
3621{
3622 int max_pasids;
3623 int pos;
3624
3625 if (pdev == NULL || info == NULL)
3626 return -EINVAL;
3627
3628 if (!amd_iommu_v2_supported())
3629 return -EINVAL;
3630
3631 memset(info, 0, sizeof(*info));
3632
3633 pos = pci_find_ext_capability(pdev, PCI_EXT_CAP_ID_ATS);
3634 if (pos)
3635 info->flags |= AMD_IOMMU_DEVICE_FLAG_ATS_SUP;
3636
3637 pos = pci_find_ext_capability(pdev, PCI_EXT_CAP_ID_PRI);
3638 if (pos)
3639 info->flags |= AMD_IOMMU_DEVICE_FLAG_PRI_SUP;
3640
3641 pos = pci_find_ext_capability(pdev, PCI_EXT_CAP_ID_PASID);
3642 if (pos) {
3643 int features;
3644
3645 max_pasids = 1 << (9 * (amd_iommu_max_glx_val + 1));
3646 max_pasids = min(max_pasids, (1 << 20));
3647
3648 info->flags |= AMD_IOMMU_DEVICE_FLAG_PASID_SUP;
3649 info->max_pasids = min(pci_max_pasids(pdev), max_pasids);
3650
3651 features = pci_pasid_features(pdev);
3652 if (features & PCI_PASID_CAP_EXEC)
3653 info->flags |= AMD_IOMMU_DEVICE_FLAG_EXEC_SUP;
3654 if (features & PCI_PASID_CAP_PRIV)
3655 info->flags |= AMD_IOMMU_DEVICE_FLAG_PRIV_SUP;
3656 }
3657
3658 return 0;
3659}
3660EXPORT_SYMBOL(amd_iommu_device_info);
Joerg Roedel2b324502012-06-21 16:29:10 +02003661
3662#ifdef CONFIG_IRQ_REMAP
3663
3664/*****************************************************************************
3665 *
3666 * Interrupt Remapping Implementation
3667 *
3668 *****************************************************************************/
3669
Jiang Liu7c71d302015-04-13 14:11:33 +08003670static struct irq_chip amd_ir_chip;
3671
Joerg Roedel2b324502012-06-21 16:29:10 +02003672#define DTE_IRQ_PHYS_ADDR_MASK (((1ULL << 45)-1) << 6)
3673#define DTE_IRQ_REMAP_INTCTL (2ULL << 60)
3674#define DTE_IRQ_TABLE_LEN (8ULL << 1)
3675#define DTE_IRQ_REMAP_ENABLE 1ULL
3676
3677static void set_dte_irq_entry(u16 devid, struct irq_remap_table *table)
3678{
3679 u64 dte;
3680
3681 dte = amd_iommu_dev_table[devid].data[2];
3682 dte &= ~DTE_IRQ_PHYS_ADDR_MASK;
3683 dte |= virt_to_phys(table->table);
3684 dte |= DTE_IRQ_REMAP_INTCTL;
3685 dte |= DTE_IRQ_TABLE_LEN;
3686 dte |= DTE_IRQ_REMAP_ENABLE;
3687
3688 amd_iommu_dev_table[devid].data[2] = dte;
3689}
3690
Joerg Roedel2b324502012-06-21 16:29:10 +02003691static struct irq_remap_table *get_irq_table(u16 devid, bool ioapic)
3692{
3693 struct irq_remap_table *table = NULL;
3694 struct amd_iommu *iommu;
3695 unsigned long flags;
3696 u16 alias;
3697
3698 write_lock_irqsave(&amd_iommu_devtable_lock, flags);
3699
3700 iommu = amd_iommu_rlookup_table[devid];
3701 if (!iommu)
3702 goto out_unlock;
3703
3704 table = irq_lookup_table[devid];
3705 if (table)
Baoquan He09284b92016-09-20 09:05:34 +08003706 goto out_unlock;
Joerg Roedel2b324502012-06-21 16:29:10 +02003707
3708 alias = amd_iommu_alias_table[devid];
3709 table = irq_lookup_table[alias];
3710 if (table) {
3711 irq_lookup_table[devid] = table;
3712 set_dte_irq_entry(devid, table);
3713 iommu_flush_dte(iommu, devid);
3714 goto out;
3715 }
3716
3717 /* Nothing there yet, allocate new irq remapping table */
3718 table = kzalloc(sizeof(*table), GFP_ATOMIC);
3719 if (!table)
Baoquan He09284b92016-09-20 09:05:34 +08003720 goto out_unlock;
Joerg Roedel2b324502012-06-21 16:29:10 +02003721
Joerg Roedel197887f2013-04-09 21:14:08 +02003722 /* Initialize table spin-lock */
3723 spin_lock_init(&table->lock);
3724
Joerg Roedel2b324502012-06-21 16:29:10 +02003725 if (ioapic)
3726 /* Keep the first 32 indexes free for IOAPIC interrupts */
3727 table->min_index = 32;
3728
3729 table->table = kmem_cache_alloc(amd_iommu_irq_cache, GFP_ATOMIC);
3730 if (!table->table) {
3731 kfree(table);
Dan Carpenter821f0f62012-10-02 11:34:40 +03003732 table = NULL;
Baoquan He09284b92016-09-20 09:05:34 +08003733 goto out_unlock;
Joerg Roedel2b324502012-06-21 16:29:10 +02003734 }
3735
Suravee Suthikulpanit77bdab42016-08-23 13:52:35 -05003736 if (!AMD_IOMMU_GUEST_IR_GA(amd_iommu_guest_ir))
3737 memset(table->table, 0,
3738 MAX_IRQS_PER_TABLE * sizeof(u32));
3739 else
3740 memset(table->table, 0,
3741 (MAX_IRQS_PER_TABLE * (sizeof(u64) * 2)));
Joerg Roedel2b324502012-06-21 16:29:10 +02003742
3743 if (ioapic) {
3744 int i;
3745
3746 for (i = 0; i < 32; ++i)
Suravee Suthikulpanit77bdab42016-08-23 13:52:35 -05003747 iommu->irte_ops->set_allocated(table, i);
Joerg Roedel2b324502012-06-21 16:29:10 +02003748 }
3749
3750 irq_lookup_table[devid] = table;
3751 set_dte_irq_entry(devid, table);
3752 iommu_flush_dte(iommu, devid);
3753 if (devid != alias) {
3754 irq_lookup_table[alias] = table;
Alex Williamsone028a9e2014-04-22 10:08:40 -06003755 set_dte_irq_entry(alias, table);
Joerg Roedel2b324502012-06-21 16:29:10 +02003756 iommu_flush_dte(iommu, alias);
3757 }
3758
3759out:
3760 iommu_completion_wait(iommu);
3761
3762out_unlock:
3763 write_unlock_irqrestore(&amd_iommu_devtable_lock, flags);
3764
3765 return table;
3766}
3767
Jiang Liu3c3d4f92015-04-13 14:11:38 +08003768static int alloc_irq_index(u16 devid, int count)
Joerg Roedel2b324502012-06-21 16:29:10 +02003769{
3770 struct irq_remap_table *table;
3771 unsigned long flags;
3772 int index, c;
Suravee Suthikulpanit77bdab42016-08-23 13:52:35 -05003773 struct amd_iommu *iommu = amd_iommu_rlookup_table[devid];
3774
3775 if (!iommu)
3776 return -ENODEV;
Joerg Roedel2b324502012-06-21 16:29:10 +02003777
3778 table = get_irq_table(devid, false);
3779 if (!table)
3780 return -ENODEV;
3781
3782 spin_lock_irqsave(&table->lock, flags);
3783
3784 /* Scan table for free entries */
3785 for (c = 0, index = table->min_index;
3786 index < MAX_IRQS_PER_TABLE;
3787 ++index) {
Suravee Suthikulpanit77bdab42016-08-23 13:52:35 -05003788 if (!iommu->irte_ops->is_allocated(table, index))
Joerg Roedel2b324502012-06-21 16:29:10 +02003789 c += 1;
3790 else
3791 c = 0;
3792
3793 if (c == count) {
Joerg Roedel2b324502012-06-21 16:29:10 +02003794 for (; c != 0; --c)
Suravee Suthikulpanit77bdab42016-08-23 13:52:35 -05003795 iommu->irte_ops->set_allocated(table, index - c + 1);
Joerg Roedel2b324502012-06-21 16:29:10 +02003796
3797 index -= count - 1;
Joerg Roedel2b324502012-06-21 16:29:10 +02003798 goto out;
3799 }
3800 }
3801
3802 index = -ENOSPC;
3803
3804out:
3805 spin_unlock_irqrestore(&table->lock, flags);
3806
3807 return index;
3808}
3809
Suravee Suthikulpanitb9fc6b52016-08-23 13:52:39 -05003810static int modify_irte_ga(u16 devid, int index, struct irte_ga *irte,
3811 struct amd_ir_data *data)
Suravee Suthikulpanit880ac602016-08-23 13:52:34 -05003812{
3813 struct irq_remap_table *table;
3814 struct amd_iommu *iommu;
3815 unsigned long flags;
3816 struct irte_ga *entry;
3817
3818 iommu = amd_iommu_rlookup_table[devid];
3819 if (iommu == NULL)
3820 return -EINVAL;
3821
3822 table = get_irq_table(devid, false);
3823 if (!table)
3824 return -ENOMEM;
3825
3826 spin_lock_irqsave(&table->lock, flags);
3827
3828 entry = (struct irte_ga *)table->table;
3829 entry = &entry[index];
3830 entry->lo.fields_remap.valid = 0;
3831 entry->hi.val = irte->hi.val;
3832 entry->lo.val = irte->lo.val;
3833 entry->lo.fields_remap.valid = 1;
Suravee Suthikulpanitb9fc6b52016-08-23 13:52:39 -05003834 if (data)
3835 data->ref = entry;
Suravee Suthikulpanit880ac602016-08-23 13:52:34 -05003836
3837 spin_unlock_irqrestore(&table->lock, flags);
3838
3839 iommu_flush_irt(iommu, devid);
3840 iommu_completion_wait(iommu);
3841
3842 return 0;
3843}
3844
3845static int modify_irte(u16 devid, int index, union irte *irte)
Joerg Roedel2b324502012-06-21 16:29:10 +02003846{
3847 struct irq_remap_table *table;
3848 struct amd_iommu *iommu;
3849 unsigned long flags;
3850
3851 iommu = amd_iommu_rlookup_table[devid];
3852 if (iommu == NULL)
3853 return -EINVAL;
3854
3855 table = get_irq_table(devid, false);
3856 if (!table)
3857 return -ENOMEM;
3858
3859 spin_lock_irqsave(&table->lock, flags);
Suravee Suthikulpanit880ac602016-08-23 13:52:34 -05003860 table->table[index] = irte->val;
Joerg Roedel2b324502012-06-21 16:29:10 +02003861 spin_unlock_irqrestore(&table->lock, flags);
3862
3863 iommu_flush_irt(iommu, devid);
3864 iommu_completion_wait(iommu);
3865
3866 return 0;
3867}
3868
3869static void free_irte(u16 devid, int index)
3870{
3871 struct irq_remap_table *table;
3872 struct amd_iommu *iommu;
3873 unsigned long flags;
3874
3875 iommu = amd_iommu_rlookup_table[devid];
3876 if (iommu == NULL)
3877 return;
3878
3879 table = get_irq_table(devid, false);
3880 if (!table)
3881 return;
3882
3883 spin_lock_irqsave(&table->lock, flags);
Suravee Suthikulpanit77bdab42016-08-23 13:52:35 -05003884 iommu->irte_ops->clear_allocated(table, index);
Joerg Roedel2b324502012-06-21 16:29:10 +02003885 spin_unlock_irqrestore(&table->lock, flags);
3886
3887 iommu_flush_irt(iommu, devid);
3888 iommu_completion_wait(iommu);
3889}
3890
Suravee Suthikulpanit880ac602016-08-23 13:52:34 -05003891static void irte_prepare(void *entry,
3892 u32 delivery_mode, u32 dest_mode,
Suravee Suthikulpanitd98de492016-08-23 13:52:40 -05003893 u8 vector, u32 dest_apicid, int devid)
Suravee Suthikulpanit880ac602016-08-23 13:52:34 -05003894{
3895 union irte *irte = (union irte *) entry;
3896
3897 irte->val = 0;
3898 irte->fields.vector = vector;
3899 irte->fields.int_type = delivery_mode;
3900 irte->fields.destination = dest_apicid;
3901 irte->fields.dm = dest_mode;
3902 irte->fields.valid = 1;
3903}
3904
3905static void irte_ga_prepare(void *entry,
3906 u32 delivery_mode, u32 dest_mode,
Suravee Suthikulpanitd98de492016-08-23 13:52:40 -05003907 u8 vector, u32 dest_apicid, int devid)
Suravee Suthikulpanit880ac602016-08-23 13:52:34 -05003908{
3909 struct irte_ga *irte = (struct irte_ga *) entry;
Suravee Suthikulpanitd98de492016-08-23 13:52:40 -05003910 struct iommu_dev_data *dev_data = search_dev_data(devid);
Suravee Suthikulpanit880ac602016-08-23 13:52:34 -05003911
3912 irte->lo.val = 0;
3913 irte->hi.val = 0;
Suravee Suthikulpanitd98de492016-08-23 13:52:40 -05003914 irte->lo.fields_remap.guest_mode = dev_data ? dev_data->use_vapic : 0;
Suravee Suthikulpanit880ac602016-08-23 13:52:34 -05003915 irte->lo.fields_remap.int_type = delivery_mode;
3916 irte->lo.fields_remap.dm = dest_mode;
3917 irte->hi.fields.vector = vector;
3918 irte->lo.fields_remap.destination = dest_apicid;
3919 irte->lo.fields_remap.valid = 1;
3920}
3921
3922static void irte_activate(void *entry, u16 devid, u16 index)
3923{
3924 union irte *irte = (union irte *) entry;
3925
3926 irte->fields.valid = 1;
3927 modify_irte(devid, index, irte);
3928}
3929
3930static void irte_ga_activate(void *entry, u16 devid, u16 index)
3931{
3932 struct irte_ga *irte = (struct irte_ga *) entry;
3933
3934 irte->lo.fields_remap.valid = 1;
Suravee Suthikulpanitb9fc6b52016-08-23 13:52:39 -05003935 modify_irte_ga(devid, index, irte, NULL);
Suravee Suthikulpanit880ac602016-08-23 13:52:34 -05003936}
3937
3938static void irte_deactivate(void *entry, u16 devid, u16 index)
3939{
3940 union irte *irte = (union irte *) entry;
3941
3942 irte->fields.valid = 0;
3943 modify_irte(devid, index, irte);
3944}
3945
3946static void irte_ga_deactivate(void *entry, u16 devid, u16 index)
3947{
3948 struct irte_ga *irte = (struct irte_ga *) entry;
3949
3950 irte->lo.fields_remap.valid = 0;
Suravee Suthikulpanitb9fc6b52016-08-23 13:52:39 -05003951 modify_irte_ga(devid, index, irte, NULL);
Suravee Suthikulpanit880ac602016-08-23 13:52:34 -05003952}
3953
3954static void irte_set_affinity(void *entry, u16 devid, u16 index,
3955 u8 vector, u32 dest_apicid)
3956{
3957 union irte *irte = (union irte *) entry;
3958
3959 irte->fields.vector = vector;
3960 irte->fields.destination = dest_apicid;
3961 modify_irte(devid, index, irte);
3962}
3963
3964static void irte_ga_set_affinity(void *entry, u16 devid, u16 index,
3965 u8 vector, u32 dest_apicid)
3966{
3967 struct irte_ga *irte = (struct irte_ga *) entry;
Suravee Suthikulpanitd98de492016-08-23 13:52:40 -05003968 struct iommu_dev_data *dev_data = search_dev_data(devid);
Suravee Suthikulpanit880ac602016-08-23 13:52:34 -05003969
Suravee Suthikulpanitd98de492016-08-23 13:52:40 -05003970 if (!dev_data || !dev_data->use_vapic) {
3971 irte->hi.fields.vector = vector;
3972 irte->lo.fields_remap.destination = dest_apicid;
3973 irte->lo.fields_remap.guest_mode = 0;
3974 modify_irte_ga(devid, index, irte, NULL);
3975 }
Suravee Suthikulpanit880ac602016-08-23 13:52:34 -05003976}
3977
Suravee Suthikulpanit77bdab42016-08-23 13:52:35 -05003978#define IRTE_ALLOCATED (~1U)
Suravee Suthikulpanit880ac602016-08-23 13:52:34 -05003979static void irte_set_allocated(struct irq_remap_table *table, int index)
3980{
3981 table->table[index] = IRTE_ALLOCATED;
3982}
3983
3984static void irte_ga_set_allocated(struct irq_remap_table *table, int index)
3985{
3986 struct irte_ga *ptr = (struct irte_ga *)table->table;
3987 struct irte_ga *irte = &ptr[index];
3988
3989 memset(&irte->lo.val, 0, sizeof(u64));
3990 memset(&irte->hi.val, 0, sizeof(u64));
3991 irte->hi.fields.vector = 0xff;
3992}
3993
3994static bool irte_is_allocated(struct irq_remap_table *table, int index)
3995{
3996 union irte *ptr = (union irte *)table->table;
3997 union irte *irte = &ptr[index];
3998
3999 return irte->val != 0;
4000}
4001
4002static bool irte_ga_is_allocated(struct irq_remap_table *table, int index)
4003{
4004 struct irte_ga *ptr = (struct irte_ga *)table->table;
4005 struct irte_ga *irte = &ptr[index];
4006
4007 return irte->hi.fields.vector != 0;
4008}
4009
4010static void irte_clear_allocated(struct irq_remap_table *table, int index)
4011{
4012 table->table[index] = 0;
4013}
4014
4015static void irte_ga_clear_allocated(struct irq_remap_table *table, int index)
4016{
4017 struct irte_ga *ptr = (struct irte_ga *)table->table;
4018 struct irte_ga *irte = &ptr[index];
4019
4020 memset(&irte->lo.val, 0, sizeof(u64));
4021 memset(&irte->hi.val, 0, sizeof(u64));
4022}
4023
Jiang Liu7c71d302015-04-13 14:11:33 +08004024static int get_devid(struct irq_alloc_info *info)
Joerg Roedel5527de72012-06-26 11:17:32 +02004025{
Jiang Liu7c71d302015-04-13 14:11:33 +08004026 int devid = -1;
Joerg Roedel5527de72012-06-26 11:17:32 +02004027
Jiang Liu7c71d302015-04-13 14:11:33 +08004028 switch (info->type) {
4029 case X86_IRQ_ALLOC_TYPE_IOAPIC:
4030 devid = get_ioapic_devid(info->ioapic_id);
4031 break;
4032 case X86_IRQ_ALLOC_TYPE_HPET:
4033 devid = get_hpet_devid(info->hpet_id);
4034 break;
4035 case X86_IRQ_ALLOC_TYPE_MSI:
4036 case X86_IRQ_ALLOC_TYPE_MSIX:
4037 devid = get_device_id(&info->msi_dev->dev);
4038 break;
4039 default:
4040 BUG_ON(1);
4041 break;
Joerg Roedel5527de72012-06-26 11:17:32 +02004042 }
4043
Jiang Liu7c71d302015-04-13 14:11:33 +08004044 return devid;
Joerg Roedel5527de72012-06-26 11:17:32 +02004045}
4046
Jiang Liu7c71d302015-04-13 14:11:33 +08004047static struct irq_domain *get_ir_irq_domain(struct irq_alloc_info *info)
Joerg Roedel5527de72012-06-26 11:17:32 +02004048{
Jiang Liu7c71d302015-04-13 14:11:33 +08004049 struct amd_iommu *iommu;
4050 int devid;
Joerg Roedel5527de72012-06-26 11:17:32 +02004051
Jiang Liu7c71d302015-04-13 14:11:33 +08004052 if (!info)
4053 return NULL;
Joerg Roedel5527de72012-06-26 11:17:32 +02004054
Jiang Liu7c71d302015-04-13 14:11:33 +08004055 devid = get_devid(info);
4056 if (devid >= 0) {
4057 iommu = amd_iommu_rlookup_table[devid];
4058 if (iommu)
4059 return iommu->ir_domain;
4060 }
Joerg Roedel5527de72012-06-26 11:17:32 +02004061
Jiang Liu7c71d302015-04-13 14:11:33 +08004062 return NULL;
Joerg Roedel5527de72012-06-26 11:17:32 +02004063}
4064
Jiang Liu7c71d302015-04-13 14:11:33 +08004065static struct irq_domain *get_irq_domain(struct irq_alloc_info *info)
Joerg Roedel0b4d48c2012-06-26 14:54:17 +02004066{
Jiang Liu7c71d302015-04-13 14:11:33 +08004067 struct amd_iommu *iommu;
4068 int devid;
Joerg Roedel0b4d48c2012-06-26 14:54:17 +02004069
Jiang Liu7c71d302015-04-13 14:11:33 +08004070 if (!info)
4071 return NULL;
Joerg Roedel0b4d48c2012-06-26 14:54:17 +02004072
Jiang Liu7c71d302015-04-13 14:11:33 +08004073 switch (info->type) {
4074 case X86_IRQ_ALLOC_TYPE_MSI:
4075 case X86_IRQ_ALLOC_TYPE_MSIX:
4076 devid = get_device_id(&info->msi_dev->dev);
Joerg Roedel9ee35e42016-04-21 18:21:31 +02004077 if (devid < 0)
Wan Zongshun7aba6cb2016-04-01 09:06:02 -04004078 return NULL;
4079
Dan Carpenter1fb260b2016-01-07 12:36:06 +03004080 iommu = amd_iommu_rlookup_table[devid];
4081 if (iommu)
4082 return iommu->msi_domain;
Jiang Liu7c71d302015-04-13 14:11:33 +08004083 break;
4084 default:
4085 break;
4086 }
Joerg Roedel0b4d48c2012-06-26 14:54:17 +02004087
Jiang Liu7c71d302015-04-13 14:11:33 +08004088 return NULL;
Joerg Roedeld9761952012-06-26 16:00:08 +02004089}
4090
Joerg Roedel6b474b82012-06-26 16:46:04 +02004091struct irq_remap_ops amd_iommu_irq_ops = {
Joerg Roedel6b474b82012-06-26 16:46:04 +02004092 .prepare = amd_iommu_prepare,
4093 .enable = amd_iommu_enable,
4094 .disable = amd_iommu_disable,
4095 .reenable = amd_iommu_reenable,
4096 .enable_faulting = amd_iommu_enable_faulting,
Jiang Liu7c71d302015-04-13 14:11:33 +08004097 .get_ir_irq_domain = get_ir_irq_domain,
4098 .get_irq_domain = get_irq_domain,
Joerg Roedel6b474b82012-06-26 16:46:04 +02004099};
Jiang Liu7c71d302015-04-13 14:11:33 +08004100
4101static void irq_remapping_prepare_irte(struct amd_ir_data *data,
4102 struct irq_cfg *irq_cfg,
4103 struct irq_alloc_info *info,
4104 int devid, int index, int sub_handle)
4105{
4106 struct irq_2_irte *irte_info = &data->irq_2_irte;
4107 struct msi_msg *msg = &data->msi_entry;
Jiang Liu7c71d302015-04-13 14:11:33 +08004108 struct IO_APIC_route_entry *entry;
Suravee Suthikulpanit77bdab42016-08-23 13:52:35 -05004109 struct amd_iommu *iommu = amd_iommu_rlookup_table[devid];
4110
4111 if (!iommu)
4112 return;
Jiang Liu7c71d302015-04-13 14:11:33 +08004113
Jiang Liu7c71d302015-04-13 14:11:33 +08004114 data->irq_2_irte.devid = devid;
4115 data->irq_2_irte.index = index + sub_handle;
Suravee Suthikulpanit77bdab42016-08-23 13:52:35 -05004116 iommu->irte_ops->prepare(data->entry, apic->irq_delivery_mode,
4117 apic->irq_dest_mode, irq_cfg->vector,
Suravee Suthikulpanitd98de492016-08-23 13:52:40 -05004118 irq_cfg->dest_apicid, devid);
Jiang Liu7c71d302015-04-13 14:11:33 +08004119
4120 switch (info->type) {
4121 case X86_IRQ_ALLOC_TYPE_IOAPIC:
4122 /* Setup IOAPIC entry */
4123 entry = info->ioapic_entry;
4124 info->ioapic_entry = NULL;
4125 memset(entry, 0, sizeof(*entry));
4126 entry->vector = index;
4127 entry->mask = 0;
4128 entry->trigger = info->ioapic_trigger;
4129 entry->polarity = info->ioapic_polarity;
4130 /* Mask level triggered irqs. */
4131 if (info->ioapic_trigger)
4132 entry->mask = 1;
4133 break;
4134
4135 case X86_IRQ_ALLOC_TYPE_HPET:
4136 case X86_IRQ_ALLOC_TYPE_MSI:
4137 case X86_IRQ_ALLOC_TYPE_MSIX:
4138 msg->address_hi = MSI_ADDR_BASE_HI;
4139 msg->address_lo = MSI_ADDR_BASE_LO;
4140 msg->data = irte_info->index;
4141 break;
4142
4143 default:
4144 BUG_ON(1);
4145 break;
4146 }
4147}
4148
Suravee Suthikulpanit880ac602016-08-23 13:52:34 -05004149struct amd_irte_ops irte_32_ops = {
4150 .prepare = irte_prepare,
4151 .activate = irte_activate,
4152 .deactivate = irte_deactivate,
4153 .set_affinity = irte_set_affinity,
4154 .set_allocated = irte_set_allocated,
4155 .is_allocated = irte_is_allocated,
4156 .clear_allocated = irte_clear_allocated,
4157};
4158
4159struct amd_irte_ops irte_128_ops = {
4160 .prepare = irte_ga_prepare,
4161 .activate = irte_ga_activate,
4162 .deactivate = irte_ga_deactivate,
4163 .set_affinity = irte_ga_set_affinity,
4164 .set_allocated = irte_ga_set_allocated,
4165 .is_allocated = irte_ga_is_allocated,
4166 .clear_allocated = irte_ga_clear_allocated,
4167};
4168
Jiang Liu7c71d302015-04-13 14:11:33 +08004169static int irq_remapping_alloc(struct irq_domain *domain, unsigned int virq,
4170 unsigned int nr_irqs, void *arg)
4171{
4172 struct irq_alloc_info *info = arg;
4173 struct irq_data *irq_data;
Suravee Suthikulpanit77bdab42016-08-23 13:52:35 -05004174 struct amd_ir_data *data = NULL;
Jiang Liu7c71d302015-04-13 14:11:33 +08004175 struct irq_cfg *cfg;
4176 int i, ret, devid;
4177 int index = -1;
4178
4179 if (!info)
4180 return -EINVAL;
4181 if (nr_irqs > 1 && info->type != X86_IRQ_ALLOC_TYPE_MSI &&
4182 info->type != X86_IRQ_ALLOC_TYPE_MSIX)
4183 return -EINVAL;
4184
4185 /*
4186 * With IRQ remapping enabled, don't need contiguous CPU vectors
4187 * to support multiple MSI interrupts.
4188 */
4189 if (info->type == X86_IRQ_ALLOC_TYPE_MSI)
4190 info->flags &= ~X86_IRQ_ALLOC_CONTIGUOUS_VECTORS;
4191
4192 devid = get_devid(info);
4193 if (devid < 0)
4194 return -EINVAL;
4195
4196 ret = irq_domain_alloc_irqs_parent(domain, virq, nr_irqs, arg);
4197 if (ret < 0)
4198 return ret;
4199
Jiang Liu7c71d302015-04-13 14:11:33 +08004200 if (info->type == X86_IRQ_ALLOC_TYPE_IOAPIC) {
4201 if (get_irq_table(devid, true))
4202 index = info->ioapic_pin;
4203 else
4204 ret = -ENOMEM;
4205 } else {
Jiang Liu3c3d4f92015-04-13 14:11:38 +08004206 index = alloc_irq_index(devid, nr_irqs);
Jiang Liu7c71d302015-04-13 14:11:33 +08004207 }
4208 if (index < 0) {
4209 pr_warn("Failed to allocate IRTE\n");
Wei Yongjun517abe42016-07-28 02:10:26 +00004210 ret = index;
Jiang Liu7c71d302015-04-13 14:11:33 +08004211 goto out_free_parent;
4212 }
4213
4214 for (i = 0; i < nr_irqs; i++) {
4215 irq_data = irq_domain_get_irq_data(domain, virq + i);
4216 cfg = irqd_cfg(irq_data);
4217 if (!irq_data || !cfg) {
4218 ret = -EINVAL;
4219 goto out_free_data;
4220 }
4221
Joerg Roedela130e692015-08-13 11:07:25 +02004222 ret = -ENOMEM;
4223 data = kzalloc(sizeof(*data), GFP_KERNEL);
4224 if (!data)
4225 goto out_free_data;
4226
Suravee Suthikulpanit77bdab42016-08-23 13:52:35 -05004227 if (!AMD_IOMMU_GUEST_IR_GA(amd_iommu_guest_ir))
4228 data->entry = kzalloc(sizeof(union irte), GFP_KERNEL);
4229 else
4230 data->entry = kzalloc(sizeof(struct irte_ga),
4231 GFP_KERNEL);
4232 if (!data->entry) {
4233 kfree(data);
4234 goto out_free_data;
4235 }
4236
Jiang Liu7c71d302015-04-13 14:11:33 +08004237 irq_data->hwirq = (devid << 16) + i;
4238 irq_data->chip_data = data;
4239 irq_data->chip = &amd_ir_chip;
4240 irq_remapping_prepare_irte(data, cfg, info, devid, index, i);
4241 irq_set_status_flags(virq + i, IRQ_MOVE_PCNTXT);
4242 }
Joerg Roedela130e692015-08-13 11:07:25 +02004243
Jiang Liu7c71d302015-04-13 14:11:33 +08004244 return 0;
4245
4246out_free_data:
4247 for (i--; i >= 0; i--) {
4248 irq_data = irq_domain_get_irq_data(domain, virq + i);
4249 if (irq_data)
4250 kfree(irq_data->chip_data);
4251 }
4252 for (i = 0; i < nr_irqs; i++)
4253 free_irte(devid, index + i);
4254out_free_parent:
4255 irq_domain_free_irqs_common(domain, virq, nr_irqs);
4256 return ret;
4257}
4258
4259static void irq_remapping_free(struct irq_domain *domain, unsigned int virq,
4260 unsigned int nr_irqs)
4261{
4262 struct irq_2_irte *irte_info;
4263 struct irq_data *irq_data;
4264 struct amd_ir_data *data;
4265 int i;
4266
4267 for (i = 0; i < nr_irqs; i++) {
4268 irq_data = irq_domain_get_irq_data(domain, virq + i);
4269 if (irq_data && irq_data->chip_data) {
4270 data = irq_data->chip_data;
4271 irte_info = &data->irq_2_irte;
4272 free_irte(irte_info->devid, irte_info->index);
Suravee Suthikulpanit77bdab42016-08-23 13:52:35 -05004273 kfree(data->entry);
Jiang Liu7c71d302015-04-13 14:11:33 +08004274 kfree(data);
4275 }
4276 }
4277 irq_domain_free_irqs_common(domain, virq, nr_irqs);
4278}
4279
4280static void irq_remapping_activate(struct irq_domain *domain,
4281 struct irq_data *irq_data)
4282{
4283 struct amd_ir_data *data = irq_data->chip_data;
4284 struct irq_2_irte *irte_info = &data->irq_2_irte;
Suravee Suthikulpanit77bdab42016-08-23 13:52:35 -05004285 struct amd_iommu *iommu = amd_iommu_rlookup_table[irte_info->devid];
Jiang Liu7c71d302015-04-13 14:11:33 +08004286
Suravee Suthikulpanit77bdab42016-08-23 13:52:35 -05004287 if (iommu)
4288 iommu->irte_ops->activate(data->entry, irte_info->devid,
4289 irte_info->index);
Jiang Liu7c71d302015-04-13 14:11:33 +08004290}
4291
4292static void irq_remapping_deactivate(struct irq_domain *domain,
4293 struct irq_data *irq_data)
4294{
4295 struct amd_ir_data *data = irq_data->chip_data;
4296 struct irq_2_irte *irte_info = &data->irq_2_irte;
Suravee Suthikulpanit77bdab42016-08-23 13:52:35 -05004297 struct amd_iommu *iommu = amd_iommu_rlookup_table[irte_info->devid];
Jiang Liu7c71d302015-04-13 14:11:33 +08004298
Suravee Suthikulpanit77bdab42016-08-23 13:52:35 -05004299 if (iommu)
4300 iommu->irte_ops->deactivate(data->entry, irte_info->devid,
4301 irte_info->index);
Jiang Liu7c71d302015-04-13 14:11:33 +08004302}
4303
Tobias Klausere2f9d452017-05-24 16:31:16 +02004304static const struct irq_domain_ops amd_ir_domain_ops = {
Jiang Liu7c71d302015-04-13 14:11:33 +08004305 .alloc = irq_remapping_alloc,
4306 .free = irq_remapping_free,
4307 .activate = irq_remapping_activate,
4308 .deactivate = irq_remapping_deactivate,
4309};
4310
Suravee Suthikulpanitb9fc6b52016-08-23 13:52:39 -05004311static int amd_ir_set_vcpu_affinity(struct irq_data *data, void *vcpu_info)
4312{
4313 struct amd_iommu *iommu;
4314 struct amd_iommu_pi_data *pi_data = vcpu_info;
4315 struct vcpu_data *vcpu_pi_info = pi_data->vcpu_data;
4316 struct amd_ir_data *ir_data = data->chip_data;
4317 struct irte_ga *irte = (struct irte_ga *) ir_data->entry;
4318 struct irq_2_irte *irte_info = &ir_data->irq_2_irte;
Suravee Suthikulpanitd98de492016-08-23 13:52:40 -05004319 struct iommu_dev_data *dev_data = search_dev_data(irte_info->devid);
4320
4321 /* Note:
4322 * This device has never been set up for guest mode.
4323 * we should not modify the IRTE
4324 */
4325 if (!dev_data || !dev_data->use_vapic)
4326 return 0;
Suravee Suthikulpanitb9fc6b52016-08-23 13:52:39 -05004327
4328 pi_data->ir_data = ir_data;
4329
4330 /* Note:
4331 * SVM tries to set up for VAPIC mode, but we are in
4332 * legacy mode. So, we force legacy mode instead.
4333 */
4334 if (!AMD_IOMMU_GUEST_IR_VAPIC(amd_iommu_guest_ir)) {
4335 pr_debug("AMD-Vi: %s: Fall back to using intr legacy remap\n",
4336 __func__);
4337 pi_data->is_guest_mode = false;
4338 }
4339
4340 iommu = amd_iommu_rlookup_table[irte_info->devid];
4341 if (iommu == NULL)
4342 return -EINVAL;
4343
4344 pi_data->prev_ga_tag = ir_data->cached_ga_tag;
4345 if (pi_data->is_guest_mode) {
4346 /* Setting */
4347 irte->hi.fields.ga_root_ptr = (pi_data->base >> 12);
4348 irte->hi.fields.vector = vcpu_pi_info->vector;
4349 irte->lo.fields_vapic.guest_mode = 1;
4350 irte->lo.fields_vapic.ga_tag = pi_data->ga_tag;
4351
4352 ir_data->cached_ga_tag = pi_data->ga_tag;
4353 } else {
4354 /* Un-Setting */
4355 struct irq_cfg *cfg = irqd_cfg(data);
4356
4357 irte->hi.val = 0;
4358 irte->lo.val = 0;
4359 irte->hi.fields.vector = cfg->vector;
4360 irte->lo.fields_remap.guest_mode = 0;
4361 irte->lo.fields_remap.destination = cfg->dest_apicid;
4362 irte->lo.fields_remap.int_type = apic->irq_delivery_mode;
4363 irte->lo.fields_remap.dm = apic->irq_dest_mode;
4364
4365 /*
4366 * This communicates the ga_tag back to the caller
4367 * so that it can do all the necessary clean up.
4368 */
4369 ir_data->cached_ga_tag = 0;
4370 }
4371
4372 return modify_irte_ga(irte_info->devid, irte_info->index, irte, ir_data);
4373}
4374
Jiang Liu7c71d302015-04-13 14:11:33 +08004375static int amd_ir_set_affinity(struct irq_data *data,
4376 const struct cpumask *mask, bool force)
4377{
4378 struct amd_ir_data *ir_data = data->chip_data;
4379 struct irq_2_irte *irte_info = &ir_data->irq_2_irte;
4380 struct irq_cfg *cfg = irqd_cfg(data);
4381 struct irq_data *parent = data->parent_data;
Suravee Suthikulpanit77bdab42016-08-23 13:52:35 -05004382 struct amd_iommu *iommu = amd_iommu_rlookup_table[irte_info->devid];
Jiang Liu7c71d302015-04-13 14:11:33 +08004383 int ret;
4384
Suravee Suthikulpanit77bdab42016-08-23 13:52:35 -05004385 if (!iommu)
4386 return -ENODEV;
4387
Jiang Liu7c71d302015-04-13 14:11:33 +08004388 ret = parent->chip->irq_set_affinity(parent, mask, force);
4389 if (ret < 0 || ret == IRQ_SET_MASK_OK_DONE)
4390 return ret;
4391
4392 /*
4393 * Atomically updates the IRTE with the new destination, vector
4394 * and flushes the interrupt entry cache.
4395 */
Suravee Suthikulpanit77bdab42016-08-23 13:52:35 -05004396 iommu->irte_ops->set_affinity(ir_data->entry, irte_info->devid,
4397 irte_info->index, cfg->vector, cfg->dest_apicid);
Jiang Liu7c71d302015-04-13 14:11:33 +08004398
4399 /*
4400 * After this point, all the interrupts will start arriving
4401 * at the new destination. So, time to cleanup the previous
4402 * vector allocation.
4403 */
Jiang Liuc6c20022015-04-14 10:30:02 +08004404 send_cleanup_vector(cfg);
Jiang Liu7c71d302015-04-13 14:11:33 +08004405
4406 return IRQ_SET_MASK_OK_DONE;
4407}
4408
4409static void ir_compose_msi_msg(struct irq_data *irq_data, struct msi_msg *msg)
4410{
4411 struct amd_ir_data *ir_data = irq_data->chip_data;
4412
4413 *msg = ir_data->msi_entry;
4414}
4415
4416static struct irq_chip amd_ir_chip = {
4417 .irq_ack = ir_ack_apic_edge,
4418 .irq_set_affinity = amd_ir_set_affinity,
Suravee Suthikulpanitb9fc6b52016-08-23 13:52:39 -05004419 .irq_set_vcpu_affinity = amd_ir_set_vcpu_affinity,
Jiang Liu7c71d302015-04-13 14:11:33 +08004420 .irq_compose_msi_msg = ir_compose_msi_msg,
4421};
4422
4423int amd_iommu_create_irq_domain(struct amd_iommu *iommu)
4424{
4425 iommu->ir_domain = irq_domain_add_tree(NULL, &amd_ir_domain_ops, iommu);
4426 if (!iommu->ir_domain)
4427 return -ENOMEM;
4428
4429 iommu->ir_domain->parent = arch_get_ir_parent_domain();
4430 iommu->msi_domain = arch_create_msi_irq_domain(iommu->ir_domain);
4431
4432 return 0;
4433}
Suravee Suthikulpanit8dbea3f2016-08-23 13:52:38 -05004434
4435int amd_iommu_update_ga(int cpu, bool is_run, void *data)
4436{
4437 unsigned long flags;
4438 struct amd_iommu *iommu;
4439 struct irq_remap_table *irt;
4440 struct amd_ir_data *ir_data = (struct amd_ir_data *)data;
4441 int devid = ir_data->irq_2_irte.devid;
4442 struct irte_ga *entry = (struct irte_ga *) ir_data->entry;
4443 struct irte_ga *ref = (struct irte_ga *) ir_data->ref;
4444
4445 if (!AMD_IOMMU_GUEST_IR_VAPIC(amd_iommu_guest_ir) ||
4446 !ref || !entry || !entry->lo.fields_vapic.guest_mode)
4447 return 0;
4448
4449 iommu = amd_iommu_rlookup_table[devid];
4450 if (!iommu)
4451 return -ENODEV;
4452
4453 irt = get_irq_table(devid, false);
4454 if (!irt)
4455 return -ENODEV;
4456
4457 spin_lock_irqsave(&irt->lock, flags);
4458
4459 if (ref->lo.fields_vapic.guest_mode) {
4460 if (cpu >= 0)
4461 ref->lo.fields_vapic.destination = cpu;
4462 ref->lo.fields_vapic.is_run = is_run;
4463 barrier();
4464 }
4465
4466 spin_unlock_irqrestore(&irt->lock, flags);
4467
4468 iommu_flush_irt(iommu, devid);
4469 iommu_completion_wait(iommu);
4470 return 0;
4471}
4472EXPORT_SYMBOL(amd_iommu_update_ga);
Joerg Roedel2b324502012-06-21 16:29:10 +02004473#endif