blob: 02b8ad76160027585d25bc74db2925c89625fe47 [file] [log] [blame]
Joerg Roedelb6c02712008-06-26 21:27:53 +02001/*
Joerg Roedel5d0d7152010-10-13 11:13:21 +02002 * Copyright (C) 2007-2010 Advanced Micro Devices, Inc.
Joerg Roedel63ce3ae2015-02-04 16:12:55 +01003 * Author: Joerg Roedel <jroedel@suse.de>
Joerg Roedelb6c02712008-06-26 21:27:53 +02004 * Leo Duran <leo.duran@amd.com>
5 *
6 * This program is free software; you can redistribute it and/or modify it
7 * under the terms of the GNU General Public License version 2 as published
8 * by the Free Software Foundation.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
18 */
19
Joerg Roedel72e1dcc2011-11-10 19:13:51 +010020#include <linux/ratelimit.h>
Joerg Roedelb6c02712008-06-26 21:27:53 +020021#include <linux/pci.h>
Joerg Roedelcb41ed82011-04-05 11:00:53 +020022#include <linux/pci-ats.h>
Akinobu Mitaa66022c2009-12-15 16:48:28 -080023#include <linux/bitmap.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090024#include <linux/slab.h>
Joerg Roedel7f265082008-12-12 13:50:21 +010025#include <linux/debugfs.h>
Joerg Roedelb6c02712008-06-26 21:27:53 +020026#include <linux/scatterlist.h>
FUJITA Tomonori51491362009-01-05 23:47:25 +090027#include <linux/dma-mapping.h>
Joerg Roedelb6c02712008-06-26 21:27:53 +020028#include <linux/iommu-helper.h>
Joerg Roedelc156e342008-12-02 18:13:27 +010029#include <linux/iommu.h>
Joerg Roedel815b33f2011-04-06 17:26:49 +020030#include <linux/delay.h>
Joerg Roedel403f81d2011-06-14 16:44:25 +020031#include <linux/amd-iommu.h>
Joerg Roedel72e1dcc2011-11-10 19:13:51 +010032#include <linux/notifier.h>
33#include <linux/export.h>
Joerg Roedel2b324502012-06-21 16:29:10 +020034#include <linux/irq.h>
35#include <linux/msi.h>
Joerg Roedel3b839a52015-04-01 14:58:47 +020036#include <linux/dma-contiguous.h>
Jiang Liu7c71d302015-04-13 14:11:33 +080037#include <linux/irqdomain.h>
Joerg Roedel2b324502012-06-21 16:29:10 +020038#include <asm/irq_remapping.h>
39#include <asm/io_apic.h>
40#include <asm/apic.h>
41#include <asm/hw_irq.h>
Joerg Roedel17f5b562011-07-06 17:14:44 +020042#include <asm/msidef.h>
Joerg Roedelb6c02712008-06-26 21:27:53 +020043#include <asm/proto.h>
FUJITA Tomonori46a7fa22008-07-11 10:23:42 +090044#include <asm/iommu.h>
Joerg Roedel1d9b16d2008-11-27 18:39:15 +010045#include <asm/gart.h>
Joerg Roedel27c21272011-05-30 15:56:24 +020046#include <asm/dma.h>
Joerg Roedel403f81d2011-06-14 16:44:25 +020047
48#include "amd_iommu_proto.h"
49#include "amd_iommu_types.h"
Joerg Roedel6b474b82012-06-26 16:46:04 +020050#include "irq_remapping.h"
Joerg Roedelb6c02712008-06-26 21:27:53 +020051
52#define CMD_SET_TYPE(cmd, t) ((cmd)->data[1] |= ((t) << 28))
53
Joerg Roedel815b33f2011-04-06 17:26:49 +020054#define LOOP_TIMEOUT 100000
Joerg Roedel136f78a2008-07-11 17:14:27 +020055
Ohad Ben-Cohenaa3de9c2011-11-10 11:32:29 +020056/*
57 * This bitmap is used to advertise the page sizes our hardware support
58 * to the IOMMU core, which will then use this information to split
59 * physically contiguous memory regions it is mapping into page sizes
60 * that we support.
61 *
Joerg Roedel954e3dd2012-12-02 15:35:37 +010062 * 512GB Pages are not supported due to a hardware bug
Ohad Ben-Cohenaa3de9c2011-11-10 11:32:29 +020063 */
Joerg Roedel954e3dd2012-12-02 15:35:37 +010064#define AMD_IOMMU_PGSIZES ((~0xFFFUL) & ~(2ULL << 38))
Ohad Ben-Cohenaa3de9c2011-11-10 11:32:29 +020065
Joerg Roedelb6c02712008-06-26 21:27:53 +020066static DEFINE_RWLOCK(amd_iommu_devtable_lock);
67
Joerg Roedel8fa5f802011-06-09 12:24:45 +020068/* List of all available dev_data structures */
69static LIST_HEAD(dev_data_list);
70static DEFINE_SPINLOCK(dev_data_list_lock);
71
Joerg Roedel6efed632012-06-14 15:52:58 +020072LIST_HEAD(ioapic_map);
73LIST_HEAD(hpet_map);
74
Joerg Roedel0feae532009-08-26 15:26:30 +020075/*
76 * Domain for untranslated devices - only allocated
77 * if iommu=pt passed on kernel cmd line.
78 */
Thierry Redingb22f6432014-06-27 09:03:12 +020079static const struct iommu_ops amd_iommu_ops;
Joerg Roedel26961ef2008-12-03 17:00:17 +010080
Joerg Roedel72e1dcc2011-11-10 19:13:51 +010081static ATOMIC_NOTIFIER_HEAD(ppr_notifier);
Joerg Roedel52815b72011-11-17 17:24:28 +010082int amd_iommu_max_glx_val = -1;
Joerg Roedel72e1dcc2011-11-10 19:13:51 +010083
Joerg Roedelac1534a2012-06-21 14:52:40 +020084static struct dma_map_ops amd_iommu_dma_ops;
85
Joerg Roedel431b2a22008-07-11 17:14:22 +020086/*
Joerg Roedel50917e22014-08-05 16:38:38 +020087 * This struct contains device specific data for the IOMMU
88 */
89struct iommu_dev_data {
90 struct list_head list; /* For domain->dev_list */
91 struct list_head dev_data_list; /* For global dev_data_list */
Joerg Roedel50917e22014-08-05 16:38:38 +020092 struct protection_domain *domain; /* Domain the device is bound to */
Joerg Roedel50917e22014-08-05 16:38:38 +020093 u16 devid; /* PCI Device ID */
94 bool iommu_v2; /* Device can make use of IOMMUv2 */
Joerg Roedel1e6a7b02015-07-28 16:58:48 +020095 bool passthrough; /* Device is identity mapped */
Joerg Roedel50917e22014-08-05 16:38:38 +020096 struct {
97 bool enabled;
98 int qdep;
99 } ats; /* ATS state */
100 bool pri_tlp; /* PASID TLB required for
101 PPR completions */
102 u32 errata; /* Bitmap for errata to apply */
103};
104
105/*
Joerg Roedel431b2a22008-07-11 17:14:22 +0200106 * general struct to manage commands send to an IOMMU
107 */
Joerg Roedeld6449532008-07-11 17:14:28 +0200108struct iommu_cmd {
Joerg Roedelb6c02712008-06-26 21:27:53 +0200109 u32 data[4];
110};
111
Joerg Roedel05152a02012-06-15 16:53:51 +0200112struct kmem_cache *amd_iommu_irq_cache;
113
Joerg Roedel04bfdd82009-09-02 16:00:23 +0200114static void update_domain(struct protection_domain *domain);
Joerg Roedel7a5a5662015-06-30 08:56:11 +0200115static int protection_domain_init(struct protection_domain *domain);
Chris Wrightc1eee672009-05-21 00:56:58 -0700116
Joerg Roedel15898bb2009-11-24 15:39:42 +0100117/****************************************************************************
118 *
119 * Helper functions
120 *
121 ****************************************************************************/
122
Joerg Roedel3f4b87b2015-03-26 13:43:07 +0100123static struct protection_domain *to_pdomain(struct iommu_domain *dom)
124{
125 return container_of(dom, struct protection_domain, domain);
126}
127
Joerg Roedelf62dda62011-06-09 12:55:35 +0200128static struct iommu_dev_data *alloc_dev_data(u16 devid)
Joerg Roedel8fa5f802011-06-09 12:24:45 +0200129{
130 struct iommu_dev_data *dev_data;
131 unsigned long flags;
132
133 dev_data = kzalloc(sizeof(*dev_data), GFP_KERNEL);
134 if (!dev_data)
135 return NULL;
136
Joerg Roedelf62dda62011-06-09 12:55:35 +0200137 dev_data->devid = devid;
Joerg Roedel8fa5f802011-06-09 12:24:45 +0200138
139 spin_lock_irqsave(&dev_data_list_lock, flags);
140 list_add_tail(&dev_data->dev_data_list, &dev_data_list);
141 spin_unlock_irqrestore(&dev_data_list_lock, flags);
142
143 return dev_data;
144}
145
Joerg Roedel3b03bb72011-06-09 18:53:25 +0200146static struct iommu_dev_data *search_dev_data(u16 devid)
147{
148 struct iommu_dev_data *dev_data;
149 unsigned long flags;
150
151 spin_lock_irqsave(&dev_data_list_lock, flags);
152 list_for_each_entry(dev_data, &dev_data_list, dev_data_list) {
153 if (dev_data->devid == devid)
154 goto out_unlock;
155 }
156
157 dev_data = NULL;
158
159out_unlock:
160 spin_unlock_irqrestore(&dev_data_list_lock, flags);
161
162 return dev_data;
163}
164
165static struct iommu_dev_data *find_dev_data(u16 devid)
166{
167 struct iommu_dev_data *dev_data;
168
169 dev_data = search_dev_data(devid);
170
171 if (dev_data == NULL)
172 dev_data = alloc_dev_data(devid);
173
174 return dev_data;
175}
176
Joerg Roedel15898bb2009-11-24 15:39:42 +0100177static inline u16 get_device_id(struct device *dev)
178{
179 struct pci_dev *pdev = to_pci_dev(dev);
180
Shuah Khan6f2729b2013-02-27 17:07:30 -0700181 return PCI_DEVID(pdev->bus->number, pdev->devfn);
Joerg Roedel15898bb2009-11-24 15:39:42 +0100182}
183
Joerg Roedel657cbb62009-11-23 15:26:46 +0100184static struct iommu_dev_data *get_dev_data(struct device *dev)
185{
186 return dev->archdata.iommu;
187}
188
Joerg Roedel5abcdba2011-12-01 15:49:45 +0100189static bool pci_iommuv2_capable(struct pci_dev *pdev)
190{
191 static const int caps[] = {
192 PCI_EXT_CAP_ID_ATS,
Joerg Roedel46277b72011-12-07 14:34:02 +0100193 PCI_EXT_CAP_ID_PRI,
194 PCI_EXT_CAP_ID_PASID,
Joerg Roedel5abcdba2011-12-01 15:49:45 +0100195 };
196 int i, pos;
197
198 for (i = 0; i < 3; ++i) {
199 pos = pci_find_ext_capability(pdev, caps[i]);
200 if (pos == 0)
201 return false;
202 }
203
204 return true;
205}
206
Joerg Roedel6a113dd2011-12-01 12:04:58 +0100207static bool pdev_pri_erratum(struct pci_dev *pdev, u32 erratum)
208{
209 struct iommu_dev_data *dev_data;
210
211 dev_data = get_dev_data(&pdev->dev);
212
213 return dev_data->errata & (1 << erratum) ? true : false;
214}
215
Joerg Roedel71c70982009-11-24 16:43:06 +0100216/*
Joerg Roedel0bb6e242015-05-28 18:41:40 +0200217 * This function actually applies the mapping to the page table of the
218 * dma_ops domain.
Joerg Roedel71c70982009-11-24 16:43:06 +0100219 */
Joerg Roedel0bb6e242015-05-28 18:41:40 +0200220static void alloc_unity_mapping(struct dma_ops_domain *dma_dom,
221 struct unity_map_entry *e)
Joerg Roedel71c70982009-11-24 16:43:06 +0100222{
Joerg Roedel0bb6e242015-05-28 18:41:40 +0200223 u64 addr;
Joerg Roedel71c70982009-11-24 16:43:06 +0100224
Joerg Roedel0bb6e242015-05-28 18:41:40 +0200225 for (addr = e->address_start; addr < e->address_end;
226 addr += PAGE_SIZE) {
227 if (addr < dma_dom->aperture_size)
228 __set_bit(addr >> PAGE_SHIFT,
229 dma_dom->aperture[0]->bitmap);
Joerg Roedel71c70982009-11-24 16:43:06 +0100230 }
Joerg Roedel0bb6e242015-05-28 18:41:40 +0200231}
Joerg Roedel71c70982009-11-24 16:43:06 +0100232
Joerg Roedel0bb6e242015-05-28 18:41:40 +0200233/*
234 * Inits the unity mappings required for a specific device
235 */
236static void init_unity_mappings_for_device(struct device *dev,
237 struct dma_ops_domain *dma_dom)
238{
239 struct unity_map_entry *e;
240 u16 devid;
Joerg Roedel71c70982009-11-24 16:43:06 +0100241
Joerg Roedel0bb6e242015-05-28 18:41:40 +0200242 devid = get_device_id(dev);
243
244 list_for_each_entry(e, &amd_iommu_unity_map, list) {
245 if (!(devid >= e->devid_start && devid <= e->devid_end))
246 continue;
247 alloc_unity_mapping(dma_dom, e);
248 }
Joerg Roedel71c70982009-11-24 16:43:06 +0100249}
250
Joerg Roedel98fc5a62009-11-24 17:19:23 +0100251/*
252 * This function checks if the driver got a valid device from the caller to
253 * avoid dereferencing invalid pointers.
254 */
255static bool check_device(struct device *dev)
256{
257 u16 devid;
258
259 if (!dev || !dev->dma_mask)
260 return false;
261
Yijing Wangb82a2272013-12-05 19:42:41 +0800262 /* No PCI device */
263 if (!dev_is_pci(dev))
Joerg Roedel98fc5a62009-11-24 17:19:23 +0100264 return false;
265
266 devid = get_device_id(dev);
267
268 /* Out of our scope? */
269 if (devid > amd_iommu_last_bdf)
270 return false;
271
272 if (amd_iommu_rlookup_table[devid] == NULL)
273 return false;
274
275 return true;
276}
277
Alex Williamson25b11ce2014-09-19 10:03:13 -0600278static void init_iommu_group(struct device *dev)
Alex Williamson2851db22012-10-08 22:49:41 -0600279{
Joerg Roedel0bb6e242015-05-28 18:41:40 +0200280 struct dma_ops_domain *dma_domain;
281 struct iommu_domain *domain;
Alex Williamson2851db22012-10-08 22:49:41 -0600282 struct iommu_group *group;
Alex Williamson2851db22012-10-08 22:49:41 -0600283
Alex Williamson65d53522014-07-03 09:51:30 -0600284 group = iommu_group_get_for_dev(dev);
Joerg Roedel0bb6e242015-05-28 18:41:40 +0200285 if (IS_ERR(group))
286 return;
287
288 domain = iommu_group_default_domain(group);
289 if (!domain)
290 goto out;
291
292 dma_domain = to_pdomain(domain)->priv;
293
294 init_unity_mappings_for_device(dev, dma_domain);
295out:
296 iommu_group_put(group);
Alex Williamsoneb9c9522012-10-08 22:49:35 -0600297}
298
299static int iommu_init_device(struct device *dev)
300{
301 struct pci_dev *pdev = to_pci_dev(dev);
302 struct iommu_dev_data *dev_data;
Alex Williamsoneb9c9522012-10-08 22:49:35 -0600303
304 if (dev->archdata.iommu)
305 return 0;
306
307 dev_data = find_dev_data(get_device_id(dev));
308 if (!dev_data)
309 return -ENOMEM;
310
Joerg Roedel5abcdba2011-12-01 15:49:45 +0100311 if (pci_iommuv2_capable(pdev)) {
312 struct amd_iommu *iommu;
313
314 iommu = amd_iommu_rlookup_table[dev_data->devid];
315 dev_data->iommu_v2 = iommu->is_iommu_v2;
316 }
317
Joerg Roedel657cbb62009-11-23 15:26:46 +0100318 dev->archdata.iommu = dev_data;
319
Alex Williamson066f2e92014-06-12 16:12:37 -0600320 iommu_device_link(amd_iommu_rlookup_table[dev_data->devid]->iommu_dev,
321 dev);
322
Joerg Roedel657cbb62009-11-23 15:26:46 +0100323 return 0;
324}
325
Joerg Roedel26018872011-06-06 16:50:14 +0200326static void iommu_ignore_device(struct device *dev)
327{
328 u16 devid, alias;
329
330 devid = get_device_id(dev);
331 alias = amd_iommu_alias_table[devid];
332
333 memset(&amd_iommu_dev_table[devid], 0, sizeof(struct dev_table_entry));
334 memset(&amd_iommu_dev_table[alias], 0, sizeof(struct dev_table_entry));
335
336 amd_iommu_rlookup_table[devid] = NULL;
337 amd_iommu_rlookup_table[alias] = NULL;
338}
339
Joerg Roedel657cbb62009-11-23 15:26:46 +0100340static void iommu_uninit_device(struct device *dev)
341{
Alex Williamsonc1931092014-07-03 09:51:24 -0600342 struct iommu_dev_data *dev_data = search_dev_data(get_device_id(dev));
343
344 if (!dev_data)
345 return;
346
Alex Williamson066f2e92014-06-12 16:12:37 -0600347 iommu_device_unlink(amd_iommu_rlookup_table[dev_data->devid]->iommu_dev,
348 dev);
349
Alex Williamson9dcd6132012-05-30 14:19:07 -0600350 iommu_group_remove_device(dev);
351
Joerg Roedelaafd8ba2015-05-28 18:41:39 +0200352 /* Remove dma-ops */
353 dev->archdata.dma_ops = NULL;
354
Joerg Roedel8fa5f802011-06-09 12:24:45 +0200355 /*
Alex Williamsonc1931092014-07-03 09:51:24 -0600356 * We keep dev_data around for unplugged devices and reuse it when the
357 * device is re-plugged - not doing so would introduce a ton of races.
Joerg Roedel8fa5f802011-06-09 12:24:45 +0200358 */
Joerg Roedel657cbb62009-11-23 15:26:46 +0100359}
Joerg Roedelb7cc9552009-12-10 11:03:39 +0100360
Joerg Roedel7f265082008-12-12 13:50:21 +0100361#ifdef CONFIG_AMD_IOMMU_STATS
362
363/*
364 * Initialization code for statistics collection
365 */
366
Joerg Roedelda49f6d2008-12-12 14:59:58 +0100367DECLARE_STATS_COUNTER(compl_wait);
Joerg Roedel0f2a86f2008-12-12 15:05:16 +0100368DECLARE_STATS_COUNTER(cnt_map_single);
Joerg Roedel146a6912008-12-12 15:07:12 +0100369DECLARE_STATS_COUNTER(cnt_unmap_single);
Joerg Roedeld03f067a2008-12-12 15:09:48 +0100370DECLARE_STATS_COUNTER(cnt_map_sg);
Joerg Roedel55877a62008-12-12 15:12:14 +0100371DECLARE_STATS_COUNTER(cnt_unmap_sg);
Joerg Roedelc8f0fb32008-12-12 15:14:21 +0100372DECLARE_STATS_COUNTER(cnt_alloc_coherent);
Joerg Roedel5d31ee72008-12-12 15:16:38 +0100373DECLARE_STATS_COUNTER(cnt_free_coherent);
Joerg Roedelc1858972008-12-12 15:42:39 +0100374DECLARE_STATS_COUNTER(cross_page);
Joerg Roedelf57d98a2008-12-12 15:46:29 +0100375DECLARE_STATS_COUNTER(domain_flush_single);
Joerg Roedel18811f52008-12-12 15:48:28 +0100376DECLARE_STATS_COUNTER(domain_flush_all);
Joerg Roedel5774f7c2008-12-12 15:57:30 +0100377DECLARE_STATS_COUNTER(alloced_io_mem);
Joerg Roedel8ecaf8f2008-12-12 16:13:04 +0100378DECLARE_STATS_COUNTER(total_map_requests);
Joerg Roedel399be2f2011-12-01 16:53:47 +0100379DECLARE_STATS_COUNTER(complete_ppr);
380DECLARE_STATS_COUNTER(invalidate_iotlb);
381DECLARE_STATS_COUNTER(invalidate_iotlb_all);
382DECLARE_STATS_COUNTER(pri_requests);
383
Joerg Roedel7f265082008-12-12 13:50:21 +0100384static struct dentry *stats_dir;
Joerg Roedel7f265082008-12-12 13:50:21 +0100385static struct dentry *de_fflush;
386
387static void amd_iommu_stats_add(struct __iommu_counter *cnt)
388{
389 if (stats_dir == NULL)
390 return;
391
392 cnt->dent = debugfs_create_u64(cnt->name, 0444, stats_dir,
393 &cnt->value);
394}
395
396static void amd_iommu_stats_init(void)
397{
398 stats_dir = debugfs_create_dir("amd-iommu", NULL);
399 if (stats_dir == NULL)
400 return;
401
Joerg Roedel7f265082008-12-12 13:50:21 +0100402 de_fflush = debugfs_create_bool("fullflush", 0444, stats_dir,
Dan Carpenter3775d482012-06-27 12:09:18 +0300403 &amd_iommu_unmap_flush);
Joerg Roedelda49f6d2008-12-12 14:59:58 +0100404
405 amd_iommu_stats_add(&compl_wait);
Joerg Roedel0f2a86f2008-12-12 15:05:16 +0100406 amd_iommu_stats_add(&cnt_map_single);
Joerg Roedel146a6912008-12-12 15:07:12 +0100407 amd_iommu_stats_add(&cnt_unmap_single);
Joerg Roedeld03f067a2008-12-12 15:09:48 +0100408 amd_iommu_stats_add(&cnt_map_sg);
Joerg Roedel55877a62008-12-12 15:12:14 +0100409 amd_iommu_stats_add(&cnt_unmap_sg);
Joerg Roedelc8f0fb32008-12-12 15:14:21 +0100410 amd_iommu_stats_add(&cnt_alloc_coherent);
Joerg Roedel5d31ee72008-12-12 15:16:38 +0100411 amd_iommu_stats_add(&cnt_free_coherent);
Joerg Roedelc1858972008-12-12 15:42:39 +0100412 amd_iommu_stats_add(&cross_page);
Joerg Roedelf57d98a2008-12-12 15:46:29 +0100413 amd_iommu_stats_add(&domain_flush_single);
Joerg Roedel18811f52008-12-12 15:48:28 +0100414 amd_iommu_stats_add(&domain_flush_all);
Joerg Roedel5774f7c2008-12-12 15:57:30 +0100415 amd_iommu_stats_add(&alloced_io_mem);
Joerg Roedel8ecaf8f2008-12-12 16:13:04 +0100416 amd_iommu_stats_add(&total_map_requests);
Joerg Roedel399be2f2011-12-01 16:53:47 +0100417 amd_iommu_stats_add(&complete_ppr);
418 amd_iommu_stats_add(&invalidate_iotlb);
419 amd_iommu_stats_add(&invalidate_iotlb_all);
420 amd_iommu_stats_add(&pri_requests);
Joerg Roedel7f265082008-12-12 13:50:21 +0100421}
422
423#endif
424
Joerg Roedel431b2a22008-07-11 17:14:22 +0200425/****************************************************************************
426 *
Joerg Roedela80dc3e2008-09-11 16:51:41 +0200427 * Interrupt handling functions
428 *
429 ****************************************************************************/
430
Joerg Roedele3e59872009-09-03 14:02:10 +0200431static void dump_dte_entry(u16 devid)
432{
433 int i;
434
Joerg Roedelee6c2862011-11-09 12:06:03 +0100435 for (i = 0; i < 4; ++i)
436 pr_err("AMD-Vi: DTE[%d]: %016llx\n", i,
Joerg Roedele3e59872009-09-03 14:02:10 +0200437 amd_iommu_dev_table[devid].data[i]);
438}
439
Joerg Roedel945b4ac2009-09-03 14:25:02 +0200440static void dump_command(unsigned long phys_addr)
441{
442 struct iommu_cmd *cmd = phys_to_virt(phys_addr);
443 int i;
444
445 for (i = 0; i < 4; ++i)
446 pr_err("AMD-Vi: CMD[%d]: %08x\n", i, cmd->data[i]);
447}
448
Joerg Roedela345b232009-09-03 15:01:43 +0200449static void iommu_print_event(struct amd_iommu *iommu, void *__evt)
Joerg Roedel90008ee2008-09-09 16:41:05 +0200450{
Joerg Roedel3d06fca2012-04-12 14:12:00 +0200451 int type, devid, domid, flags;
452 volatile u32 *event = __evt;
453 int count = 0;
454 u64 address;
455
456retry:
457 type = (event[1] >> EVENT_TYPE_SHIFT) & EVENT_TYPE_MASK;
458 devid = (event[0] >> EVENT_DEVID_SHIFT) & EVENT_DEVID_MASK;
459 domid = (event[1] >> EVENT_DOMID_SHIFT) & EVENT_DOMID_MASK;
460 flags = (event[1] >> EVENT_FLAGS_SHIFT) & EVENT_FLAGS_MASK;
461 address = (u64)(((u64)event[3]) << 32) | event[2];
462
463 if (type == 0) {
464 /* Did we hit the erratum? */
465 if (++count == LOOP_TIMEOUT) {
466 pr_err("AMD-Vi: No event written to event log\n");
467 return;
468 }
469 udelay(1);
470 goto retry;
471 }
Joerg Roedel90008ee2008-09-09 16:41:05 +0200472
Joerg Roedel4c6f40d2009-09-01 16:43:58 +0200473 printk(KERN_ERR "AMD-Vi: Event logged [");
Joerg Roedel90008ee2008-09-09 16:41:05 +0200474
475 switch (type) {
476 case EVENT_TYPE_ILL_DEV:
477 printk("ILLEGAL_DEV_TABLE_ENTRY device=%02x:%02x.%x "
478 "address=0x%016llx flags=0x%04x]\n",
Shuah Khanc5081cd2013-02-27 17:07:19 -0700479 PCI_BUS_NUM(devid), PCI_SLOT(devid), PCI_FUNC(devid),
Joerg Roedel90008ee2008-09-09 16:41:05 +0200480 address, flags);
Joerg Roedele3e59872009-09-03 14:02:10 +0200481 dump_dte_entry(devid);
Joerg Roedel90008ee2008-09-09 16:41:05 +0200482 break;
483 case EVENT_TYPE_IO_FAULT:
484 printk("IO_PAGE_FAULT device=%02x:%02x.%x "
485 "domain=0x%04x address=0x%016llx flags=0x%04x]\n",
Shuah Khanc5081cd2013-02-27 17:07:19 -0700486 PCI_BUS_NUM(devid), PCI_SLOT(devid), PCI_FUNC(devid),
Joerg Roedel90008ee2008-09-09 16:41:05 +0200487 domid, address, flags);
488 break;
489 case EVENT_TYPE_DEV_TAB_ERR:
490 printk("DEV_TAB_HARDWARE_ERROR device=%02x:%02x.%x "
491 "address=0x%016llx flags=0x%04x]\n",
Shuah Khanc5081cd2013-02-27 17:07:19 -0700492 PCI_BUS_NUM(devid), PCI_SLOT(devid), PCI_FUNC(devid),
Joerg Roedel90008ee2008-09-09 16:41:05 +0200493 address, flags);
494 break;
495 case EVENT_TYPE_PAGE_TAB_ERR:
496 printk("PAGE_TAB_HARDWARE_ERROR device=%02x:%02x.%x "
497 "domain=0x%04x address=0x%016llx flags=0x%04x]\n",
Shuah Khanc5081cd2013-02-27 17:07:19 -0700498 PCI_BUS_NUM(devid), PCI_SLOT(devid), PCI_FUNC(devid),
Joerg Roedel90008ee2008-09-09 16:41:05 +0200499 domid, address, flags);
500 break;
501 case EVENT_TYPE_ILL_CMD:
502 printk("ILLEGAL_COMMAND_ERROR address=0x%016llx]\n", address);
Joerg Roedel945b4ac2009-09-03 14:25:02 +0200503 dump_command(address);
Joerg Roedel90008ee2008-09-09 16:41:05 +0200504 break;
505 case EVENT_TYPE_CMD_HARD_ERR:
506 printk("COMMAND_HARDWARE_ERROR address=0x%016llx "
507 "flags=0x%04x]\n", address, flags);
508 break;
509 case EVENT_TYPE_IOTLB_INV_TO:
510 printk("IOTLB_INV_TIMEOUT device=%02x:%02x.%x "
511 "address=0x%016llx]\n",
Shuah Khanc5081cd2013-02-27 17:07:19 -0700512 PCI_BUS_NUM(devid), PCI_SLOT(devid), PCI_FUNC(devid),
Joerg Roedel90008ee2008-09-09 16:41:05 +0200513 address);
514 break;
515 case EVENT_TYPE_INV_DEV_REQ:
516 printk("INVALID_DEVICE_REQUEST device=%02x:%02x.%x "
517 "address=0x%016llx flags=0x%04x]\n",
Shuah Khanc5081cd2013-02-27 17:07:19 -0700518 PCI_BUS_NUM(devid), PCI_SLOT(devid), PCI_FUNC(devid),
Joerg Roedel90008ee2008-09-09 16:41:05 +0200519 address, flags);
520 break;
521 default:
522 printk(KERN_ERR "UNKNOWN type=0x%02x]\n", type);
523 }
Joerg Roedel3d06fca2012-04-12 14:12:00 +0200524
525 memset(__evt, 0, 4 * sizeof(u32));
Joerg Roedel90008ee2008-09-09 16:41:05 +0200526}
527
528static void iommu_poll_events(struct amd_iommu *iommu)
529{
530 u32 head, tail;
Joerg Roedel90008ee2008-09-09 16:41:05 +0200531
532 head = readl(iommu->mmio_base + MMIO_EVT_HEAD_OFFSET);
533 tail = readl(iommu->mmio_base + MMIO_EVT_TAIL_OFFSET);
534
535 while (head != tail) {
Joerg Roedela345b232009-09-03 15:01:43 +0200536 iommu_print_event(iommu, iommu->evt_buf + head);
Joerg Roedeldeba4bc2015-10-20 17:33:41 +0200537 head = (head + EVENT_ENTRY_SIZE) % EVT_BUFFER_SIZE;
Joerg Roedel90008ee2008-09-09 16:41:05 +0200538 }
539
540 writel(head, iommu->mmio_base + MMIO_EVT_HEAD_OFFSET);
Joerg Roedel90008ee2008-09-09 16:41:05 +0200541}
542
Joerg Roedeleee53532012-06-01 15:20:23 +0200543static void iommu_handle_ppr_entry(struct amd_iommu *iommu, u64 *raw)
Joerg Roedel72e1dcc2011-11-10 19:13:51 +0100544{
545 struct amd_iommu_fault fault;
Joerg Roedel72e1dcc2011-11-10 19:13:51 +0100546
Joerg Roedel399be2f2011-12-01 16:53:47 +0100547 INC_STATS_COUNTER(pri_requests);
548
Joerg Roedel72e1dcc2011-11-10 19:13:51 +0100549 if (PPR_REQ_TYPE(raw[0]) != PPR_REQ_FAULT) {
550 pr_err_ratelimited("AMD-Vi: Unknown PPR request received\n");
551 return;
552 }
553
554 fault.address = raw[1];
555 fault.pasid = PPR_PASID(raw[0]);
556 fault.device_id = PPR_DEVID(raw[0]);
557 fault.tag = PPR_TAG(raw[0]);
558 fault.flags = PPR_FLAGS(raw[0]);
559
Joerg Roedel72e1dcc2011-11-10 19:13:51 +0100560 atomic_notifier_call_chain(&ppr_notifier, 0, &fault);
561}
562
563static void iommu_poll_ppr_log(struct amd_iommu *iommu)
564{
Joerg Roedel72e1dcc2011-11-10 19:13:51 +0100565 u32 head, tail;
566
567 if (iommu->ppr_log == NULL)
568 return;
569
Joerg Roedel72e1dcc2011-11-10 19:13:51 +0100570 head = readl(iommu->mmio_base + MMIO_PPR_HEAD_OFFSET);
571 tail = readl(iommu->mmio_base + MMIO_PPR_TAIL_OFFSET);
572
573 while (head != tail) {
Joerg Roedeleee53532012-06-01 15:20:23 +0200574 volatile u64 *raw;
575 u64 entry[2];
576 int i;
Joerg Roedel72e1dcc2011-11-10 19:13:51 +0100577
Joerg Roedeleee53532012-06-01 15:20:23 +0200578 raw = (u64 *)(iommu->ppr_log + head);
Joerg Roedel72e1dcc2011-11-10 19:13:51 +0100579
Joerg Roedeleee53532012-06-01 15:20:23 +0200580 /*
581 * Hardware bug: Interrupt may arrive before the entry is
582 * written to memory. If this happens we need to wait for the
583 * entry to arrive.
584 */
585 for (i = 0; i < LOOP_TIMEOUT; ++i) {
586 if (PPR_REQ_TYPE(raw[0]) != 0)
587 break;
588 udelay(1);
589 }
590
591 /* Avoid memcpy function-call overhead */
592 entry[0] = raw[0];
593 entry[1] = raw[1];
594
595 /*
596 * To detect the hardware bug we need to clear the entry
597 * back to zero.
598 */
599 raw[0] = raw[1] = 0UL;
600
601 /* Update head pointer of hardware ring-buffer */
Joerg Roedel72e1dcc2011-11-10 19:13:51 +0100602 head = (head + PPR_ENTRY_SIZE) % PPR_LOG_SIZE;
603 writel(head, iommu->mmio_base + MMIO_PPR_HEAD_OFFSET);
Joerg Roedeleee53532012-06-01 15:20:23 +0200604
Joerg Roedeleee53532012-06-01 15:20:23 +0200605 /* Handle PPR entry */
606 iommu_handle_ppr_entry(iommu, entry);
607
Joerg Roedeleee53532012-06-01 15:20:23 +0200608 /* Refresh ring-buffer information */
609 head = readl(iommu->mmio_base + MMIO_PPR_HEAD_OFFSET);
Joerg Roedel72e1dcc2011-11-10 19:13:51 +0100610 tail = readl(iommu->mmio_base + MMIO_PPR_TAIL_OFFSET);
611 }
Joerg Roedel72e1dcc2011-11-10 19:13:51 +0100612}
613
Joerg Roedel72fe00f2011-05-10 10:50:42 +0200614irqreturn_t amd_iommu_int_thread(int irq, void *data)
Joerg Roedela80dc3e2008-09-11 16:51:41 +0200615{
Suravee Suthikulpanit3f398bc2013-04-22 16:32:34 -0500616 struct amd_iommu *iommu = (struct amd_iommu *) data;
617 u32 status = readl(iommu->mmio_base + MMIO_STATUS_OFFSET);
Joerg Roedel90008ee2008-09-09 16:41:05 +0200618
Suravee Suthikulpanit3f398bc2013-04-22 16:32:34 -0500619 while (status & (MMIO_STATUS_EVT_INT_MASK | MMIO_STATUS_PPR_INT_MASK)) {
620 /* Enable EVT and PPR interrupts again */
621 writel((MMIO_STATUS_EVT_INT_MASK | MMIO_STATUS_PPR_INT_MASK),
622 iommu->mmio_base + MMIO_STATUS_OFFSET);
623
624 if (status & MMIO_STATUS_EVT_INT_MASK) {
625 pr_devel("AMD-Vi: Processing IOMMU Event Log\n");
626 iommu_poll_events(iommu);
627 }
628
629 if (status & MMIO_STATUS_PPR_INT_MASK) {
630 pr_devel("AMD-Vi: Processing IOMMU PPR Log\n");
631 iommu_poll_ppr_log(iommu);
632 }
633
634 /*
635 * Hardware bug: ERBT1312
636 * When re-enabling interrupt (by writing 1
637 * to clear the bit), the hardware might also try to set
638 * the interrupt bit in the event status register.
639 * In this scenario, the bit will be set, and disable
640 * subsequent interrupts.
641 *
642 * Workaround: The IOMMU driver should read back the
643 * status register and check if the interrupt bits are cleared.
644 * If not, driver will need to go through the interrupt handler
645 * again and re-clear the bits
646 */
647 status = readl(iommu->mmio_base + MMIO_STATUS_OFFSET);
Joerg Roedel72e1dcc2011-11-10 19:13:51 +0100648 }
Joerg Roedel90008ee2008-09-09 16:41:05 +0200649 return IRQ_HANDLED;
Joerg Roedela80dc3e2008-09-11 16:51:41 +0200650}
651
Joerg Roedel72fe00f2011-05-10 10:50:42 +0200652irqreturn_t amd_iommu_int_handler(int irq, void *data)
653{
654 return IRQ_WAKE_THREAD;
655}
656
Joerg Roedela80dc3e2008-09-11 16:51:41 +0200657/****************************************************************************
658 *
Joerg Roedel431b2a22008-07-11 17:14:22 +0200659 * IOMMU command queuing functions
660 *
661 ****************************************************************************/
662
Joerg Roedelac0ea6e2011-04-06 18:38:20 +0200663static int wait_on_sem(volatile u64 *sem)
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200664{
Joerg Roedelac0ea6e2011-04-06 18:38:20 +0200665 int i = 0;
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200666
Joerg Roedelac0ea6e2011-04-06 18:38:20 +0200667 while (*sem == 0 && i < LOOP_TIMEOUT) {
668 udelay(1);
669 i += 1;
670 }
671
672 if (i == LOOP_TIMEOUT) {
673 pr_alert("AMD-Vi: Completion-Wait loop timed out\n");
674 return -EIO;
675 }
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200676
677 return 0;
678}
679
Joerg Roedelac0ea6e2011-04-06 18:38:20 +0200680static void copy_cmd_to_buffer(struct amd_iommu *iommu,
681 struct iommu_cmd *cmd,
682 u32 tail)
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200683{
Joerg Roedelac0ea6e2011-04-06 18:38:20 +0200684 u8 *target;
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200685
Joerg Roedelac0ea6e2011-04-06 18:38:20 +0200686 target = iommu->cmd_buf + tail;
Joerg Roedeldeba4bc2015-10-20 17:33:41 +0200687 tail = (tail + sizeof(*cmd)) % CMD_BUFFER_SIZE;
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200688
Joerg Roedelac0ea6e2011-04-06 18:38:20 +0200689 /* Copy command to buffer */
690 memcpy(target, cmd, sizeof(*cmd));
691
692 /* Tell the IOMMU about it */
693 writel(tail, iommu->mmio_base + MMIO_CMD_TAIL_OFFSET);
694}
695
Joerg Roedel815b33f2011-04-06 17:26:49 +0200696static void build_completion_wait(struct iommu_cmd *cmd, u64 address)
Joerg Roedelded46732011-04-06 10:53:48 +0200697{
Joerg Roedel815b33f2011-04-06 17:26:49 +0200698 WARN_ON(address & 0x7ULL);
699
Joerg Roedelded46732011-04-06 10:53:48 +0200700 memset(cmd, 0, sizeof(*cmd));
Joerg Roedel815b33f2011-04-06 17:26:49 +0200701 cmd->data[0] = lower_32_bits(__pa(address)) | CMD_COMPL_WAIT_STORE_MASK;
702 cmd->data[1] = upper_32_bits(__pa(address));
703 cmd->data[2] = 1;
Joerg Roedelded46732011-04-06 10:53:48 +0200704 CMD_SET_TYPE(cmd, CMD_COMPL_WAIT);
705}
706
Joerg Roedel94fe79e2011-04-06 11:07:21 +0200707static void build_inv_dte(struct iommu_cmd *cmd, u16 devid)
708{
709 memset(cmd, 0, sizeof(*cmd));
710 cmd->data[0] = devid;
711 CMD_SET_TYPE(cmd, CMD_INV_DEV_ENTRY);
712}
713
Joerg Roedel11b64022011-04-06 11:49:28 +0200714static void build_inv_iommu_pages(struct iommu_cmd *cmd, u64 address,
715 size_t size, u16 domid, int pde)
716{
717 u64 pages;
Quentin Lambertae0cbbb2015-02-04 11:40:07 +0100718 bool s;
Joerg Roedel11b64022011-04-06 11:49:28 +0200719
720 pages = iommu_num_pages(address, size, PAGE_SIZE);
Quentin Lambertae0cbbb2015-02-04 11:40:07 +0100721 s = false;
Joerg Roedel11b64022011-04-06 11:49:28 +0200722
723 if (pages > 1) {
724 /*
725 * If we have to flush more than one page, flush all
726 * TLB entries for this domain
727 */
728 address = CMD_INV_IOMMU_ALL_PAGES_ADDRESS;
Quentin Lambertae0cbbb2015-02-04 11:40:07 +0100729 s = true;
Joerg Roedel11b64022011-04-06 11:49:28 +0200730 }
731
732 address &= PAGE_MASK;
733
734 memset(cmd, 0, sizeof(*cmd));
735 cmd->data[1] |= domid;
736 cmd->data[2] = lower_32_bits(address);
737 cmd->data[3] = upper_32_bits(address);
738 CMD_SET_TYPE(cmd, CMD_INV_IOMMU_PAGES);
739 if (s) /* size bit - we flush more than one 4kb page */
740 cmd->data[2] |= CMD_INV_IOMMU_PAGES_SIZE_MASK;
Frank Arnolddf805ab2012-08-27 19:21:04 +0200741 if (pde) /* PDE bit - we want to flush everything, not only the PTEs */
Joerg Roedel11b64022011-04-06 11:49:28 +0200742 cmd->data[2] |= CMD_INV_IOMMU_PAGES_PDE_MASK;
743}
744
Joerg Roedelcb41ed82011-04-05 11:00:53 +0200745static void build_inv_iotlb_pages(struct iommu_cmd *cmd, u16 devid, int qdep,
746 u64 address, size_t size)
747{
748 u64 pages;
Quentin Lambertae0cbbb2015-02-04 11:40:07 +0100749 bool s;
Joerg Roedelcb41ed82011-04-05 11:00:53 +0200750
751 pages = iommu_num_pages(address, size, PAGE_SIZE);
Quentin Lambertae0cbbb2015-02-04 11:40:07 +0100752 s = false;
Joerg Roedelcb41ed82011-04-05 11:00:53 +0200753
754 if (pages > 1) {
755 /*
756 * If we have to flush more than one page, flush all
757 * TLB entries for this domain
758 */
759 address = CMD_INV_IOMMU_ALL_PAGES_ADDRESS;
Quentin Lambertae0cbbb2015-02-04 11:40:07 +0100760 s = true;
Joerg Roedelcb41ed82011-04-05 11:00:53 +0200761 }
762
763 address &= PAGE_MASK;
764
765 memset(cmd, 0, sizeof(*cmd));
766 cmd->data[0] = devid;
767 cmd->data[0] |= (qdep & 0xff) << 24;
768 cmd->data[1] = devid;
769 cmd->data[2] = lower_32_bits(address);
770 cmd->data[3] = upper_32_bits(address);
771 CMD_SET_TYPE(cmd, CMD_INV_IOTLB_PAGES);
772 if (s)
773 cmd->data[2] |= CMD_INV_IOMMU_PAGES_SIZE_MASK;
774}
775
Joerg Roedel22e266c2011-11-21 15:59:08 +0100776static void build_inv_iommu_pasid(struct iommu_cmd *cmd, u16 domid, int pasid,
777 u64 address, bool size)
778{
779 memset(cmd, 0, sizeof(*cmd));
780
781 address &= ~(0xfffULL);
782
Suravee Suthikulpanita919a012014-03-05 18:54:18 -0600783 cmd->data[0] = pasid;
Joerg Roedel22e266c2011-11-21 15:59:08 +0100784 cmd->data[1] = domid;
785 cmd->data[2] = lower_32_bits(address);
786 cmd->data[3] = upper_32_bits(address);
787 cmd->data[2] |= CMD_INV_IOMMU_PAGES_PDE_MASK;
788 cmd->data[2] |= CMD_INV_IOMMU_PAGES_GN_MASK;
789 if (size)
790 cmd->data[2] |= CMD_INV_IOMMU_PAGES_SIZE_MASK;
791 CMD_SET_TYPE(cmd, CMD_INV_IOMMU_PAGES);
792}
793
794static void build_inv_iotlb_pasid(struct iommu_cmd *cmd, u16 devid, int pasid,
795 int qdep, u64 address, bool size)
796{
797 memset(cmd, 0, sizeof(*cmd));
798
799 address &= ~(0xfffULL);
800
801 cmd->data[0] = devid;
Jay Cornwalle8d2d822014-02-26 15:49:31 -0600802 cmd->data[0] |= ((pasid >> 8) & 0xff) << 16;
Joerg Roedel22e266c2011-11-21 15:59:08 +0100803 cmd->data[0] |= (qdep & 0xff) << 24;
804 cmd->data[1] = devid;
Jay Cornwalle8d2d822014-02-26 15:49:31 -0600805 cmd->data[1] |= (pasid & 0xff) << 16;
Joerg Roedel22e266c2011-11-21 15:59:08 +0100806 cmd->data[2] = lower_32_bits(address);
807 cmd->data[2] |= CMD_INV_IOMMU_PAGES_GN_MASK;
808 cmd->data[3] = upper_32_bits(address);
809 if (size)
810 cmd->data[2] |= CMD_INV_IOMMU_PAGES_SIZE_MASK;
811 CMD_SET_TYPE(cmd, CMD_INV_IOTLB_PAGES);
812}
813
Joerg Roedelc99afa22011-11-21 18:19:25 +0100814static void build_complete_ppr(struct iommu_cmd *cmd, u16 devid, int pasid,
815 int status, int tag, bool gn)
816{
817 memset(cmd, 0, sizeof(*cmd));
818
819 cmd->data[0] = devid;
820 if (gn) {
Suravee Suthikulpanita919a012014-03-05 18:54:18 -0600821 cmd->data[1] = pasid;
Joerg Roedelc99afa22011-11-21 18:19:25 +0100822 cmd->data[2] = CMD_INV_IOMMU_PAGES_GN_MASK;
823 }
824 cmd->data[3] = tag & 0x1ff;
825 cmd->data[3] |= (status & PPR_STATUS_MASK) << PPR_STATUS_SHIFT;
826
827 CMD_SET_TYPE(cmd, CMD_COMPLETE_PPR);
828}
829
Joerg Roedel58fc7f12011-04-11 11:13:24 +0200830static void build_inv_all(struct iommu_cmd *cmd)
831{
832 memset(cmd, 0, sizeof(*cmd));
833 CMD_SET_TYPE(cmd, CMD_INV_ALL);
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200834}
835
Joerg Roedel7ef27982012-06-21 16:46:04 +0200836static void build_inv_irt(struct iommu_cmd *cmd, u16 devid)
837{
838 memset(cmd, 0, sizeof(*cmd));
839 cmd->data[0] = devid;
840 CMD_SET_TYPE(cmd, CMD_INV_IRT);
841}
842
Joerg Roedel431b2a22008-07-11 17:14:22 +0200843/*
Joerg Roedelb6c02712008-06-26 21:27:53 +0200844 * Writes the command to the IOMMUs command buffer and informs the
Joerg Roedelac0ea6e2011-04-06 18:38:20 +0200845 * hardware about the new command.
Joerg Roedel431b2a22008-07-11 17:14:22 +0200846 */
Joerg Roedelf1ca1512011-09-02 14:10:32 +0200847static int iommu_queue_command_sync(struct amd_iommu *iommu,
848 struct iommu_cmd *cmd,
849 bool sync)
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200850{
Joerg Roedelac0ea6e2011-04-06 18:38:20 +0200851 u32 left, tail, head, next_tail;
Joerg Roedel815b33f2011-04-06 17:26:49 +0200852 unsigned long flags;
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200853
Joerg Roedelac0ea6e2011-04-06 18:38:20 +0200854again:
Joerg Roedel815b33f2011-04-06 17:26:49 +0200855 spin_lock_irqsave(&iommu->lock, flags);
Joerg Roedelac0ea6e2011-04-06 18:38:20 +0200856
857 head = readl(iommu->mmio_base + MMIO_CMD_HEAD_OFFSET);
858 tail = readl(iommu->mmio_base + MMIO_CMD_TAIL_OFFSET);
Joerg Roedeldeba4bc2015-10-20 17:33:41 +0200859 next_tail = (tail + sizeof(*cmd)) % CMD_BUFFER_SIZE;
860 left = (head - next_tail) % CMD_BUFFER_SIZE;
Joerg Roedelac0ea6e2011-04-06 18:38:20 +0200861
862 if (left <= 2) {
863 struct iommu_cmd sync_cmd;
864 volatile u64 sem = 0;
865 int ret;
866
867 build_completion_wait(&sync_cmd, (u64)&sem);
868 copy_cmd_to_buffer(iommu, &sync_cmd, tail);
869
870 spin_unlock_irqrestore(&iommu->lock, flags);
871
872 if ((ret = wait_on_sem(&sem)) != 0)
873 return ret;
874
875 goto again;
Joerg Roedel136f78a2008-07-11 17:14:27 +0200876 }
877
Joerg Roedelac0ea6e2011-04-06 18:38:20 +0200878 copy_cmd_to_buffer(iommu, cmd, tail);
Joerg Roedel519c31b2008-08-14 19:55:15 +0200879
Joerg Roedelac0ea6e2011-04-06 18:38:20 +0200880 /* We need to sync now to make sure all commands are processed */
Joerg Roedelf1ca1512011-09-02 14:10:32 +0200881 iommu->need_sync = sync;
Joerg Roedelac0ea6e2011-04-06 18:38:20 +0200882
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200883 spin_unlock_irqrestore(&iommu->lock, flags);
884
Joerg Roedel815b33f2011-04-06 17:26:49 +0200885 return 0;
Joerg Roedel8d201962008-12-02 20:34:41 +0100886}
887
Joerg Roedelf1ca1512011-09-02 14:10:32 +0200888static int iommu_queue_command(struct amd_iommu *iommu, struct iommu_cmd *cmd)
889{
890 return iommu_queue_command_sync(iommu, cmd, true);
891}
892
Joerg Roedel8d201962008-12-02 20:34:41 +0100893/*
894 * This function queues a completion wait command into the command
895 * buffer of an IOMMU
896 */
Joerg Roedel8d201962008-12-02 20:34:41 +0100897static int iommu_completion_wait(struct amd_iommu *iommu)
898{
Joerg Roedel815b33f2011-04-06 17:26:49 +0200899 struct iommu_cmd cmd;
900 volatile u64 sem = 0;
Joerg Roedelac0ea6e2011-04-06 18:38:20 +0200901 int ret;
Joerg Roedel8d201962008-12-02 20:34:41 +0100902
903 if (!iommu->need_sync)
Joerg Roedel815b33f2011-04-06 17:26:49 +0200904 return 0;
Joerg Roedel8d201962008-12-02 20:34:41 +0100905
Joerg Roedel815b33f2011-04-06 17:26:49 +0200906 build_completion_wait(&cmd, (u64)&sem);
Joerg Roedel8d201962008-12-02 20:34:41 +0100907
Joerg Roedelf1ca1512011-09-02 14:10:32 +0200908 ret = iommu_queue_command_sync(iommu, &cmd, false);
Joerg Roedel8d201962008-12-02 20:34:41 +0100909 if (ret)
Joerg Roedel815b33f2011-04-06 17:26:49 +0200910 return ret;
Joerg Roedel8d201962008-12-02 20:34:41 +0100911
Joerg Roedelac0ea6e2011-04-06 18:38:20 +0200912 return wait_on_sem(&sem);
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200913}
914
Joerg Roedeld8c13082011-04-06 18:51:26 +0200915static int iommu_flush_dte(struct amd_iommu *iommu, u16 devid)
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200916{
917 struct iommu_cmd cmd;
918
Joerg Roedeld8c13082011-04-06 18:51:26 +0200919 build_inv_dte(&cmd, devid);
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200920
Joerg Roedeld8c13082011-04-06 18:51:26 +0200921 return iommu_queue_command(iommu, &cmd);
922}
923
Joerg Roedel7d0c5cc2011-04-07 08:16:10 +0200924static void iommu_flush_dte_all(struct amd_iommu *iommu)
925{
926 u32 devid;
927
928 for (devid = 0; devid <= 0xffff; ++devid)
929 iommu_flush_dte(iommu, devid);
930
931 iommu_completion_wait(iommu);
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200932}
933
934/*
Joerg Roedel7d0c5cc2011-04-07 08:16:10 +0200935 * This function uses heavy locking and may disable irqs for some time. But
936 * this is no issue because it is only called during resume.
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200937 */
Joerg Roedel7d0c5cc2011-04-07 08:16:10 +0200938static void iommu_flush_tlb_all(struct amd_iommu *iommu)
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200939{
Joerg Roedel7d0c5cc2011-04-07 08:16:10 +0200940 u32 dom_id;
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200941
Joerg Roedel7d0c5cc2011-04-07 08:16:10 +0200942 for (dom_id = 0; dom_id <= 0xffff; ++dom_id) {
943 struct iommu_cmd cmd;
944 build_inv_iommu_pages(&cmd, 0, CMD_INV_IOMMU_ALL_PAGES_ADDRESS,
945 dom_id, 1);
946 iommu_queue_command(iommu, &cmd);
947 }
Joerg Roedel431b2a22008-07-11 17:14:22 +0200948
Joerg Roedel7d0c5cc2011-04-07 08:16:10 +0200949 iommu_completion_wait(iommu);
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200950}
951
Joerg Roedel58fc7f12011-04-11 11:13:24 +0200952static void iommu_flush_all(struct amd_iommu *iommu)
953{
954 struct iommu_cmd cmd;
955
956 build_inv_all(&cmd);
957
958 iommu_queue_command(iommu, &cmd);
959 iommu_completion_wait(iommu);
960}
961
Joerg Roedel7ef27982012-06-21 16:46:04 +0200962static void iommu_flush_irt(struct amd_iommu *iommu, u16 devid)
963{
964 struct iommu_cmd cmd;
965
966 build_inv_irt(&cmd, devid);
967
968 iommu_queue_command(iommu, &cmd);
969}
970
971static void iommu_flush_irt_all(struct amd_iommu *iommu)
972{
973 u32 devid;
974
975 for (devid = 0; devid <= MAX_DEV_TABLE_ENTRIES; devid++)
976 iommu_flush_irt(iommu, devid);
977
978 iommu_completion_wait(iommu);
979}
980
Joerg Roedel7d0c5cc2011-04-07 08:16:10 +0200981void iommu_flush_all_caches(struct amd_iommu *iommu)
982{
Joerg Roedel58fc7f12011-04-11 11:13:24 +0200983 if (iommu_feature(iommu, FEATURE_IA)) {
984 iommu_flush_all(iommu);
985 } else {
986 iommu_flush_dte_all(iommu);
Joerg Roedel7ef27982012-06-21 16:46:04 +0200987 iommu_flush_irt_all(iommu);
Joerg Roedel58fc7f12011-04-11 11:13:24 +0200988 iommu_flush_tlb_all(iommu);
989 }
Joerg Roedel7d0c5cc2011-04-07 08:16:10 +0200990}
991
Joerg Roedel431b2a22008-07-11 17:14:22 +0200992/*
Joerg Roedelcb41ed82011-04-05 11:00:53 +0200993 * Command send function for flushing on-device TLB
994 */
Joerg Roedel6c542042011-06-09 17:07:31 +0200995static int device_flush_iotlb(struct iommu_dev_data *dev_data,
996 u64 address, size_t size)
Joerg Roedelcb41ed82011-04-05 11:00:53 +0200997{
Joerg Roedelcb41ed82011-04-05 11:00:53 +0200998 struct amd_iommu *iommu;
999 struct iommu_cmd cmd;
Joerg Roedelcb41ed82011-04-05 11:00:53 +02001000 int qdep;
1001
Joerg Roedelea61cdd2011-06-09 12:56:30 +02001002 qdep = dev_data->ats.qdep;
1003 iommu = amd_iommu_rlookup_table[dev_data->devid];
Joerg Roedelcb41ed82011-04-05 11:00:53 +02001004
Joerg Roedelea61cdd2011-06-09 12:56:30 +02001005 build_inv_iotlb_pages(&cmd, dev_data->devid, qdep, address, size);
Joerg Roedelcb41ed82011-04-05 11:00:53 +02001006
1007 return iommu_queue_command(iommu, &cmd);
1008}
1009
1010/*
Joerg Roedel431b2a22008-07-11 17:14:22 +02001011 * Command send function for invalidating a device table entry
1012 */
Joerg Roedel6c542042011-06-09 17:07:31 +02001013static int device_flush_dte(struct iommu_dev_data *dev_data)
Joerg Roedel3fa43652009-11-26 15:04:38 +01001014{
1015 struct amd_iommu *iommu;
Joerg Roedele25bfb52015-10-20 17:33:38 +02001016 u16 alias;
Joerg Roedelcb41ed82011-04-05 11:00:53 +02001017 int ret;
Joerg Roedel3fa43652009-11-26 15:04:38 +01001018
Joerg Roedel6c542042011-06-09 17:07:31 +02001019 iommu = amd_iommu_rlookup_table[dev_data->devid];
Joerg Roedele25bfb52015-10-20 17:33:38 +02001020 alias = amd_iommu_alias_table[dev_data->devid];
Joerg Roedel3fa43652009-11-26 15:04:38 +01001021
Joerg Roedelf62dda62011-06-09 12:55:35 +02001022 ret = iommu_flush_dte(iommu, dev_data->devid);
Joerg Roedele25bfb52015-10-20 17:33:38 +02001023 if (!ret && alias != dev_data->devid)
1024 ret = iommu_flush_dte(iommu, alias);
Joerg Roedelcb41ed82011-04-05 11:00:53 +02001025 if (ret)
1026 return ret;
1027
Joerg Roedelea61cdd2011-06-09 12:56:30 +02001028 if (dev_data->ats.enabled)
Joerg Roedel6c542042011-06-09 17:07:31 +02001029 ret = device_flush_iotlb(dev_data, 0, ~0UL);
Joerg Roedelcb41ed82011-04-05 11:00:53 +02001030
1031 return ret;
Joerg Roedel3fa43652009-11-26 15:04:38 +01001032}
1033
Joerg Roedel431b2a22008-07-11 17:14:22 +02001034/*
1035 * TLB invalidation function which is called from the mapping functions.
1036 * It invalidates a single PTE if the range to flush is within a single
1037 * page. Otherwise it flushes the whole TLB of the IOMMU.
1038 */
Joerg Roedel17b124b2011-04-06 18:01:35 +02001039static void __domain_flush_pages(struct protection_domain *domain,
1040 u64 address, size_t size, int pde)
Joerg Roedela19ae1e2008-06-26 21:27:55 +02001041{
Joerg Roedelcb41ed82011-04-05 11:00:53 +02001042 struct iommu_dev_data *dev_data;
Joerg Roedel11b64022011-04-06 11:49:28 +02001043 struct iommu_cmd cmd;
1044 int ret = 0, i;
Joerg Roedela19ae1e2008-06-26 21:27:55 +02001045
Joerg Roedel11b64022011-04-06 11:49:28 +02001046 build_inv_iommu_pages(&cmd, address, size, domain->id, pde);
Joerg Roedel999ba412008-07-03 19:35:08 +02001047
Joerg Roedel6de8ad92009-11-23 18:30:32 +01001048 for (i = 0; i < amd_iommus_present; ++i) {
1049 if (!domain->dev_iommu[i])
1050 continue;
1051
1052 /*
1053 * Devices of this domain are behind this IOMMU
1054 * We need a TLB flush
1055 */
Joerg Roedel11b64022011-04-06 11:49:28 +02001056 ret |= iommu_queue_command(amd_iommus[i], &cmd);
Joerg Roedel6de8ad92009-11-23 18:30:32 +01001057 }
1058
Joerg Roedelcb41ed82011-04-05 11:00:53 +02001059 list_for_each_entry(dev_data, &domain->dev_list, list) {
Joerg Roedelcb41ed82011-04-05 11:00:53 +02001060
Joerg Roedelea61cdd2011-06-09 12:56:30 +02001061 if (!dev_data->ats.enabled)
Joerg Roedelcb41ed82011-04-05 11:00:53 +02001062 continue;
1063
Joerg Roedel6c542042011-06-09 17:07:31 +02001064 ret |= device_flush_iotlb(dev_data, address, size);
Joerg Roedelcb41ed82011-04-05 11:00:53 +02001065 }
1066
Joerg Roedel11b64022011-04-06 11:49:28 +02001067 WARN_ON(ret);
Joerg Roedel6de8ad92009-11-23 18:30:32 +01001068}
1069
Joerg Roedel17b124b2011-04-06 18:01:35 +02001070static void domain_flush_pages(struct protection_domain *domain,
1071 u64 address, size_t size)
Joerg Roedel6de8ad92009-11-23 18:30:32 +01001072{
Joerg Roedel17b124b2011-04-06 18:01:35 +02001073 __domain_flush_pages(domain, address, size, 0);
Joerg Roedela19ae1e2008-06-26 21:27:55 +02001074}
Joerg Roedelb6c02712008-06-26 21:27:53 +02001075
Joerg Roedel1c655772008-09-04 18:40:05 +02001076/* Flush the whole IO/TLB for a given protection domain */
Joerg Roedel17b124b2011-04-06 18:01:35 +02001077static void domain_flush_tlb(struct protection_domain *domain)
Joerg Roedel1c655772008-09-04 18:40:05 +02001078{
Joerg Roedel17b124b2011-04-06 18:01:35 +02001079 __domain_flush_pages(domain, 0, CMD_INV_IOMMU_ALL_PAGES_ADDRESS, 0);
Joerg Roedel1c655772008-09-04 18:40:05 +02001080}
1081
Chris Wright42a49f92009-06-15 15:42:00 +02001082/* Flush the whole IO/TLB for a given protection domain - including PDE */
Joerg Roedel17b124b2011-04-06 18:01:35 +02001083static void domain_flush_tlb_pde(struct protection_domain *domain)
Chris Wright42a49f92009-06-15 15:42:00 +02001084{
Joerg Roedel17b124b2011-04-06 18:01:35 +02001085 __domain_flush_pages(domain, 0, CMD_INV_IOMMU_ALL_PAGES_ADDRESS, 1);
1086}
1087
1088static void domain_flush_complete(struct protection_domain *domain)
Joerg Roedelb6c02712008-06-26 21:27:53 +02001089{
1090 int i;
1091
1092 for (i = 0; i < amd_iommus_present; ++i) {
1093 if (!domain->dev_iommu[i])
1094 continue;
1095
1096 /*
1097 * Devices of this domain are behind this IOMMU
1098 * We need to wait for completion of all commands.
1099 */
1100 iommu_completion_wait(amd_iommus[i]);
1101 }
1102}
1103
Joerg Roedelb00d3bc2009-11-26 15:35:33 +01001104
Joerg Roedel43f49602008-12-02 21:01:12 +01001105/*
Joerg Roedelb00d3bc2009-11-26 15:35:33 +01001106 * This function flushes the DTEs for all devices in domain
Joerg Roedel43f49602008-12-02 21:01:12 +01001107 */
Joerg Roedel17b124b2011-04-06 18:01:35 +02001108static void domain_flush_devices(struct protection_domain *domain)
Joerg Roedelbfd1be12009-05-05 15:33:57 +02001109{
Joerg Roedelb00d3bc2009-11-26 15:35:33 +01001110 struct iommu_dev_data *dev_data;
Joerg Roedelb00d3bc2009-11-26 15:35:33 +01001111
1112 list_for_each_entry(dev_data, &domain->dev_list, list)
Joerg Roedel6c542042011-06-09 17:07:31 +02001113 device_flush_dte(dev_data);
Joerg Roedelb00d3bc2009-11-26 15:35:33 +01001114}
1115
Joerg Roedel431b2a22008-07-11 17:14:22 +02001116/****************************************************************************
1117 *
1118 * The functions below are used the create the page table mappings for
1119 * unity mapped regions.
1120 *
1121 ****************************************************************************/
1122
1123/*
Joerg Roedel308973d2009-11-24 17:43:32 +01001124 * This function is used to add another level to an IO page table. Adding
1125 * another level increases the size of the address space by 9 bits to a size up
1126 * to 64 bits.
1127 */
1128static bool increase_address_space(struct protection_domain *domain,
1129 gfp_t gfp)
1130{
1131 u64 *pte;
1132
1133 if (domain->mode == PAGE_MODE_6_LEVEL)
1134 /* address space already 64 bit large */
1135 return false;
1136
1137 pte = (void *)get_zeroed_page(gfp);
1138 if (!pte)
1139 return false;
1140
1141 *pte = PM_LEVEL_PDE(domain->mode,
1142 virt_to_phys(domain->pt_root));
1143 domain->pt_root = pte;
1144 domain->mode += 1;
1145 domain->updated = true;
1146
1147 return true;
1148}
1149
1150static u64 *alloc_pte(struct protection_domain *domain,
1151 unsigned long address,
Joerg Roedelcbb9d722010-01-15 14:41:15 +01001152 unsigned long page_size,
Joerg Roedel308973d2009-11-24 17:43:32 +01001153 u64 **pte_page,
1154 gfp_t gfp)
1155{
Joerg Roedelcbb9d722010-01-15 14:41:15 +01001156 int level, end_lvl;
Joerg Roedel308973d2009-11-24 17:43:32 +01001157 u64 *pte, *page;
Joerg Roedelcbb9d722010-01-15 14:41:15 +01001158
1159 BUG_ON(!is_power_of_2(page_size));
Joerg Roedel308973d2009-11-24 17:43:32 +01001160
1161 while (address > PM_LEVEL_SIZE(domain->mode))
1162 increase_address_space(domain, gfp);
1163
Joerg Roedelcbb9d722010-01-15 14:41:15 +01001164 level = domain->mode - 1;
1165 pte = &domain->pt_root[PM_LEVEL_INDEX(level, address)];
1166 address = PAGE_SIZE_ALIGN(address, page_size);
1167 end_lvl = PAGE_SIZE_LEVEL(page_size);
Joerg Roedel308973d2009-11-24 17:43:32 +01001168
1169 while (level > end_lvl) {
1170 if (!IOMMU_PTE_PRESENT(*pte)) {
1171 page = (u64 *)get_zeroed_page(gfp);
1172 if (!page)
1173 return NULL;
1174 *pte = PM_LEVEL_PDE(level, virt_to_phys(page));
1175 }
1176
Joerg Roedelcbb9d722010-01-15 14:41:15 +01001177 /* No level skipping support yet */
1178 if (PM_PTE_LEVEL(*pte) != level)
1179 return NULL;
1180
Joerg Roedel308973d2009-11-24 17:43:32 +01001181 level -= 1;
1182
1183 pte = IOMMU_PTE_PAGE(*pte);
1184
1185 if (pte_page && level == end_lvl)
1186 *pte_page = pte;
1187
1188 pte = &pte[PM_LEVEL_INDEX(level, address)];
1189 }
1190
1191 return pte;
1192}
1193
1194/*
1195 * This function checks if there is a PTE for a given dma address. If
1196 * there is one, it returns the pointer to it.
1197 */
Joerg Roedel3039ca12015-04-01 14:58:48 +02001198static u64 *fetch_pte(struct protection_domain *domain,
1199 unsigned long address,
1200 unsigned long *page_size)
Joerg Roedel308973d2009-11-24 17:43:32 +01001201{
1202 int level;
1203 u64 *pte;
1204
Joerg Roedel24cd7722010-01-19 17:27:39 +01001205 if (address > PM_LEVEL_SIZE(domain->mode))
1206 return NULL;
Joerg Roedel308973d2009-11-24 17:43:32 +01001207
Joerg Roedel3039ca12015-04-01 14:58:48 +02001208 level = domain->mode - 1;
1209 pte = &domain->pt_root[PM_LEVEL_INDEX(level, address)];
1210 *page_size = PTE_LEVEL_PAGE_SIZE(level);
Joerg Roedel24cd7722010-01-19 17:27:39 +01001211
1212 while (level > 0) {
1213
1214 /* Not Present */
Joerg Roedel308973d2009-11-24 17:43:32 +01001215 if (!IOMMU_PTE_PRESENT(*pte))
1216 return NULL;
1217
Joerg Roedel24cd7722010-01-19 17:27:39 +01001218 /* Large PTE */
Joerg Roedel3039ca12015-04-01 14:58:48 +02001219 if (PM_PTE_LEVEL(*pte) == 7 ||
1220 PM_PTE_LEVEL(*pte) == 0)
1221 break;
Joerg Roedel24cd7722010-01-19 17:27:39 +01001222
1223 /* No level skipping support yet */
1224 if (PM_PTE_LEVEL(*pte) != level)
1225 return NULL;
1226
Joerg Roedel308973d2009-11-24 17:43:32 +01001227 level -= 1;
1228
Joerg Roedel24cd7722010-01-19 17:27:39 +01001229 /* Walk to the next level */
Joerg Roedel3039ca12015-04-01 14:58:48 +02001230 pte = IOMMU_PTE_PAGE(*pte);
1231 pte = &pte[PM_LEVEL_INDEX(level, address)];
1232 *page_size = PTE_LEVEL_PAGE_SIZE(level);
1233 }
1234
1235 if (PM_PTE_LEVEL(*pte) == 0x07) {
1236 unsigned long pte_mask;
1237
1238 /*
1239 * If we have a series of large PTEs, make
1240 * sure to return a pointer to the first one.
1241 */
1242 *page_size = pte_mask = PTE_PAGE_SIZE(*pte);
1243 pte_mask = ~((PAGE_SIZE_PTE_COUNT(pte_mask) << 3) - 1);
1244 pte = (u64 *)(((unsigned long)pte) & pte_mask);
Joerg Roedel308973d2009-11-24 17:43:32 +01001245 }
1246
1247 return pte;
1248}
1249
1250/*
Joerg Roedel431b2a22008-07-11 17:14:22 +02001251 * Generic mapping functions. It maps a physical address into a DMA
1252 * address space. It allocates the page table pages if necessary.
1253 * In the future it can be extended to a generic mapping function
1254 * supporting all features of AMD IOMMU page tables like level skipping
1255 * and full 64 bit address spaces.
1256 */
Joerg Roedel38e817f2008-12-02 17:27:52 +01001257static int iommu_map_page(struct protection_domain *dom,
1258 unsigned long bus_addr,
1259 unsigned long phys_addr,
Joerg Roedelabdc5eb2009-09-03 11:33:51 +02001260 int prot,
Joerg Roedelcbb9d722010-01-15 14:41:15 +01001261 unsigned long page_size)
Joerg Roedelbd0e5212008-06-26 21:27:56 +02001262{
Joerg Roedel8bda3092009-05-12 12:02:46 +02001263 u64 __pte, *pte;
Joerg Roedelcbb9d722010-01-15 14:41:15 +01001264 int i, count;
Joerg Roedelabdc5eb2009-09-03 11:33:51 +02001265
Joerg Roedeld4b03662015-04-01 14:58:52 +02001266 BUG_ON(!IS_ALIGNED(bus_addr, page_size));
1267 BUG_ON(!IS_ALIGNED(phys_addr, page_size));
1268
Joerg Roedelbad1cac2009-09-02 16:52:23 +02001269 if (!(prot & IOMMU_PROT_MASK))
Joerg Roedelbd0e5212008-06-26 21:27:56 +02001270 return -EINVAL;
1271
Joerg Roedeld4b03662015-04-01 14:58:52 +02001272 count = PAGE_SIZE_PTE_COUNT(page_size);
1273 pte = alloc_pte(dom, bus_addr, page_size, NULL, GFP_KERNEL);
Joerg Roedelbd0e5212008-06-26 21:27:56 +02001274
Maurizio Lombardi63eaa752014-09-11 12:28:03 +02001275 if (!pte)
1276 return -ENOMEM;
1277
Joerg Roedelcbb9d722010-01-15 14:41:15 +01001278 for (i = 0; i < count; ++i)
1279 if (IOMMU_PTE_PRESENT(pte[i]))
1280 return -EBUSY;
Joerg Roedelbd0e5212008-06-26 21:27:56 +02001281
Joerg Roedeld4b03662015-04-01 14:58:52 +02001282 if (count > 1) {
Joerg Roedelcbb9d722010-01-15 14:41:15 +01001283 __pte = PAGE_SIZE_PTE(phys_addr, page_size);
1284 __pte |= PM_LEVEL_ENC(7) | IOMMU_PTE_P | IOMMU_PTE_FC;
1285 } else
1286 __pte = phys_addr | IOMMU_PTE_P | IOMMU_PTE_FC;
1287
Joerg Roedelbd0e5212008-06-26 21:27:56 +02001288 if (prot & IOMMU_PROT_IR)
1289 __pte |= IOMMU_PTE_IR;
1290 if (prot & IOMMU_PROT_IW)
1291 __pte |= IOMMU_PTE_IW;
1292
Joerg Roedelcbb9d722010-01-15 14:41:15 +01001293 for (i = 0; i < count; ++i)
1294 pte[i] = __pte;
Joerg Roedelbd0e5212008-06-26 21:27:56 +02001295
Joerg Roedel04bfdd82009-09-02 16:00:23 +02001296 update_domain(dom);
1297
Joerg Roedelbd0e5212008-06-26 21:27:56 +02001298 return 0;
1299}
1300
Joerg Roedel24cd7722010-01-19 17:27:39 +01001301static unsigned long iommu_unmap_page(struct protection_domain *dom,
1302 unsigned long bus_addr,
1303 unsigned long page_size)
Joerg Roedeleb74ff62008-12-02 19:59:10 +01001304{
Joerg Roedel71b390e2015-04-01 14:58:49 +02001305 unsigned long long unmapped;
1306 unsigned long unmap_size;
Joerg Roedel24cd7722010-01-19 17:27:39 +01001307 u64 *pte;
Joerg Roedeleb74ff62008-12-02 19:59:10 +01001308
Joerg Roedel24cd7722010-01-19 17:27:39 +01001309 BUG_ON(!is_power_of_2(page_size));
1310
1311 unmapped = 0;
1312
1313 while (unmapped < page_size) {
1314
Joerg Roedel71b390e2015-04-01 14:58:49 +02001315 pte = fetch_pte(dom, bus_addr, &unmap_size);
Joerg Roedel24cd7722010-01-19 17:27:39 +01001316
Joerg Roedel71b390e2015-04-01 14:58:49 +02001317 if (pte) {
1318 int i, count;
Joerg Roedel24cd7722010-01-19 17:27:39 +01001319
Joerg Roedel71b390e2015-04-01 14:58:49 +02001320 count = PAGE_SIZE_PTE_COUNT(unmap_size);
Joerg Roedel24cd7722010-01-19 17:27:39 +01001321 for (i = 0; i < count; i++)
1322 pte[i] = 0ULL;
1323 }
1324
1325 bus_addr = (bus_addr & ~(unmap_size - 1)) + unmap_size;
1326 unmapped += unmap_size;
1327 }
1328
Alex Williamson60d0ca32013-06-21 14:33:19 -06001329 BUG_ON(unmapped && !is_power_of_2(unmapped));
Joerg Roedel24cd7722010-01-19 17:27:39 +01001330
1331 return unmapped;
Joerg Roedeleb74ff62008-12-02 19:59:10 +01001332}
Joerg Roedeleb74ff62008-12-02 19:59:10 +01001333
Joerg Roedel431b2a22008-07-11 17:14:22 +02001334/****************************************************************************
1335 *
1336 * The next functions belong to the address allocator for the dma_ops
1337 * interface functions. They work like the allocators in the other IOMMU
1338 * drivers. Its basically a bitmap which marks the allocated pages in
1339 * the aperture. Maybe it could be enhanced in the future to a more
1340 * efficient allocator.
1341 *
1342 ****************************************************************************/
Joerg Roedeld3086442008-06-26 21:27:57 +02001343
Joerg Roedel431b2a22008-07-11 17:14:22 +02001344/*
Joerg Roedel384de722009-05-15 12:30:05 +02001345 * The address allocator core functions.
Joerg Roedel431b2a22008-07-11 17:14:22 +02001346 *
1347 * called with domain->lock held
1348 */
Joerg Roedel384de722009-05-15 12:30:05 +02001349
Joerg Roedel9cabe892009-05-18 16:38:55 +02001350/*
Joerg Roedel171e7b32009-11-24 17:47:56 +01001351 * Used to reserve address ranges in the aperture (e.g. for exclusion
1352 * ranges.
1353 */
1354static void dma_ops_reserve_addresses(struct dma_ops_domain *dom,
1355 unsigned long start_page,
1356 unsigned int pages)
1357{
1358 unsigned int i, last_page = dom->aperture_size >> PAGE_SHIFT;
1359
1360 if (start_page + pages > last_page)
1361 pages = last_page - start_page;
1362
1363 for (i = start_page; i < start_page + pages; ++i) {
1364 int index = i / APERTURE_RANGE_PAGES;
1365 int page = i % APERTURE_RANGE_PAGES;
1366 __set_bit(page, dom->aperture[index]->bitmap);
1367 }
1368}
1369
1370/*
Joerg Roedel9cabe892009-05-18 16:38:55 +02001371 * This function is used to add a new aperture range to an existing
1372 * aperture in case of dma_ops domain allocation or address allocation
1373 * failure.
1374 */
Joerg Roedel576175c2009-11-23 19:08:46 +01001375static int alloc_new_range(struct dma_ops_domain *dma_dom,
Joerg Roedel9cabe892009-05-18 16:38:55 +02001376 bool populate, gfp_t gfp)
1377{
1378 int index = dma_dom->aperture_size >> APERTURE_RANGE_SHIFT;
Joerg Roedel576175c2009-11-23 19:08:46 +01001379 struct amd_iommu *iommu;
Joerg Roedel5d7c94c2015-04-01 14:58:50 +02001380 unsigned long i, old_size, pte_pgsize;
Joerg Roedel9cabe892009-05-18 16:38:55 +02001381
Joerg Roedelf5e97052009-05-22 12:31:53 +02001382#ifdef CONFIG_IOMMU_STRESS
1383 populate = false;
1384#endif
1385
Joerg Roedel9cabe892009-05-18 16:38:55 +02001386 if (index >= APERTURE_MAX_RANGES)
1387 return -ENOMEM;
1388
1389 dma_dom->aperture[index] = kzalloc(sizeof(struct aperture_range), gfp);
1390 if (!dma_dom->aperture[index])
1391 return -ENOMEM;
1392
1393 dma_dom->aperture[index]->bitmap = (void *)get_zeroed_page(gfp);
1394 if (!dma_dom->aperture[index]->bitmap)
1395 goto out_free;
1396
1397 dma_dom->aperture[index]->offset = dma_dom->aperture_size;
1398
1399 if (populate) {
1400 unsigned long address = dma_dom->aperture_size;
1401 int i, num_ptes = APERTURE_RANGE_PAGES / 512;
1402 u64 *pte, *pte_page;
1403
1404 for (i = 0; i < num_ptes; ++i) {
Joerg Roedelcbb9d722010-01-15 14:41:15 +01001405 pte = alloc_pte(&dma_dom->domain, address, PAGE_SIZE,
Joerg Roedel9cabe892009-05-18 16:38:55 +02001406 &pte_page, gfp);
1407 if (!pte)
1408 goto out_free;
1409
1410 dma_dom->aperture[index]->pte_pages[i] = pte_page;
1411
1412 address += APERTURE_RANGE_SIZE / 64;
1413 }
1414 }
1415
Joerg Roedel17f5b562011-07-06 17:14:44 +02001416 old_size = dma_dom->aperture_size;
Joerg Roedel9cabe892009-05-18 16:38:55 +02001417 dma_dom->aperture_size += APERTURE_RANGE_SIZE;
1418
Joerg Roedel17f5b562011-07-06 17:14:44 +02001419 /* Reserve address range used for MSI messages */
1420 if (old_size < MSI_ADDR_BASE_LO &&
1421 dma_dom->aperture_size > MSI_ADDR_BASE_LO) {
1422 unsigned long spage;
1423 int pages;
1424
1425 pages = iommu_num_pages(MSI_ADDR_BASE_LO, 0x10000, PAGE_SIZE);
1426 spage = MSI_ADDR_BASE_LO >> PAGE_SHIFT;
1427
1428 dma_ops_reserve_addresses(dma_dom, spage, pages);
1429 }
1430
Uwe Kleine-Königb5950762010-11-01 15:38:34 -04001431 /* Initialize the exclusion range if necessary */
Joerg Roedel576175c2009-11-23 19:08:46 +01001432 for_each_iommu(iommu) {
1433 if (iommu->exclusion_start &&
1434 iommu->exclusion_start >= dma_dom->aperture[index]->offset
1435 && iommu->exclusion_start < dma_dom->aperture_size) {
1436 unsigned long startpage;
1437 int pages = iommu_num_pages(iommu->exclusion_start,
1438 iommu->exclusion_length,
1439 PAGE_SIZE);
1440 startpage = iommu->exclusion_start >> PAGE_SHIFT;
1441 dma_ops_reserve_addresses(dma_dom, startpage, pages);
1442 }
Joerg Roedel00cd1222009-05-19 09:52:40 +02001443 }
1444
1445 /*
1446 * Check for areas already mapped as present in the new aperture
1447 * range and mark those pages as reserved in the allocator. Such
1448 * mappings may already exist as a result of requested unity
1449 * mappings for devices.
1450 */
1451 for (i = dma_dom->aperture[index]->offset;
1452 i < dma_dom->aperture_size;
Joerg Roedel5d7c94c2015-04-01 14:58:50 +02001453 i += pte_pgsize) {
Joerg Roedel3039ca12015-04-01 14:58:48 +02001454 u64 *pte = fetch_pte(&dma_dom->domain, i, &pte_pgsize);
Joerg Roedel00cd1222009-05-19 09:52:40 +02001455 if (!pte || !IOMMU_PTE_PRESENT(*pte))
1456 continue;
1457
Joerg Roedel5d7c94c2015-04-01 14:58:50 +02001458 dma_ops_reserve_addresses(dma_dom, i >> PAGE_SHIFT,
1459 pte_pgsize >> 12);
Joerg Roedel00cd1222009-05-19 09:52:40 +02001460 }
1461
Joerg Roedel04bfdd82009-09-02 16:00:23 +02001462 update_domain(&dma_dom->domain);
1463
Joerg Roedel9cabe892009-05-18 16:38:55 +02001464 return 0;
1465
1466out_free:
Joerg Roedel04bfdd82009-09-02 16:00:23 +02001467 update_domain(&dma_dom->domain);
1468
Joerg Roedel9cabe892009-05-18 16:38:55 +02001469 free_page((unsigned long)dma_dom->aperture[index]->bitmap);
1470
1471 kfree(dma_dom->aperture[index]);
1472 dma_dom->aperture[index] = NULL;
1473
1474 return -ENOMEM;
1475}
1476
Joerg Roedel384de722009-05-15 12:30:05 +02001477static unsigned long dma_ops_area_alloc(struct device *dev,
1478 struct dma_ops_domain *dom,
1479 unsigned int pages,
1480 unsigned long align_mask,
1481 u64 dma_mask,
1482 unsigned long start)
1483{
Joerg Roedel803b8cb42009-05-18 15:32:48 +02001484 unsigned long next_bit = dom->next_address % APERTURE_RANGE_SIZE;
Joerg Roedel384de722009-05-15 12:30:05 +02001485 int max_index = dom->aperture_size >> APERTURE_RANGE_SHIFT;
1486 int i = start >> APERTURE_RANGE_SHIFT;
Joerg Roedele6aabee2015-05-27 09:26:09 +02001487 unsigned long boundary_size, mask;
Joerg Roedel384de722009-05-15 12:30:05 +02001488 unsigned long address = -1;
1489 unsigned long limit;
1490
Joerg Roedel803b8cb42009-05-18 15:32:48 +02001491 next_bit >>= PAGE_SHIFT;
1492
Joerg Roedele6aabee2015-05-27 09:26:09 +02001493 mask = dma_get_seg_boundary(dev);
1494
1495 boundary_size = mask + 1 ? ALIGN(mask + 1, PAGE_SIZE) >> PAGE_SHIFT :
1496 1UL << (BITS_PER_LONG - PAGE_SHIFT);
Joerg Roedel384de722009-05-15 12:30:05 +02001497
1498 for (;i < max_index; ++i) {
1499 unsigned long offset = dom->aperture[i]->offset >> PAGE_SHIFT;
1500
1501 if (dom->aperture[i]->offset >= dma_mask)
1502 break;
1503
1504 limit = iommu_device_max_index(APERTURE_RANGE_PAGES, offset,
1505 dma_mask >> PAGE_SHIFT);
1506
1507 address = iommu_area_alloc(dom->aperture[i]->bitmap,
1508 limit, next_bit, pages, 0,
1509 boundary_size, align_mask);
1510 if (address != -1) {
1511 address = dom->aperture[i]->offset +
1512 (address << PAGE_SHIFT);
Joerg Roedel803b8cb42009-05-18 15:32:48 +02001513 dom->next_address = address + (pages << PAGE_SHIFT);
Joerg Roedel384de722009-05-15 12:30:05 +02001514 break;
1515 }
1516
1517 next_bit = 0;
1518 }
1519
1520 return address;
1521}
1522
Joerg Roedeld3086442008-06-26 21:27:57 +02001523static unsigned long dma_ops_alloc_addresses(struct device *dev,
1524 struct dma_ops_domain *dom,
Joerg Roedel6d4f3432008-09-04 19:18:02 +02001525 unsigned int pages,
Joerg Roedel832a90c2008-09-18 15:54:23 +02001526 unsigned long align_mask,
1527 u64 dma_mask)
Joerg Roedeld3086442008-06-26 21:27:57 +02001528{
Joerg Roedeld3086442008-06-26 21:27:57 +02001529 unsigned long address;
Joerg Roedeld3086442008-06-26 21:27:57 +02001530
Joerg Roedelfe16f082009-05-22 12:27:53 +02001531#ifdef CONFIG_IOMMU_STRESS
1532 dom->next_address = 0;
1533 dom->need_flush = true;
1534#endif
Joerg Roedeld3086442008-06-26 21:27:57 +02001535
Joerg Roedel384de722009-05-15 12:30:05 +02001536 address = dma_ops_area_alloc(dev, dom, pages, align_mask,
Joerg Roedel803b8cb42009-05-18 15:32:48 +02001537 dma_mask, dom->next_address);
Joerg Roedeld3086442008-06-26 21:27:57 +02001538
Joerg Roedel1c655772008-09-04 18:40:05 +02001539 if (address == -1) {
Joerg Roedel803b8cb42009-05-18 15:32:48 +02001540 dom->next_address = 0;
Joerg Roedel384de722009-05-15 12:30:05 +02001541 address = dma_ops_area_alloc(dev, dom, pages, align_mask,
1542 dma_mask, 0);
Joerg Roedel1c655772008-09-04 18:40:05 +02001543 dom->need_flush = true;
1544 }
Joerg Roedeld3086442008-06-26 21:27:57 +02001545
Joerg Roedel384de722009-05-15 12:30:05 +02001546 if (unlikely(address == -1))
FUJITA Tomonori8fd524b2009-11-15 21:19:53 +09001547 address = DMA_ERROR_CODE;
Joerg Roedeld3086442008-06-26 21:27:57 +02001548
1549 WARN_ON((address + (PAGE_SIZE*pages)) > dom->aperture_size);
1550
1551 return address;
1552}
1553
Joerg Roedel431b2a22008-07-11 17:14:22 +02001554/*
1555 * The address free function.
1556 *
1557 * called with domain->lock held
1558 */
Joerg Roedeld3086442008-06-26 21:27:57 +02001559static void dma_ops_free_addresses(struct dma_ops_domain *dom,
1560 unsigned long address,
1561 unsigned int pages)
1562{
Joerg Roedel384de722009-05-15 12:30:05 +02001563 unsigned i = address >> APERTURE_RANGE_SHIFT;
1564 struct aperture_range *range = dom->aperture[i];
Joerg Roedel80be3082008-11-06 14:59:05 +01001565
Joerg Roedel384de722009-05-15 12:30:05 +02001566 BUG_ON(i >= APERTURE_MAX_RANGES || range == NULL);
1567
Joerg Roedel47bccd62009-05-22 12:40:54 +02001568#ifdef CONFIG_IOMMU_STRESS
1569 if (i < 4)
1570 return;
1571#endif
1572
Joerg Roedel803b8cb42009-05-18 15:32:48 +02001573 if (address >= dom->next_address)
Joerg Roedel80be3082008-11-06 14:59:05 +01001574 dom->need_flush = true;
Joerg Roedel384de722009-05-15 12:30:05 +02001575
1576 address = (address % APERTURE_RANGE_SIZE) >> PAGE_SHIFT;
Joerg Roedel803b8cb42009-05-18 15:32:48 +02001577
Akinobu Mitaa66022c2009-12-15 16:48:28 -08001578 bitmap_clear(range->bitmap, address, pages);
Joerg Roedel384de722009-05-15 12:30:05 +02001579
Joerg Roedeld3086442008-06-26 21:27:57 +02001580}
1581
Joerg Roedel431b2a22008-07-11 17:14:22 +02001582/****************************************************************************
1583 *
1584 * The next functions belong to the domain allocation. A domain is
1585 * allocated for every IOMMU as the default domain. If device isolation
1586 * is enabled, every device get its own domain. The most important thing
1587 * about domains is the page table mapping the DMA address space they
1588 * contain.
1589 *
1590 ****************************************************************************/
1591
Joerg Roedelaeb26f52009-11-20 16:44:01 +01001592/*
1593 * This function adds a protection domain to the global protection domain list
1594 */
1595static void add_domain_to_list(struct protection_domain *domain)
1596{
1597 unsigned long flags;
1598
1599 spin_lock_irqsave(&amd_iommu_pd_lock, flags);
1600 list_add(&domain->list, &amd_iommu_pd_list);
1601 spin_unlock_irqrestore(&amd_iommu_pd_lock, flags);
1602}
1603
1604/*
1605 * This function removes a protection domain to the global
1606 * protection domain list
1607 */
1608static void del_domain_from_list(struct protection_domain *domain)
1609{
1610 unsigned long flags;
1611
1612 spin_lock_irqsave(&amd_iommu_pd_lock, flags);
1613 list_del(&domain->list);
1614 spin_unlock_irqrestore(&amd_iommu_pd_lock, flags);
1615}
1616
Joerg Roedelec487d12008-06-26 21:27:58 +02001617static u16 domain_id_alloc(void)
1618{
1619 unsigned long flags;
1620 int id;
1621
1622 write_lock_irqsave(&amd_iommu_devtable_lock, flags);
1623 id = find_first_zero_bit(amd_iommu_pd_alloc_bitmap, MAX_DOMAIN_ID);
1624 BUG_ON(id == 0);
1625 if (id > 0 && id < MAX_DOMAIN_ID)
1626 __set_bit(id, amd_iommu_pd_alloc_bitmap);
1627 else
1628 id = 0;
1629 write_unlock_irqrestore(&amd_iommu_devtable_lock, flags);
1630
1631 return id;
1632}
1633
Joerg Roedela2acfb72008-12-02 18:28:53 +01001634static void domain_id_free(int id)
1635{
1636 unsigned long flags;
1637
1638 write_lock_irqsave(&amd_iommu_devtable_lock, flags);
1639 if (id > 0 && id < MAX_DOMAIN_ID)
1640 __clear_bit(id, amd_iommu_pd_alloc_bitmap);
1641 write_unlock_irqrestore(&amd_iommu_devtable_lock, flags);
1642}
Joerg Roedela2acfb72008-12-02 18:28:53 +01001643
Joerg Roedel5c34c402013-06-20 20:22:58 +02001644#define DEFINE_FREE_PT_FN(LVL, FN) \
1645static void free_pt_##LVL (unsigned long __pt) \
1646{ \
1647 unsigned long p; \
1648 u64 *pt; \
1649 int i; \
1650 \
1651 pt = (u64 *)__pt; \
1652 \
1653 for (i = 0; i < 512; ++i) { \
Joerg Roedel0b3fff542015-06-18 10:48:34 +02001654 /* PTE present? */ \
Joerg Roedel5c34c402013-06-20 20:22:58 +02001655 if (!IOMMU_PTE_PRESENT(pt[i])) \
1656 continue; \
1657 \
Joerg Roedel0b3fff542015-06-18 10:48:34 +02001658 /* Large PTE? */ \
1659 if (PM_PTE_LEVEL(pt[i]) == 0 || \
1660 PM_PTE_LEVEL(pt[i]) == 7) \
1661 continue; \
1662 \
Joerg Roedel5c34c402013-06-20 20:22:58 +02001663 p = (unsigned long)IOMMU_PTE_PAGE(pt[i]); \
1664 FN(p); \
1665 } \
1666 free_page((unsigned long)pt); \
1667}
1668
1669DEFINE_FREE_PT_FN(l2, free_page)
1670DEFINE_FREE_PT_FN(l3, free_pt_l2)
1671DEFINE_FREE_PT_FN(l4, free_pt_l3)
1672DEFINE_FREE_PT_FN(l5, free_pt_l4)
1673DEFINE_FREE_PT_FN(l6, free_pt_l5)
1674
Joerg Roedel86db2e52008-12-02 18:20:21 +01001675static void free_pagetable(struct protection_domain *domain)
Joerg Roedelec487d12008-06-26 21:27:58 +02001676{
Joerg Roedel5c34c402013-06-20 20:22:58 +02001677 unsigned long root = (unsigned long)domain->pt_root;
Joerg Roedelec487d12008-06-26 21:27:58 +02001678
Joerg Roedel5c34c402013-06-20 20:22:58 +02001679 switch (domain->mode) {
1680 case PAGE_MODE_NONE:
1681 break;
1682 case PAGE_MODE_1_LEVEL:
1683 free_page(root);
1684 break;
1685 case PAGE_MODE_2_LEVEL:
1686 free_pt_l2(root);
1687 break;
1688 case PAGE_MODE_3_LEVEL:
1689 free_pt_l3(root);
1690 break;
1691 case PAGE_MODE_4_LEVEL:
1692 free_pt_l4(root);
1693 break;
1694 case PAGE_MODE_5_LEVEL:
1695 free_pt_l5(root);
1696 break;
1697 case PAGE_MODE_6_LEVEL:
1698 free_pt_l6(root);
1699 break;
1700 default:
1701 BUG();
Joerg Roedelec487d12008-06-26 21:27:58 +02001702 }
Joerg Roedelec487d12008-06-26 21:27:58 +02001703}
1704
Joerg Roedelb16137b2011-11-21 16:50:23 +01001705static void free_gcr3_tbl_level1(u64 *tbl)
1706{
1707 u64 *ptr;
1708 int i;
1709
1710 for (i = 0; i < 512; ++i) {
1711 if (!(tbl[i] & GCR3_VALID))
1712 continue;
1713
1714 ptr = __va(tbl[i] & PAGE_MASK);
1715
1716 free_page((unsigned long)ptr);
1717 }
1718}
1719
1720static void free_gcr3_tbl_level2(u64 *tbl)
1721{
1722 u64 *ptr;
1723 int i;
1724
1725 for (i = 0; i < 512; ++i) {
1726 if (!(tbl[i] & GCR3_VALID))
1727 continue;
1728
1729 ptr = __va(tbl[i] & PAGE_MASK);
1730
1731 free_gcr3_tbl_level1(ptr);
1732 }
1733}
1734
Joerg Roedel52815b72011-11-17 17:24:28 +01001735static void free_gcr3_table(struct protection_domain *domain)
1736{
Joerg Roedelb16137b2011-11-21 16:50:23 +01001737 if (domain->glx == 2)
1738 free_gcr3_tbl_level2(domain->gcr3_tbl);
1739 else if (domain->glx == 1)
1740 free_gcr3_tbl_level1(domain->gcr3_tbl);
Joerg Roedel23d3a982015-08-13 11:15:13 +02001741 else
1742 BUG_ON(domain->glx != 0);
Joerg Roedelb16137b2011-11-21 16:50:23 +01001743
Joerg Roedel52815b72011-11-17 17:24:28 +01001744 free_page((unsigned long)domain->gcr3_tbl);
1745}
1746
Joerg Roedel431b2a22008-07-11 17:14:22 +02001747/*
1748 * Free a domain, only used if something went wrong in the
1749 * allocation path and we need to free an already allocated page table
1750 */
Joerg Roedelec487d12008-06-26 21:27:58 +02001751static void dma_ops_domain_free(struct dma_ops_domain *dom)
1752{
Joerg Roedel384de722009-05-15 12:30:05 +02001753 int i;
1754
Joerg Roedelec487d12008-06-26 21:27:58 +02001755 if (!dom)
1756 return;
1757
Joerg Roedelaeb26f52009-11-20 16:44:01 +01001758 del_domain_from_list(&dom->domain);
1759
Joerg Roedel86db2e52008-12-02 18:20:21 +01001760 free_pagetable(&dom->domain);
Joerg Roedelec487d12008-06-26 21:27:58 +02001761
Joerg Roedel384de722009-05-15 12:30:05 +02001762 for (i = 0; i < APERTURE_MAX_RANGES; ++i) {
1763 if (!dom->aperture[i])
1764 continue;
1765 free_page((unsigned long)dom->aperture[i]->bitmap);
1766 kfree(dom->aperture[i]);
1767 }
Joerg Roedelec487d12008-06-26 21:27:58 +02001768
1769 kfree(dom);
1770}
1771
Joerg Roedel431b2a22008-07-11 17:14:22 +02001772/*
1773 * Allocates a new protection domain usable for the dma_ops functions.
Uwe Kleine-Königb5950762010-11-01 15:38:34 -04001774 * It also initializes the page table and the address allocator data
Joerg Roedel431b2a22008-07-11 17:14:22 +02001775 * structures required for the dma_ops interface
1776 */
Joerg Roedel87a64d52009-11-24 17:26:43 +01001777static struct dma_ops_domain *dma_ops_domain_alloc(void)
Joerg Roedelec487d12008-06-26 21:27:58 +02001778{
1779 struct dma_ops_domain *dma_dom;
Joerg Roedelec487d12008-06-26 21:27:58 +02001780
1781 dma_dom = kzalloc(sizeof(struct dma_ops_domain), GFP_KERNEL);
1782 if (!dma_dom)
1783 return NULL;
1784
Joerg Roedel7a5a5662015-06-30 08:56:11 +02001785 if (protection_domain_init(&dma_dom->domain))
Joerg Roedelec487d12008-06-26 21:27:58 +02001786 goto free_dma_dom;
Joerg Roedel7a5a5662015-06-30 08:56:11 +02001787
Joerg Roedel8f7a0172009-09-02 16:55:24 +02001788 dma_dom->domain.mode = PAGE_MODE_2_LEVEL;
Joerg Roedelec487d12008-06-26 21:27:58 +02001789 dma_dom->domain.pt_root = (void *)get_zeroed_page(GFP_KERNEL);
Joerg Roedel9fdb19d2008-12-02 17:46:25 +01001790 dma_dom->domain.flags = PD_DMA_OPS_MASK;
Joerg Roedelec487d12008-06-26 21:27:58 +02001791 dma_dom->domain.priv = dma_dom;
1792 if (!dma_dom->domain.pt_root)
1793 goto free_dma_dom;
Joerg Roedelec487d12008-06-26 21:27:58 +02001794
Joerg Roedel1c655772008-09-04 18:40:05 +02001795 dma_dom->need_flush = false;
1796
Joerg Roedelaeb26f52009-11-20 16:44:01 +01001797 add_domain_to_list(&dma_dom->domain);
1798
Joerg Roedel576175c2009-11-23 19:08:46 +01001799 if (alloc_new_range(dma_dom, true, GFP_KERNEL))
Joerg Roedelec487d12008-06-26 21:27:58 +02001800 goto free_dma_dom;
Joerg Roedelec487d12008-06-26 21:27:58 +02001801
Joerg Roedel431b2a22008-07-11 17:14:22 +02001802 /*
Joerg Roedelec487d12008-06-26 21:27:58 +02001803 * mark the first page as allocated so we never return 0 as
1804 * a valid dma-address. So we can use 0 as error value
Joerg Roedel431b2a22008-07-11 17:14:22 +02001805 */
Joerg Roedel384de722009-05-15 12:30:05 +02001806 dma_dom->aperture[0]->bitmap[0] = 1;
Joerg Roedel803b8cb42009-05-18 15:32:48 +02001807 dma_dom->next_address = 0;
Joerg Roedelec487d12008-06-26 21:27:58 +02001808
Joerg Roedelec487d12008-06-26 21:27:58 +02001809
1810 return dma_dom;
1811
1812free_dma_dom:
1813 dma_ops_domain_free(dma_dom);
1814
1815 return NULL;
1816}
1817
Joerg Roedel431b2a22008-07-11 17:14:22 +02001818/*
Joerg Roedel5b28df62008-12-02 17:49:42 +01001819 * little helper function to check whether a given protection domain is a
1820 * dma_ops domain
1821 */
1822static bool dma_ops_domain(struct protection_domain *domain)
1823{
1824 return domain->flags & PD_DMA_OPS_MASK;
1825}
1826
Joerg Roedelfd7b5532011-04-05 15:31:08 +02001827static void set_dte_entry(u16 devid, struct protection_domain *domain, bool ats)
Joerg Roedelb20ac0d2008-06-26 21:27:59 +02001828{
Joerg Roedel132bd682011-11-17 14:18:46 +01001829 u64 pte_root = 0;
Joerg Roedelee6c2862011-11-09 12:06:03 +01001830 u64 flags = 0;
Joerg Roedel863c74e2008-12-02 17:56:36 +01001831
Joerg Roedel132bd682011-11-17 14:18:46 +01001832 if (domain->mode != PAGE_MODE_NONE)
1833 pte_root = virt_to_phys(domain->pt_root);
1834
Joerg Roedel38ddf412008-09-11 10:38:32 +02001835 pte_root |= (domain->mode & DEV_ENTRY_MODE_MASK)
1836 << DEV_ENTRY_MODE_SHIFT;
1837 pte_root |= IOMMU_PTE_IR | IOMMU_PTE_IW | IOMMU_PTE_P | IOMMU_PTE_TV;
Joerg Roedelb20ac0d2008-06-26 21:27:59 +02001838
Joerg Roedelee6c2862011-11-09 12:06:03 +01001839 flags = amd_iommu_dev_table[devid].data[1];
1840
Joerg Roedelfd7b5532011-04-05 15:31:08 +02001841 if (ats)
1842 flags |= DTE_FLAG_IOTLB;
1843
Joerg Roedel52815b72011-11-17 17:24:28 +01001844 if (domain->flags & PD_IOMMUV2_MASK) {
1845 u64 gcr3 = __pa(domain->gcr3_tbl);
1846 u64 glx = domain->glx;
1847 u64 tmp;
1848
1849 pte_root |= DTE_FLAG_GV;
1850 pte_root |= (glx & DTE_GLX_MASK) << DTE_GLX_SHIFT;
1851
1852 /* First mask out possible old values for GCR3 table */
1853 tmp = DTE_GCR3_VAL_B(~0ULL) << DTE_GCR3_SHIFT_B;
1854 flags &= ~tmp;
1855
1856 tmp = DTE_GCR3_VAL_C(~0ULL) << DTE_GCR3_SHIFT_C;
1857 flags &= ~tmp;
1858
1859 /* Encode GCR3 table into DTE */
1860 tmp = DTE_GCR3_VAL_A(gcr3) << DTE_GCR3_SHIFT_A;
1861 pte_root |= tmp;
1862
1863 tmp = DTE_GCR3_VAL_B(gcr3) << DTE_GCR3_SHIFT_B;
1864 flags |= tmp;
1865
1866 tmp = DTE_GCR3_VAL_C(gcr3) << DTE_GCR3_SHIFT_C;
1867 flags |= tmp;
1868 }
1869
Joerg Roedelee6c2862011-11-09 12:06:03 +01001870 flags &= ~(0xffffUL);
1871 flags |= domain->id;
1872
1873 amd_iommu_dev_table[devid].data[1] = flags;
1874 amd_iommu_dev_table[devid].data[0] = pte_root;
Joerg Roedelb20ac0d2008-06-26 21:27:59 +02001875}
1876
Joerg Roedel15898bb2009-11-24 15:39:42 +01001877static void clear_dte_entry(u16 devid)
Joerg Roedel355bf552008-12-08 12:02:41 +01001878{
Joerg Roedel355bf552008-12-08 12:02:41 +01001879 /* remove entry from the device table seen by the hardware */
1880 amd_iommu_dev_table[devid].data[0] = IOMMU_PTE_P | IOMMU_PTE_TV;
1881 amd_iommu_dev_table[devid].data[1] = 0;
Joerg Roedel355bf552008-12-08 12:02:41 +01001882
Joerg Roedelc5cca142009-10-09 18:31:20 +02001883 amd_iommu_apply_erratum_63(devid);
Joerg Roedel7f760dd2009-11-26 14:49:59 +01001884}
1885
Joerg Roedelec9e79e2011-06-09 17:25:50 +02001886static void do_attach(struct iommu_dev_data *dev_data,
1887 struct protection_domain *domain)
Joerg Roedel7f760dd2009-11-26 14:49:59 +01001888{
Joerg Roedel7f760dd2009-11-26 14:49:59 +01001889 struct amd_iommu *iommu;
Joerg Roedele25bfb52015-10-20 17:33:38 +02001890 u16 alias;
Joerg Roedelec9e79e2011-06-09 17:25:50 +02001891 bool ats;
Joerg Roedel7f760dd2009-11-26 14:49:59 +01001892
Joerg Roedelec9e79e2011-06-09 17:25:50 +02001893 iommu = amd_iommu_rlookup_table[dev_data->devid];
Joerg Roedele25bfb52015-10-20 17:33:38 +02001894 alias = amd_iommu_alias_table[dev_data->devid];
Joerg Roedelec9e79e2011-06-09 17:25:50 +02001895 ats = dev_data->ats.enabled;
Joerg Roedel7f760dd2009-11-26 14:49:59 +01001896
1897 /* Update data structures */
1898 dev_data->domain = domain;
1899 list_add(&dev_data->list, &domain->dev_list);
Joerg Roedel7f760dd2009-11-26 14:49:59 +01001900
1901 /* Do reference counting */
1902 domain->dev_iommu[iommu->index] += 1;
1903 domain->dev_cnt += 1;
1904
Joerg Roedele25bfb52015-10-20 17:33:38 +02001905 /* Update device table */
1906 set_dte_entry(dev_data->devid, domain, ats);
1907 if (alias != dev_data->devid)
1908 set_dte_entry(dev_data->devid, domain, ats);
1909
Joerg Roedel6c542042011-06-09 17:07:31 +02001910 device_flush_dte(dev_data);
Joerg Roedel7f760dd2009-11-26 14:49:59 +01001911}
1912
Joerg Roedelec9e79e2011-06-09 17:25:50 +02001913static void do_detach(struct iommu_dev_data *dev_data)
Joerg Roedel7f760dd2009-11-26 14:49:59 +01001914{
Joerg Roedel7f760dd2009-11-26 14:49:59 +01001915 struct amd_iommu *iommu;
Joerg Roedele25bfb52015-10-20 17:33:38 +02001916 u16 alias;
Joerg Roedel7f760dd2009-11-26 14:49:59 +01001917
Joerg Roedelec9e79e2011-06-09 17:25:50 +02001918 iommu = amd_iommu_rlookup_table[dev_data->devid];
Joerg Roedele25bfb52015-10-20 17:33:38 +02001919 alias = amd_iommu_alias_table[dev_data->devid];
Joerg Roedelc5cca142009-10-09 18:31:20 +02001920
Joerg Roedelc4596112009-11-20 14:57:32 +01001921 /* decrease reference counters */
Joerg Roedel7f760dd2009-11-26 14:49:59 +01001922 dev_data->domain->dev_iommu[iommu->index] -= 1;
1923 dev_data->domain->dev_cnt -= 1;
Joerg Roedel355bf552008-12-08 12:02:41 +01001924
Joerg Roedel7f760dd2009-11-26 14:49:59 +01001925 /* Update data structures */
1926 dev_data->domain = NULL;
1927 list_del(&dev_data->list);
Joerg Roedelf62dda62011-06-09 12:55:35 +02001928 clear_dte_entry(dev_data->devid);
Joerg Roedele25bfb52015-10-20 17:33:38 +02001929 if (alias != dev_data->devid)
1930 clear_dte_entry(alias);
Joerg Roedel7f760dd2009-11-26 14:49:59 +01001931
1932 /* Flush the DTE entry */
Joerg Roedel6c542042011-06-09 17:07:31 +02001933 device_flush_dte(dev_data);
Joerg Roedel15898bb2009-11-24 15:39:42 +01001934}
1935
1936/*
1937 * If a device is not yet associated with a domain, this function does
1938 * assigns it visible for the hardware
1939 */
Joerg Roedelec9e79e2011-06-09 17:25:50 +02001940static int __attach_device(struct iommu_dev_data *dev_data,
Joerg Roedel15898bb2009-11-24 15:39:42 +01001941 struct protection_domain *domain)
1942{
Julia Lawall84fe6c12010-05-27 12:31:51 +02001943 int ret;
Joerg Roedel657cbb62009-11-23 15:26:46 +01001944
Joerg Roedel272e4f92015-10-20 17:33:37 +02001945 /*
1946 * Must be called with IRQs disabled. Warn here to detect early
1947 * when its not.
1948 */
1949 WARN_ON(!irqs_disabled());
1950
Joerg Roedel15898bb2009-11-24 15:39:42 +01001951 /* lock domain */
1952 spin_lock(&domain->lock);
1953
Joerg Roedel397111a2014-08-05 17:31:51 +02001954 ret = -EBUSY;
Joerg Roedel150952f2015-10-20 17:33:35 +02001955 if (dev_data->domain != NULL)
Joerg Roedel397111a2014-08-05 17:31:51 +02001956 goto out_unlock;
Joerg Roedel24100052009-11-25 15:59:57 +01001957
Joerg Roedel397111a2014-08-05 17:31:51 +02001958 /* Attach alias group root */
Joerg Roedel150952f2015-10-20 17:33:35 +02001959 do_attach(dev_data, domain);
Joerg Roedel24100052009-11-25 15:59:57 +01001960
Julia Lawall84fe6c12010-05-27 12:31:51 +02001961 ret = 0;
1962
1963out_unlock:
1964
Joerg Roedel355bf552008-12-08 12:02:41 +01001965 /* ready */
1966 spin_unlock(&domain->lock);
Joerg Roedel21129f72009-09-01 11:59:42 +02001967
Julia Lawall84fe6c12010-05-27 12:31:51 +02001968 return ret;
Joerg Roedel15898bb2009-11-24 15:39:42 +01001969}
1970
Joerg Roedel52815b72011-11-17 17:24:28 +01001971
1972static void pdev_iommuv2_disable(struct pci_dev *pdev)
1973{
1974 pci_disable_ats(pdev);
1975 pci_disable_pri(pdev);
1976 pci_disable_pasid(pdev);
1977}
1978
Joerg Roedel6a113dd2011-12-01 12:04:58 +01001979/* FIXME: Change generic reset-function to do the same */
1980static int pri_reset_while_enabled(struct pci_dev *pdev)
1981{
1982 u16 control;
1983 int pos;
1984
Joerg Roedel46277b72011-12-07 14:34:02 +01001985 pos = pci_find_ext_capability(pdev, PCI_EXT_CAP_ID_PRI);
Joerg Roedel6a113dd2011-12-01 12:04:58 +01001986 if (!pos)
1987 return -EINVAL;
1988
Joerg Roedel46277b72011-12-07 14:34:02 +01001989 pci_read_config_word(pdev, pos + PCI_PRI_CTRL, &control);
1990 control |= PCI_PRI_CTRL_RESET;
1991 pci_write_config_word(pdev, pos + PCI_PRI_CTRL, control);
Joerg Roedel6a113dd2011-12-01 12:04:58 +01001992
1993 return 0;
1994}
1995
Joerg Roedel52815b72011-11-17 17:24:28 +01001996static int pdev_iommuv2_enable(struct pci_dev *pdev)
1997{
Joerg Roedel6a113dd2011-12-01 12:04:58 +01001998 bool reset_enable;
1999 int reqs, ret;
2000
2001 /* FIXME: Hardcode number of outstanding requests for now */
2002 reqs = 32;
2003 if (pdev_pri_erratum(pdev, AMD_PRI_DEV_ERRATUM_LIMIT_REQ_ONE))
2004 reqs = 1;
2005 reset_enable = pdev_pri_erratum(pdev, AMD_PRI_DEV_ERRATUM_ENABLE_RESET);
Joerg Roedel52815b72011-11-17 17:24:28 +01002006
2007 /* Only allow access to user-accessible pages */
2008 ret = pci_enable_pasid(pdev, 0);
2009 if (ret)
2010 goto out_err;
2011
2012 /* First reset the PRI state of the device */
2013 ret = pci_reset_pri(pdev);
2014 if (ret)
2015 goto out_err;
2016
Joerg Roedel6a113dd2011-12-01 12:04:58 +01002017 /* Enable PRI */
2018 ret = pci_enable_pri(pdev, reqs);
Joerg Roedel52815b72011-11-17 17:24:28 +01002019 if (ret)
2020 goto out_err;
2021
Joerg Roedel6a113dd2011-12-01 12:04:58 +01002022 if (reset_enable) {
2023 ret = pri_reset_while_enabled(pdev);
2024 if (ret)
2025 goto out_err;
2026 }
2027
Joerg Roedel52815b72011-11-17 17:24:28 +01002028 ret = pci_enable_ats(pdev, PAGE_SHIFT);
2029 if (ret)
2030 goto out_err;
2031
2032 return 0;
2033
2034out_err:
2035 pci_disable_pri(pdev);
2036 pci_disable_pasid(pdev);
2037
2038 return ret;
2039}
2040
Joerg Roedelc99afa22011-11-21 18:19:25 +01002041/* FIXME: Move this to PCI code */
Joerg Roedela3b93122012-04-12 12:49:26 +02002042#define PCI_PRI_TLP_OFF (1 << 15)
Joerg Roedelc99afa22011-11-21 18:19:25 +01002043
Joerg Roedel98f1ad22012-07-06 13:28:37 +02002044static bool pci_pri_tlp_required(struct pci_dev *pdev)
Joerg Roedelc99afa22011-11-21 18:19:25 +01002045{
Joerg Roedela3b93122012-04-12 12:49:26 +02002046 u16 status;
Joerg Roedelc99afa22011-11-21 18:19:25 +01002047 int pos;
2048
Joerg Roedel46277b72011-12-07 14:34:02 +01002049 pos = pci_find_ext_capability(pdev, PCI_EXT_CAP_ID_PRI);
Joerg Roedelc99afa22011-11-21 18:19:25 +01002050 if (!pos)
2051 return false;
2052
Joerg Roedela3b93122012-04-12 12:49:26 +02002053 pci_read_config_word(pdev, pos + PCI_PRI_STATUS, &status);
Joerg Roedelc99afa22011-11-21 18:19:25 +01002054
Joerg Roedela3b93122012-04-12 12:49:26 +02002055 return (status & PCI_PRI_TLP_OFF) ? true : false;
Joerg Roedelc99afa22011-11-21 18:19:25 +01002056}
2057
Joerg Roedel15898bb2009-11-24 15:39:42 +01002058/*
Frank Arnolddf805ab2012-08-27 19:21:04 +02002059 * If a device is not yet associated with a domain, this function
Joerg Roedel15898bb2009-11-24 15:39:42 +01002060 * assigns it visible for the hardware
2061 */
2062static int attach_device(struct device *dev,
2063 struct protection_domain *domain)
2064{
Joerg Roedelfd7b5532011-04-05 15:31:08 +02002065 struct pci_dev *pdev = to_pci_dev(dev);
Joerg Roedelea61cdd2011-06-09 12:56:30 +02002066 struct iommu_dev_data *dev_data;
Joerg Roedel15898bb2009-11-24 15:39:42 +01002067 unsigned long flags;
2068 int ret;
2069
Joerg Roedelea61cdd2011-06-09 12:56:30 +02002070 dev_data = get_dev_data(dev);
2071
Joerg Roedel52815b72011-11-17 17:24:28 +01002072 if (domain->flags & PD_IOMMUV2_MASK) {
Joerg Roedel02ca2022015-07-28 16:58:49 +02002073 if (!dev_data->passthrough)
Joerg Roedel52815b72011-11-17 17:24:28 +01002074 return -EINVAL;
2075
Joerg Roedel02ca2022015-07-28 16:58:49 +02002076 if (dev_data->iommu_v2) {
2077 if (pdev_iommuv2_enable(pdev) != 0)
2078 return -EINVAL;
Joerg Roedel52815b72011-11-17 17:24:28 +01002079
Joerg Roedel02ca2022015-07-28 16:58:49 +02002080 dev_data->ats.enabled = true;
2081 dev_data->ats.qdep = pci_ats_queue_depth(pdev);
2082 dev_data->pri_tlp = pci_pri_tlp_required(pdev);
2083 }
Joerg Roedel52815b72011-11-17 17:24:28 +01002084 } else if (amd_iommu_iotlb_sup &&
2085 pci_enable_ats(pdev, PAGE_SHIFT) == 0) {
Joerg Roedelea61cdd2011-06-09 12:56:30 +02002086 dev_data->ats.enabled = true;
2087 dev_data->ats.qdep = pci_ats_queue_depth(pdev);
2088 }
Joerg Roedelfd7b5532011-04-05 15:31:08 +02002089
Joerg Roedel15898bb2009-11-24 15:39:42 +01002090 write_lock_irqsave(&amd_iommu_devtable_lock, flags);
Joerg Roedelec9e79e2011-06-09 17:25:50 +02002091 ret = __attach_device(dev_data, domain);
Joerg Roedel15898bb2009-11-24 15:39:42 +01002092 write_unlock_irqrestore(&amd_iommu_devtable_lock, flags);
2093
2094 /*
2095 * We might boot into a crash-kernel here. The crashed kernel
2096 * left the caches in the IOMMU dirty. So we have to flush
2097 * here to evict all dirty stuff.
2098 */
Joerg Roedel17b124b2011-04-06 18:01:35 +02002099 domain_flush_tlb_pde(domain);
Joerg Roedel15898bb2009-11-24 15:39:42 +01002100
2101 return ret;
2102}
2103
2104/*
2105 * Removes a device from a protection domain (unlocked)
2106 */
Joerg Roedelec9e79e2011-06-09 17:25:50 +02002107static void __detach_device(struct iommu_dev_data *dev_data)
Joerg Roedel15898bb2009-11-24 15:39:42 +01002108{
Joerg Roedel2ca76272010-01-22 16:45:31 +01002109 struct protection_domain *domain;
Joerg Roedel15898bb2009-11-24 15:39:42 +01002110
Joerg Roedel272e4f92015-10-20 17:33:37 +02002111 /*
2112 * Must be called with IRQs disabled. Warn here to detect early
2113 * when its not.
2114 */
2115 WARN_ON(!irqs_disabled());
2116
Joerg Roedelf34c73f2015-10-20 17:33:34 +02002117 if (WARN_ON(!dev_data->domain))
2118 return;
Joerg Roedel15898bb2009-11-24 15:39:42 +01002119
Joerg Roedel2ca76272010-01-22 16:45:31 +01002120 domain = dev_data->domain;
2121
Joerg Roedelf1dd0a82015-10-20 17:33:36 +02002122 spin_lock(&domain->lock);
Joerg Roedel24100052009-11-25 15:59:57 +01002123
Joerg Roedel150952f2015-10-20 17:33:35 +02002124 do_detach(dev_data);
Joerg Roedel7f760dd2009-11-26 14:49:59 +01002125
Joerg Roedelf1dd0a82015-10-20 17:33:36 +02002126 spin_unlock(&domain->lock);
Joerg Roedel355bf552008-12-08 12:02:41 +01002127}
2128
2129/*
2130 * Removes a device from a protection domain (with devtable_lock held)
2131 */
Joerg Roedel15898bb2009-11-24 15:39:42 +01002132static void detach_device(struct device *dev)
Joerg Roedel355bf552008-12-08 12:02:41 +01002133{
Joerg Roedel52815b72011-11-17 17:24:28 +01002134 struct protection_domain *domain;
Joerg Roedelea61cdd2011-06-09 12:56:30 +02002135 struct iommu_dev_data *dev_data;
Joerg Roedel355bf552008-12-08 12:02:41 +01002136 unsigned long flags;
2137
Joerg Roedelec9e79e2011-06-09 17:25:50 +02002138 dev_data = get_dev_data(dev);
Joerg Roedel52815b72011-11-17 17:24:28 +01002139 domain = dev_data->domain;
Joerg Roedelec9e79e2011-06-09 17:25:50 +02002140
Joerg Roedel355bf552008-12-08 12:02:41 +01002141 /* lock device table */
2142 write_lock_irqsave(&amd_iommu_devtable_lock, flags);
Joerg Roedelec9e79e2011-06-09 17:25:50 +02002143 __detach_device(dev_data);
Joerg Roedel355bf552008-12-08 12:02:41 +01002144 write_unlock_irqrestore(&amd_iommu_devtable_lock, flags);
Joerg Roedelfd7b5532011-04-05 15:31:08 +02002145
Joerg Roedel02ca2022015-07-28 16:58:49 +02002146 if (domain->flags & PD_IOMMUV2_MASK && dev_data->iommu_v2)
Joerg Roedel52815b72011-11-17 17:24:28 +01002147 pdev_iommuv2_disable(to_pci_dev(dev));
2148 else if (dev_data->ats.enabled)
Joerg Roedelea61cdd2011-06-09 12:56:30 +02002149 pci_disable_ats(to_pci_dev(dev));
Joerg Roedel52815b72011-11-17 17:24:28 +01002150
2151 dev_data->ats.enabled = false;
Joerg Roedel355bf552008-12-08 12:02:41 +01002152}
Joerg Roedele275a2a2008-12-10 18:27:25 +01002153
Joerg Roedelaafd8ba2015-05-28 18:41:39 +02002154static int amd_iommu_add_device(struct device *dev)
Joerg Roedel15898bb2009-11-24 15:39:42 +01002155{
Joerg Roedel71f77582011-06-09 19:03:15 +02002156 struct iommu_dev_data *dev_data;
Joerg Roedel07ee8692015-05-28 18:41:42 +02002157 struct iommu_domain *domain;
Joerg Roedele275a2a2008-12-10 18:27:25 +01002158 struct amd_iommu *iommu;
Joerg Roedel5abcdba2011-12-01 15:49:45 +01002159 u16 devid;
Joerg Roedelaafd8ba2015-05-28 18:41:39 +02002160 int ret;
Joerg Roedele275a2a2008-12-10 18:27:25 +01002161
Joerg Roedelaafd8ba2015-05-28 18:41:39 +02002162 if (!check_device(dev) || get_dev_data(dev))
Joerg Roedel98fc5a62009-11-24 17:19:23 +01002163 return 0;
Joerg Roedele275a2a2008-12-10 18:27:25 +01002164
Joerg Roedelaafd8ba2015-05-28 18:41:39 +02002165 devid = get_device_id(dev);
2166 iommu = amd_iommu_rlookup_table[devid];
Joerg Roedele275a2a2008-12-10 18:27:25 +01002167
Joerg Roedelaafd8ba2015-05-28 18:41:39 +02002168 ret = iommu_init_device(dev);
Joerg Roedel4d58b8a2015-06-11 09:21:39 +02002169 if (ret) {
2170 if (ret != -ENOTSUPP)
2171 pr_err("Failed to initialize device %s - trying to proceed anyway\n",
2172 dev_name(dev));
Joerg Roedel657cbb62009-11-23 15:26:46 +01002173
Joerg Roedelaafd8ba2015-05-28 18:41:39 +02002174 iommu_ignore_device(dev);
Joerg Roedel343e9ca2015-05-28 18:41:43 +02002175 dev->archdata.dma_ops = &nommu_dma_ops;
Joerg Roedele275a2a2008-12-10 18:27:25 +01002176 goto out;
2177 }
Joerg Roedelaafd8ba2015-05-28 18:41:39 +02002178 init_iommu_group(dev);
Joerg Roedele275a2a2008-12-10 18:27:25 +01002179
Joerg Roedel07ee8692015-05-28 18:41:42 +02002180 dev_data = get_dev_data(dev);
Joerg Roedel4d58b8a2015-06-11 09:21:39 +02002181
2182 BUG_ON(!dev_data);
2183
Joerg Roedel1e6a7b02015-07-28 16:58:48 +02002184 if (iommu_pass_through || dev_data->iommu_v2)
Joerg Roedel07ee8692015-05-28 18:41:42 +02002185 iommu_request_dm_for_dev(dev);
2186
2187 /* Domains are initialized for this device - have a look what we ended up with */
2188 domain = iommu_get_domain_for_dev(dev);
Joerg Roedel32302322015-07-28 16:58:50 +02002189 if (domain->type == IOMMU_DOMAIN_IDENTITY)
Joerg Roedel07ee8692015-05-28 18:41:42 +02002190 dev_data->passthrough = true;
Joerg Roedel32302322015-07-28 16:58:50 +02002191 else
Joerg Roedel07ee8692015-05-28 18:41:42 +02002192 dev->archdata.dma_ops = &amd_iommu_dma_ops;
Joerg Roedele275a2a2008-12-10 18:27:25 +01002193
2194out:
Joerg Roedelaafd8ba2015-05-28 18:41:39 +02002195 iommu_completion_wait(iommu);
2196
Joerg Roedele275a2a2008-12-10 18:27:25 +01002197 return 0;
2198}
2199
Joerg Roedelaafd8ba2015-05-28 18:41:39 +02002200static void amd_iommu_remove_device(struct device *dev)
Joerg Roedel8638c492009-12-10 11:12:25 +01002201{
Joerg Roedelaafd8ba2015-05-28 18:41:39 +02002202 struct amd_iommu *iommu;
2203 u16 devid;
2204
2205 if (!check_device(dev))
2206 return;
2207
2208 devid = get_device_id(dev);
2209 iommu = amd_iommu_rlookup_table[devid];
2210
2211 iommu_uninit_device(dev);
2212 iommu_completion_wait(iommu);
Joerg Roedel8638c492009-12-10 11:12:25 +01002213}
2214
Joerg Roedel431b2a22008-07-11 17:14:22 +02002215/*****************************************************************************
2216 *
2217 * The next functions belong to the dma_ops mapping/unmapping code.
2218 *
2219 *****************************************************************************/
2220
2221/*
2222 * In the dma_ops path we only have the struct device. This function
2223 * finds the corresponding IOMMU, the protection domain and the
2224 * requestor id for a given device.
2225 * If the device is not yet associated with a domain this is also done
2226 * in this function.
2227 */
Joerg Roedel94f6d192009-11-24 16:40:02 +01002228static struct protection_domain *get_domain(struct device *dev)
Joerg Roedelb20ac0d2008-06-26 21:27:59 +02002229{
Joerg Roedel94f6d192009-11-24 16:40:02 +01002230 struct protection_domain *domain;
Joerg Roedel063071d2015-05-28 18:41:38 +02002231 struct iommu_domain *io_domain;
Joerg Roedelb20ac0d2008-06-26 21:27:59 +02002232
Joerg Roedelf99c0f12009-11-23 16:52:56 +01002233 if (!check_device(dev))
Joerg Roedel94f6d192009-11-24 16:40:02 +01002234 return ERR_PTR(-EINVAL);
Joerg Roedeldbcc1122008-09-04 15:04:26 +02002235
Joerg Roedel063071d2015-05-28 18:41:38 +02002236 io_domain = iommu_get_domain_for_dev(dev);
Joerg Roedel0bb6e242015-05-28 18:41:40 +02002237 if (!io_domain)
2238 return NULL;
Joerg Roedel063071d2015-05-28 18:41:38 +02002239
Joerg Roedel0bb6e242015-05-28 18:41:40 +02002240 domain = to_pdomain(io_domain);
2241 if (!dma_ops_domain(domain))
Joerg Roedel94f6d192009-11-24 16:40:02 +01002242 return ERR_PTR(-EBUSY);
Joerg Roedelf99c0f12009-11-23 16:52:56 +01002243
Joerg Roedel0bb6e242015-05-28 18:41:40 +02002244 return domain;
Joerg Roedelb20ac0d2008-06-26 21:27:59 +02002245}
2246
Joerg Roedel04bfdd82009-09-02 16:00:23 +02002247static void update_device_table(struct protection_domain *domain)
2248{
Joerg Roedel492667d2009-11-27 13:25:47 +01002249 struct iommu_dev_data *dev_data;
Joerg Roedel04bfdd82009-09-02 16:00:23 +02002250
Joerg Roedelea61cdd2011-06-09 12:56:30 +02002251 list_for_each_entry(dev_data, &domain->dev_list, list)
2252 set_dte_entry(dev_data->devid, domain, dev_data->ats.enabled);
Joerg Roedel04bfdd82009-09-02 16:00:23 +02002253}
2254
2255static void update_domain(struct protection_domain *domain)
2256{
2257 if (!domain->updated)
2258 return;
2259
2260 update_device_table(domain);
Joerg Roedel17b124b2011-04-06 18:01:35 +02002261
2262 domain_flush_devices(domain);
2263 domain_flush_tlb_pde(domain);
Joerg Roedel04bfdd82009-09-02 16:00:23 +02002264
2265 domain->updated = false;
2266}
2267
Joerg Roedel431b2a22008-07-11 17:14:22 +02002268/*
Joerg Roedel8bda3092009-05-12 12:02:46 +02002269 * This function fetches the PTE for a given address in the aperture
2270 */
2271static u64* dma_ops_get_pte(struct dma_ops_domain *dom,
2272 unsigned long address)
2273{
Joerg Roedel384de722009-05-15 12:30:05 +02002274 struct aperture_range *aperture;
Joerg Roedel8bda3092009-05-12 12:02:46 +02002275 u64 *pte, *pte_page;
2276
Joerg Roedel384de722009-05-15 12:30:05 +02002277 aperture = dom->aperture[APERTURE_RANGE_INDEX(address)];
2278 if (!aperture)
2279 return NULL;
2280
2281 pte = aperture->pte_pages[APERTURE_PAGE_INDEX(address)];
Joerg Roedel8bda3092009-05-12 12:02:46 +02002282 if (!pte) {
Joerg Roedelcbb9d722010-01-15 14:41:15 +01002283 pte = alloc_pte(&dom->domain, address, PAGE_SIZE, &pte_page,
Joerg Roedelabdc5eb2009-09-03 11:33:51 +02002284 GFP_ATOMIC);
Joerg Roedel384de722009-05-15 12:30:05 +02002285 aperture->pte_pages[APERTURE_PAGE_INDEX(address)] = pte_page;
2286 } else
Joerg Roedel8c8c1432009-09-02 17:30:00 +02002287 pte += PM_LEVEL_INDEX(0, address);
Joerg Roedel8bda3092009-05-12 12:02:46 +02002288
Joerg Roedel04bfdd82009-09-02 16:00:23 +02002289 update_domain(&dom->domain);
Joerg Roedel8bda3092009-05-12 12:02:46 +02002290
2291 return pte;
2292}
2293
2294/*
Joerg Roedel431b2a22008-07-11 17:14:22 +02002295 * This is the generic map function. It maps one 4kb page at paddr to
2296 * the given address in the DMA address space for the domain.
2297 */
Joerg Roedel680525e2009-11-23 18:44:42 +01002298static dma_addr_t dma_ops_domain_map(struct dma_ops_domain *dom,
Joerg Roedelcb76c322008-06-26 21:28:00 +02002299 unsigned long address,
2300 phys_addr_t paddr,
2301 int direction)
2302{
2303 u64 *pte, __pte;
2304
2305 WARN_ON(address > dom->aperture_size);
2306
2307 paddr &= PAGE_MASK;
2308
Joerg Roedel8bda3092009-05-12 12:02:46 +02002309 pte = dma_ops_get_pte(dom, address);
Joerg Roedel53812c12009-05-12 12:17:38 +02002310 if (!pte)
FUJITA Tomonori8fd524b2009-11-15 21:19:53 +09002311 return DMA_ERROR_CODE;
Joerg Roedelcb76c322008-06-26 21:28:00 +02002312
2313 __pte = paddr | IOMMU_PTE_P | IOMMU_PTE_FC;
2314
2315 if (direction == DMA_TO_DEVICE)
2316 __pte |= IOMMU_PTE_IR;
2317 else if (direction == DMA_FROM_DEVICE)
2318 __pte |= IOMMU_PTE_IW;
2319 else if (direction == DMA_BIDIRECTIONAL)
2320 __pte |= IOMMU_PTE_IR | IOMMU_PTE_IW;
2321
2322 WARN_ON(*pte);
2323
2324 *pte = __pte;
2325
2326 return (dma_addr_t)address;
2327}
2328
Joerg Roedel431b2a22008-07-11 17:14:22 +02002329/*
2330 * The generic unmapping function for on page in the DMA address space.
2331 */
Joerg Roedel680525e2009-11-23 18:44:42 +01002332static void dma_ops_domain_unmap(struct dma_ops_domain *dom,
Joerg Roedelcb76c322008-06-26 21:28:00 +02002333 unsigned long address)
2334{
Joerg Roedel384de722009-05-15 12:30:05 +02002335 struct aperture_range *aperture;
Joerg Roedelcb76c322008-06-26 21:28:00 +02002336 u64 *pte;
2337
2338 if (address >= dom->aperture_size)
2339 return;
2340
Joerg Roedel384de722009-05-15 12:30:05 +02002341 aperture = dom->aperture[APERTURE_RANGE_INDEX(address)];
2342 if (!aperture)
2343 return;
Joerg Roedelcb76c322008-06-26 21:28:00 +02002344
Joerg Roedel384de722009-05-15 12:30:05 +02002345 pte = aperture->pte_pages[APERTURE_PAGE_INDEX(address)];
2346 if (!pte)
2347 return;
2348
Joerg Roedel8c8c1432009-09-02 17:30:00 +02002349 pte += PM_LEVEL_INDEX(0, address);
Joerg Roedelcb76c322008-06-26 21:28:00 +02002350
2351 WARN_ON(!*pte);
2352
2353 *pte = 0ULL;
2354}
2355
Joerg Roedel431b2a22008-07-11 17:14:22 +02002356/*
2357 * This function contains common code for mapping of a physically
Joerg Roedel24f81162008-12-08 14:25:39 +01002358 * contiguous memory region into DMA address space. It is used by all
2359 * mapping functions provided with this IOMMU driver.
Joerg Roedel431b2a22008-07-11 17:14:22 +02002360 * Must be called with the domain lock held.
2361 */
Joerg Roedelcb76c322008-06-26 21:28:00 +02002362static dma_addr_t __map_single(struct device *dev,
Joerg Roedelcb76c322008-06-26 21:28:00 +02002363 struct dma_ops_domain *dma_dom,
2364 phys_addr_t paddr,
2365 size_t size,
Joerg Roedel6d4f3432008-09-04 19:18:02 +02002366 int dir,
Joerg Roedel832a90c2008-09-18 15:54:23 +02002367 bool align,
2368 u64 dma_mask)
Joerg Roedelcb76c322008-06-26 21:28:00 +02002369{
2370 dma_addr_t offset = paddr & ~PAGE_MASK;
Joerg Roedel53812c12009-05-12 12:17:38 +02002371 dma_addr_t address, start, ret;
Joerg Roedelcb76c322008-06-26 21:28:00 +02002372 unsigned int pages;
Joerg Roedel6d4f3432008-09-04 19:18:02 +02002373 unsigned long align_mask = 0;
Joerg Roedelcb76c322008-06-26 21:28:00 +02002374 int i;
2375
Joerg Roedele3c449f2008-10-15 22:02:11 -07002376 pages = iommu_num_pages(paddr, size, PAGE_SIZE);
Joerg Roedelcb76c322008-06-26 21:28:00 +02002377 paddr &= PAGE_MASK;
2378
Joerg Roedel8ecaf8f2008-12-12 16:13:04 +01002379 INC_STATS_COUNTER(total_map_requests);
2380
Joerg Roedelc1858972008-12-12 15:42:39 +01002381 if (pages > 1)
2382 INC_STATS_COUNTER(cross_page);
2383
Joerg Roedel6d4f3432008-09-04 19:18:02 +02002384 if (align)
2385 align_mask = (1UL << get_order(size)) - 1;
2386
Joerg Roedel11b83882009-05-19 10:23:15 +02002387retry:
Joerg Roedel832a90c2008-09-18 15:54:23 +02002388 address = dma_ops_alloc_addresses(dev, dma_dom, pages, align_mask,
2389 dma_mask);
FUJITA Tomonori8fd524b2009-11-15 21:19:53 +09002390 if (unlikely(address == DMA_ERROR_CODE)) {
Joerg Roedel11b83882009-05-19 10:23:15 +02002391 /*
2392 * setting next_address here will let the address
2393 * allocator only scan the new allocated range in the
2394 * first run. This is a small optimization.
2395 */
2396 dma_dom->next_address = dma_dom->aperture_size;
2397
Joerg Roedel576175c2009-11-23 19:08:46 +01002398 if (alloc_new_range(dma_dom, false, GFP_ATOMIC))
Joerg Roedel11b83882009-05-19 10:23:15 +02002399 goto out;
2400
2401 /*
André Goddard Rosaaf901ca2009-11-14 13:09:05 -02002402 * aperture was successfully enlarged by 128 MB, try
Joerg Roedel11b83882009-05-19 10:23:15 +02002403 * allocation again
2404 */
2405 goto retry;
2406 }
Joerg Roedelcb76c322008-06-26 21:28:00 +02002407
2408 start = address;
2409 for (i = 0; i < pages; ++i) {
Joerg Roedel680525e2009-11-23 18:44:42 +01002410 ret = dma_ops_domain_map(dma_dom, start, paddr, dir);
FUJITA Tomonori8fd524b2009-11-15 21:19:53 +09002411 if (ret == DMA_ERROR_CODE)
Joerg Roedel53812c12009-05-12 12:17:38 +02002412 goto out_unmap;
2413
Joerg Roedelcb76c322008-06-26 21:28:00 +02002414 paddr += PAGE_SIZE;
2415 start += PAGE_SIZE;
2416 }
2417 address += offset;
2418
Joerg Roedel5774f7c2008-12-12 15:57:30 +01002419 ADD_STATS_COUNTER(alloced_io_mem, size);
2420
FUJITA Tomonoriafa9fdc2008-09-20 01:23:30 +09002421 if (unlikely(dma_dom->need_flush && !amd_iommu_unmap_flush)) {
Joerg Roedel17b124b2011-04-06 18:01:35 +02002422 domain_flush_tlb(&dma_dom->domain);
Joerg Roedel1c655772008-09-04 18:40:05 +02002423 dma_dom->need_flush = false;
Joerg Roedel318afd42009-11-23 18:32:38 +01002424 } else if (unlikely(amd_iommu_np_cache))
Joerg Roedel17b124b2011-04-06 18:01:35 +02002425 domain_flush_pages(&dma_dom->domain, address, size);
Joerg Roedel270cab242008-09-04 15:49:46 +02002426
Joerg Roedelcb76c322008-06-26 21:28:00 +02002427out:
2428 return address;
Joerg Roedel53812c12009-05-12 12:17:38 +02002429
2430out_unmap:
2431
2432 for (--i; i >= 0; --i) {
2433 start -= PAGE_SIZE;
Joerg Roedel680525e2009-11-23 18:44:42 +01002434 dma_ops_domain_unmap(dma_dom, start);
Joerg Roedel53812c12009-05-12 12:17:38 +02002435 }
2436
2437 dma_ops_free_addresses(dma_dom, address, pages);
2438
FUJITA Tomonori8fd524b2009-11-15 21:19:53 +09002439 return DMA_ERROR_CODE;
Joerg Roedelcb76c322008-06-26 21:28:00 +02002440}
2441
Joerg Roedel431b2a22008-07-11 17:14:22 +02002442/*
2443 * Does the reverse of the __map_single function. Must be called with
2444 * the domain lock held too
2445 */
Joerg Roedelcd8c82e2009-11-23 19:33:56 +01002446static void __unmap_single(struct dma_ops_domain *dma_dom,
Joerg Roedelcb76c322008-06-26 21:28:00 +02002447 dma_addr_t dma_addr,
2448 size_t size,
2449 int dir)
2450{
Joerg Roedel04e04632010-09-23 16:12:48 +02002451 dma_addr_t flush_addr;
Joerg Roedelcb76c322008-06-26 21:28:00 +02002452 dma_addr_t i, start;
2453 unsigned int pages;
2454
FUJITA Tomonori8fd524b2009-11-15 21:19:53 +09002455 if ((dma_addr == DMA_ERROR_CODE) ||
Joerg Roedelb8d99052008-12-08 14:40:26 +01002456 (dma_addr + size > dma_dom->aperture_size))
Joerg Roedelcb76c322008-06-26 21:28:00 +02002457 return;
2458
Joerg Roedel04e04632010-09-23 16:12:48 +02002459 flush_addr = dma_addr;
Joerg Roedele3c449f2008-10-15 22:02:11 -07002460 pages = iommu_num_pages(dma_addr, size, PAGE_SIZE);
Joerg Roedelcb76c322008-06-26 21:28:00 +02002461 dma_addr &= PAGE_MASK;
2462 start = dma_addr;
2463
2464 for (i = 0; i < pages; ++i) {
Joerg Roedel680525e2009-11-23 18:44:42 +01002465 dma_ops_domain_unmap(dma_dom, start);
Joerg Roedelcb76c322008-06-26 21:28:00 +02002466 start += PAGE_SIZE;
2467 }
2468
Joerg Roedel5774f7c2008-12-12 15:57:30 +01002469 SUB_STATS_COUNTER(alloced_io_mem, size);
2470
Joerg Roedelcb76c322008-06-26 21:28:00 +02002471 dma_ops_free_addresses(dma_dom, dma_addr, pages);
Joerg Roedel270cab242008-09-04 15:49:46 +02002472
Joerg Roedel80be3082008-11-06 14:59:05 +01002473 if (amd_iommu_unmap_flush || dma_dom->need_flush) {
Joerg Roedel17b124b2011-04-06 18:01:35 +02002474 domain_flush_pages(&dma_dom->domain, flush_addr, size);
Joerg Roedel80be3082008-11-06 14:59:05 +01002475 dma_dom->need_flush = false;
2476 }
Joerg Roedelcb76c322008-06-26 21:28:00 +02002477}
2478
Joerg Roedel431b2a22008-07-11 17:14:22 +02002479/*
2480 * The exported map_single function for dma_ops.
2481 */
FUJITA Tomonori51491362009-01-05 23:47:25 +09002482static dma_addr_t map_page(struct device *dev, struct page *page,
2483 unsigned long offset, size_t size,
2484 enum dma_data_direction dir,
2485 struct dma_attrs *attrs)
Joerg Roedel4da70b92008-06-26 21:28:01 +02002486{
2487 unsigned long flags;
Joerg Roedel4da70b92008-06-26 21:28:01 +02002488 struct protection_domain *domain;
Joerg Roedel4da70b92008-06-26 21:28:01 +02002489 dma_addr_t addr;
Joerg Roedel832a90c2008-09-18 15:54:23 +02002490 u64 dma_mask;
FUJITA Tomonori51491362009-01-05 23:47:25 +09002491 phys_addr_t paddr = page_to_phys(page) + offset;
Joerg Roedel4da70b92008-06-26 21:28:01 +02002492
Joerg Roedel0f2a86f2008-12-12 15:05:16 +01002493 INC_STATS_COUNTER(cnt_map_single);
2494
Joerg Roedel94f6d192009-11-24 16:40:02 +01002495 domain = get_domain(dev);
2496 if (PTR_ERR(domain) == -EINVAL)
Joerg Roedel4da70b92008-06-26 21:28:01 +02002497 return (dma_addr_t)paddr;
Joerg Roedel94f6d192009-11-24 16:40:02 +01002498 else if (IS_ERR(domain))
2499 return DMA_ERROR_CODE;
Joerg Roedel4da70b92008-06-26 21:28:01 +02002500
Joerg Roedelf99c0f12009-11-23 16:52:56 +01002501 dma_mask = *dev->dma_mask;
2502
Joerg Roedel4da70b92008-06-26 21:28:01 +02002503 spin_lock_irqsave(&domain->lock, flags);
Joerg Roedel94f6d192009-11-24 16:40:02 +01002504
Joerg Roedelcd8c82e2009-11-23 19:33:56 +01002505 addr = __map_single(dev, domain->priv, paddr, size, dir, false,
Joerg Roedel832a90c2008-09-18 15:54:23 +02002506 dma_mask);
FUJITA Tomonori8fd524b2009-11-15 21:19:53 +09002507 if (addr == DMA_ERROR_CODE)
Joerg Roedel4da70b92008-06-26 21:28:01 +02002508 goto out;
2509
Joerg Roedel17b124b2011-04-06 18:01:35 +02002510 domain_flush_complete(domain);
Joerg Roedel4da70b92008-06-26 21:28:01 +02002511
2512out:
2513 spin_unlock_irqrestore(&domain->lock, flags);
2514
2515 return addr;
2516}
2517
Joerg Roedel431b2a22008-07-11 17:14:22 +02002518/*
2519 * The exported unmap_single function for dma_ops.
2520 */
FUJITA Tomonori51491362009-01-05 23:47:25 +09002521static void unmap_page(struct device *dev, dma_addr_t dma_addr, size_t size,
2522 enum dma_data_direction dir, struct dma_attrs *attrs)
Joerg Roedel4da70b92008-06-26 21:28:01 +02002523{
2524 unsigned long flags;
Joerg Roedel4da70b92008-06-26 21:28:01 +02002525 struct protection_domain *domain;
Joerg Roedel4da70b92008-06-26 21:28:01 +02002526
Joerg Roedel146a6912008-12-12 15:07:12 +01002527 INC_STATS_COUNTER(cnt_unmap_single);
2528
Joerg Roedel94f6d192009-11-24 16:40:02 +01002529 domain = get_domain(dev);
2530 if (IS_ERR(domain))
Joerg Roedel5b28df62008-12-02 17:49:42 +01002531 return;
2532
Joerg Roedel4da70b92008-06-26 21:28:01 +02002533 spin_lock_irqsave(&domain->lock, flags);
2534
Joerg Roedelcd8c82e2009-11-23 19:33:56 +01002535 __unmap_single(domain->priv, dma_addr, size, dir);
Joerg Roedel4da70b92008-06-26 21:28:01 +02002536
Joerg Roedel17b124b2011-04-06 18:01:35 +02002537 domain_flush_complete(domain);
Joerg Roedel4da70b92008-06-26 21:28:01 +02002538
2539 spin_unlock_irqrestore(&domain->lock, flags);
2540}
2541
Joerg Roedel431b2a22008-07-11 17:14:22 +02002542/*
Joerg Roedel431b2a22008-07-11 17:14:22 +02002543 * The exported map_sg function for dma_ops (handles scatter-gather
2544 * lists).
2545 */
Joerg Roedel65b050a2008-06-26 21:28:02 +02002546static int map_sg(struct device *dev, struct scatterlist *sglist,
FUJITA Tomonori160c1d82009-01-05 23:59:02 +09002547 int nelems, enum dma_data_direction dir,
2548 struct dma_attrs *attrs)
Joerg Roedel65b050a2008-06-26 21:28:02 +02002549{
2550 unsigned long flags;
Joerg Roedel65b050a2008-06-26 21:28:02 +02002551 struct protection_domain *domain;
Joerg Roedel65b050a2008-06-26 21:28:02 +02002552 int i;
2553 struct scatterlist *s;
2554 phys_addr_t paddr;
2555 int mapped_elems = 0;
Joerg Roedel832a90c2008-09-18 15:54:23 +02002556 u64 dma_mask;
Joerg Roedel65b050a2008-06-26 21:28:02 +02002557
Joerg Roedeld03f067a2008-12-12 15:09:48 +01002558 INC_STATS_COUNTER(cnt_map_sg);
2559
Joerg Roedel94f6d192009-11-24 16:40:02 +01002560 domain = get_domain(dev);
Joerg Roedela0e191b2013-04-09 15:04:36 +02002561 if (IS_ERR(domain))
Joerg Roedel94f6d192009-11-24 16:40:02 +01002562 return 0;
Joerg Roedeldbcc1122008-09-04 15:04:26 +02002563
Joerg Roedel832a90c2008-09-18 15:54:23 +02002564 dma_mask = *dev->dma_mask;
Joerg Roedel65b050a2008-06-26 21:28:02 +02002565
Joerg Roedel65b050a2008-06-26 21:28:02 +02002566 spin_lock_irqsave(&domain->lock, flags);
2567
2568 for_each_sg(sglist, s, nelems, i) {
2569 paddr = sg_phys(s);
2570
Joerg Roedelcd8c82e2009-11-23 19:33:56 +01002571 s->dma_address = __map_single(dev, domain->priv,
Joerg Roedel832a90c2008-09-18 15:54:23 +02002572 paddr, s->length, dir, false,
2573 dma_mask);
Joerg Roedel65b050a2008-06-26 21:28:02 +02002574
2575 if (s->dma_address) {
2576 s->dma_length = s->length;
2577 mapped_elems++;
2578 } else
2579 goto unmap;
Joerg Roedel65b050a2008-06-26 21:28:02 +02002580 }
2581
Joerg Roedel17b124b2011-04-06 18:01:35 +02002582 domain_flush_complete(domain);
Joerg Roedel65b050a2008-06-26 21:28:02 +02002583
2584out:
2585 spin_unlock_irqrestore(&domain->lock, flags);
2586
2587 return mapped_elems;
2588unmap:
2589 for_each_sg(sglist, s, mapped_elems, i) {
2590 if (s->dma_address)
Joerg Roedelcd8c82e2009-11-23 19:33:56 +01002591 __unmap_single(domain->priv, s->dma_address,
Joerg Roedel65b050a2008-06-26 21:28:02 +02002592 s->dma_length, dir);
2593 s->dma_address = s->dma_length = 0;
2594 }
2595
2596 mapped_elems = 0;
2597
2598 goto out;
2599}
2600
Joerg Roedel431b2a22008-07-11 17:14:22 +02002601/*
2602 * The exported map_sg function for dma_ops (handles scatter-gather
2603 * lists).
2604 */
Joerg Roedel65b050a2008-06-26 21:28:02 +02002605static void unmap_sg(struct device *dev, struct scatterlist *sglist,
FUJITA Tomonori160c1d82009-01-05 23:59:02 +09002606 int nelems, enum dma_data_direction dir,
2607 struct dma_attrs *attrs)
Joerg Roedel65b050a2008-06-26 21:28:02 +02002608{
2609 unsigned long flags;
Joerg Roedel65b050a2008-06-26 21:28:02 +02002610 struct protection_domain *domain;
2611 struct scatterlist *s;
Joerg Roedel65b050a2008-06-26 21:28:02 +02002612 int i;
2613
Joerg Roedel55877a62008-12-12 15:12:14 +01002614 INC_STATS_COUNTER(cnt_unmap_sg);
2615
Joerg Roedel94f6d192009-11-24 16:40:02 +01002616 domain = get_domain(dev);
2617 if (IS_ERR(domain))
Joerg Roedel5b28df62008-12-02 17:49:42 +01002618 return;
2619
Joerg Roedel65b050a2008-06-26 21:28:02 +02002620 spin_lock_irqsave(&domain->lock, flags);
2621
2622 for_each_sg(sglist, s, nelems, i) {
Joerg Roedelcd8c82e2009-11-23 19:33:56 +01002623 __unmap_single(domain->priv, s->dma_address,
Joerg Roedel65b050a2008-06-26 21:28:02 +02002624 s->dma_length, dir);
Joerg Roedel65b050a2008-06-26 21:28:02 +02002625 s->dma_address = s->dma_length = 0;
2626 }
2627
Joerg Roedel17b124b2011-04-06 18:01:35 +02002628 domain_flush_complete(domain);
Joerg Roedel65b050a2008-06-26 21:28:02 +02002629
2630 spin_unlock_irqrestore(&domain->lock, flags);
2631}
2632
Joerg Roedel431b2a22008-07-11 17:14:22 +02002633/*
2634 * The exported alloc_coherent function for dma_ops.
2635 */
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002636static void *alloc_coherent(struct device *dev, size_t size,
Andrzej Pietrasiewiczbaa676f2012-03-27 14:28:18 +02002637 dma_addr_t *dma_addr, gfp_t flag,
2638 struct dma_attrs *attrs)
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002639{
Joerg Roedel832a90c2008-09-18 15:54:23 +02002640 u64 dma_mask = dev->coherent_dma_mask;
Joerg Roedel3b839a52015-04-01 14:58:47 +02002641 struct protection_domain *domain;
2642 unsigned long flags;
2643 struct page *page;
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002644
Joerg Roedelc8f0fb32008-12-12 15:14:21 +01002645 INC_STATS_COUNTER(cnt_alloc_coherent);
2646
Joerg Roedel94f6d192009-11-24 16:40:02 +01002647 domain = get_domain(dev);
2648 if (PTR_ERR(domain) == -EINVAL) {
Joerg Roedel3b839a52015-04-01 14:58:47 +02002649 page = alloc_pages(flag, get_order(size));
2650 *dma_addr = page_to_phys(page);
2651 return page_address(page);
Joerg Roedel94f6d192009-11-24 16:40:02 +01002652 } else if (IS_ERR(domain))
2653 return NULL;
Joerg Roedeldbcc1122008-09-04 15:04:26 +02002654
Joerg Roedel3b839a52015-04-01 14:58:47 +02002655 size = PAGE_ALIGN(size);
Joerg Roedelf99c0f12009-11-23 16:52:56 +01002656 dma_mask = dev->coherent_dma_mask;
2657 flag &= ~(__GFP_DMA | __GFP_HIGHMEM | __GFP_DMA32);
Joerg Roedel2d0ec7a2015-06-01 17:30:57 +02002658 flag |= __GFP_ZERO;
FUJITA Tomonori13d9fea2008-09-10 20:19:40 +09002659
Joerg Roedel3b839a52015-04-01 14:58:47 +02002660 page = alloc_pages(flag | __GFP_NOWARN, get_order(size));
2661 if (!page) {
2662 if (!(flag & __GFP_WAIT))
2663 return NULL;
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002664
Joerg Roedel3b839a52015-04-01 14:58:47 +02002665 page = dma_alloc_from_contiguous(dev, size >> PAGE_SHIFT,
2666 get_order(size));
2667 if (!page)
2668 return NULL;
2669 }
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002670
Joerg Roedel832a90c2008-09-18 15:54:23 +02002671 if (!dma_mask)
2672 dma_mask = *dev->dma_mask;
2673
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002674 spin_lock_irqsave(&domain->lock, flags);
2675
Joerg Roedel3b839a52015-04-01 14:58:47 +02002676 *dma_addr = __map_single(dev, domain->priv, page_to_phys(page),
Joerg Roedel832a90c2008-09-18 15:54:23 +02002677 size, DMA_BIDIRECTIONAL, true, dma_mask);
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002678
FUJITA Tomonori8fd524b2009-11-15 21:19:53 +09002679 if (*dma_addr == DMA_ERROR_CODE) {
Jiri Slaby367d04c2009-05-28 09:54:48 +02002680 spin_unlock_irqrestore(&domain->lock, flags);
Joerg Roedel5b28df62008-12-02 17:49:42 +01002681 goto out_free;
Jiri Slaby367d04c2009-05-28 09:54:48 +02002682 }
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002683
Joerg Roedel17b124b2011-04-06 18:01:35 +02002684 domain_flush_complete(domain);
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002685
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002686 spin_unlock_irqrestore(&domain->lock, flags);
2687
Joerg Roedel3b839a52015-04-01 14:58:47 +02002688 return page_address(page);
Joerg Roedel5b28df62008-12-02 17:49:42 +01002689
2690out_free:
2691
Joerg Roedel3b839a52015-04-01 14:58:47 +02002692 if (!dma_release_from_contiguous(dev, page, size >> PAGE_SHIFT))
2693 __free_pages(page, get_order(size));
Joerg Roedel5b28df62008-12-02 17:49:42 +01002694
2695 return NULL;
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002696}
2697
Joerg Roedel431b2a22008-07-11 17:14:22 +02002698/*
2699 * The exported free_coherent function for dma_ops.
Joerg Roedel431b2a22008-07-11 17:14:22 +02002700 */
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002701static void free_coherent(struct device *dev, size_t size,
Andrzej Pietrasiewiczbaa676f2012-03-27 14:28:18 +02002702 void *virt_addr, dma_addr_t dma_addr,
2703 struct dma_attrs *attrs)
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002704{
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002705 struct protection_domain *domain;
Joerg Roedel3b839a52015-04-01 14:58:47 +02002706 unsigned long flags;
2707 struct page *page;
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002708
Joerg Roedel5d31ee72008-12-12 15:16:38 +01002709 INC_STATS_COUNTER(cnt_free_coherent);
2710
Joerg Roedel3b839a52015-04-01 14:58:47 +02002711 page = virt_to_page(virt_addr);
2712 size = PAGE_ALIGN(size);
2713
Joerg Roedel94f6d192009-11-24 16:40:02 +01002714 domain = get_domain(dev);
2715 if (IS_ERR(domain))
Joerg Roedel5b28df62008-12-02 17:49:42 +01002716 goto free_mem;
2717
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002718 spin_lock_irqsave(&domain->lock, flags);
2719
Joerg Roedelcd8c82e2009-11-23 19:33:56 +01002720 __unmap_single(domain->priv, dma_addr, size, DMA_BIDIRECTIONAL);
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002721
Joerg Roedel17b124b2011-04-06 18:01:35 +02002722 domain_flush_complete(domain);
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002723
2724 spin_unlock_irqrestore(&domain->lock, flags);
2725
2726free_mem:
Joerg Roedel3b839a52015-04-01 14:58:47 +02002727 if (!dma_release_from_contiguous(dev, page, size >> PAGE_SHIFT))
2728 __free_pages(page, get_order(size));
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002729}
2730
Joerg Roedelc432f3d2008-06-26 21:28:04 +02002731/*
Joerg Roedelb39ba6a2008-09-09 18:40:46 +02002732 * This function is called by the DMA layer to find out if we can handle a
2733 * particular device. It is part of the dma_ops.
2734 */
2735static int amd_iommu_dma_supported(struct device *dev, u64 mask)
2736{
Joerg Roedel420aef82009-11-23 16:14:57 +01002737 return check_device(dev);
Joerg Roedelb39ba6a2008-09-09 18:40:46 +02002738}
2739
FUJITA Tomonori160c1d82009-01-05 23:59:02 +09002740static struct dma_map_ops amd_iommu_dma_ops = {
Andrzej Pietrasiewiczbaa676f2012-03-27 14:28:18 +02002741 .alloc = alloc_coherent,
2742 .free = free_coherent,
FUJITA Tomonori51491362009-01-05 23:47:25 +09002743 .map_page = map_page,
2744 .unmap_page = unmap_page,
Joerg Roedel6631ee92008-06-26 21:28:05 +02002745 .map_sg = map_sg,
2746 .unmap_sg = unmap_sg,
Joerg Roedelb39ba6a2008-09-09 18:40:46 +02002747 .dma_supported = amd_iommu_dma_supported,
Joerg Roedel6631ee92008-06-26 21:28:05 +02002748};
2749
Joerg Roedel3a18404c2015-05-28 18:41:45 +02002750int __init amd_iommu_init_api(void)
Joerg Roedel27c21272011-05-30 15:56:24 +02002751{
Joerg Roedel3a18404c2015-05-28 18:41:45 +02002752 return bus_set_iommu(&pci_bus_type, &amd_iommu_ops);
Joerg Roedelf5325092010-01-22 17:44:35 +01002753}
2754
Joerg Roedel6631ee92008-06-26 21:28:05 +02002755int __init amd_iommu_init_dma_ops(void)
2756{
Joerg Roedel32302322015-07-28 16:58:50 +02002757 swiotlb = iommu_pass_through ? 1 : 0;
Joerg Roedel6631ee92008-06-26 21:28:05 +02002758 iommu_detected = 1;
Joerg Roedel6631ee92008-06-26 21:28:05 +02002759
Joerg Roedel52717822015-07-28 16:58:51 +02002760 /*
2761 * In case we don't initialize SWIOTLB (actually the common case
2762 * when AMD IOMMU is enabled), make sure there are global
2763 * dma_ops set as a fall-back for devices not handled by this
2764 * driver (for example non-PCI devices).
2765 */
2766 if (!swiotlb)
2767 dma_ops = &nommu_dma_ops;
2768
Joerg Roedel7f265082008-12-12 13:50:21 +01002769 amd_iommu_stats_init();
2770
Joerg Roedel62410ee2012-06-12 16:42:43 +02002771 if (amd_iommu_unmap_flush)
2772 pr_info("AMD-Vi: IO/TLB flush on unmap enabled\n");
2773 else
2774 pr_info("AMD-Vi: Lazy IO/TLB flushing enabled\n");
2775
Joerg Roedel6631ee92008-06-26 21:28:05 +02002776 return 0;
Joerg Roedel6631ee92008-06-26 21:28:05 +02002777}
Joerg Roedel6d98cd82008-12-08 12:05:55 +01002778
2779/*****************************************************************************
2780 *
2781 * The following functions belong to the exported interface of AMD IOMMU
2782 *
2783 * This interface allows access to lower level functions of the IOMMU
2784 * like protection domain handling and assignement of devices to domains
2785 * which is not possible with the dma_ops interface.
2786 *
2787 *****************************************************************************/
2788
Joerg Roedel6d98cd82008-12-08 12:05:55 +01002789static void cleanup_domain(struct protection_domain *domain)
2790{
Joerg Roedel9b29d3c2014-08-05 17:50:15 +02002791 struct iommu_dev_data *entry;
Joerg Roedel6d98cd82008-12-08 12:05:55 +01002792 unsigned long flags;
Joerg Roedel6d98cd82008-12-08 12:05:55 +01002793
2794 write_lock_irqsave(&amd_iommu_devtable_lock, flags);
2795
Joerg Roedel9b29d3c2014-08-05 17:50:15 +02002796 while (!list_empty(&domain->dev_list)) {
2797 entry = list_first_entry(&domain->dev_list,
2798 struct iommu_dev_data, list);
2799 __detach_device(entry);
Joerg Roedel492667d2009-11-27 13:25:47 +01002800 }
Joerg Roedel6d98cd82008-12-08 12:05:55 +01002801
2802 write_unlock_irqrestore(&amd_iommu_devtable_lock, flags);
2803}
2804
Joerg Roedel26508152009-08-26 16:52:40 +02002805static void protection_domain_free(struct protection_domain *domain)
2806{
2807 if (!domain)
2808 return;
2809
Joerg Roedelaeb26f52009-11-20 16:44:01 +01002810 del_domain_from_list(domain);
2811
Joerg Roedel26508152009-08-26 16:52:40 +02002812 if (domain->id)
2813 domain_id_free(domain->id);
2814
2815 kfree(domain);
2816}
2817
Joerg Roedel7a5a5662015-06-30 08:56:11 +02002818static int protection_domain_init(struct protection_domain *domain)
2819{
2820 spin_lock_init(&domain->lock);
2821 mutex_init(&domain->api_lock);
2822 domain->id = domain_id_alloc();
2823 if (!domain->id)
2824 return -ENOMEM;
2825 INIT_LIST_HEAD(&domain->dev_list);
2826
2827 return 0;
2828}
2829
Joerg Roedel26508152009-08-26 16:52:40 +02002830static struct protection_domain *protection_domain_alloc(void)
Joerg Roedelc156e342008-12-02 18:13:27 +01002831{
2832 struct protection_domain *domain;
2833
2834 domain = kzalloc(sizeof(*domain), GFP_KERNEL);
2835 if (!domain)
Joerg Roedel26508152009-08-26 16:52:40 +02002836 return NULL;
Joerg Roedelc156e342008-12-02 18:13:27 +01002837
Joerg Roedel7a5a5662015-06-30 08:56:11 +02002838 if (protection_domain_init(domain))
Joerg Roedel26508152009-08-26 16:52:40 +02002839 goto out_err;
2840
Joerg Roedelaeb26f52009-11-20 16:44:01 +01002841 add_domain_to_list(domain);
2842
Joerg Roedel26508152009-08-26 16:52:40 +02002843 return domain;
2844
2845out_err:
2846 kfree(domain);
2847
2848 return NULL;
2849}
2850
Joerg Roedel3f4b87b2015-03-26 13:43:07 +01002851static struct iommu_domain *amd_iommu_domain_alloc(unsigned type)
2852{
2853 struct protection_domain *pdomain;
Joerg Roedel0bb6e242015-05-28 18:41:40 +02002854 struct dma_ops_domain *dma_domain;
Joerg Roedel3f4b87b2015-03-26 13:43:07 +01002855
Joerg Roedel0bb6e242015-05-28 18:41:40 +02002856 switch (type) {
2857 case IOMMU_DOMAIN_UNMANAGED:
2858 pdomain = protection_domain_alloc();
2859 if (!pdomain)
2860 return NULL;
2861
2862 pdomain->mode = PAGE_MODE_3_LEVEL;
2863 pdomain->pt_root = (void *)get_zeroed_page(GFP_KERNEL);
2864 if (!pdomain->pt_root) {
2865 protection_domain_free(pdomain);
2866 return NULL;
2867 }
2868
2869 pdomain->domain.geometry.aperture_start = 0;
2870 pdomain->domain.geometry.aperture_end = ~0ULL;
2871 pdomain->domain.geometry.force_aperture = true;
2872
2873 break;
2874 case IOMMU_DOMAIN_DMA:
2875 dma_domain = dma_ops_domain_alloc();
2876 if (!dma_domain) {
2877 pr_err("AMD-Vi: Failed to allocate\n");
2878 return NULL;
2879 }
2880 pdomain = &dma_domain->domain;
2881 break;
Joerg Roedel07f643a2015-05-28 18:41:41 +02002882 case IOMMU_DOMAIN_IDENTITY:
2883 pdomain = protection_domain_alloc();
2884 if (!pdomain)
2885 return NULL;
2886
2887 pdomain->mode = PAGE_MODE_NONE;
2888 break;
Joerg Roedel0bb6e242015-05-28 18:41:40 +02002889 default:
Joerg Roedel3f4b87b2015-03-26 13:43:07 +01002890 return NULL;
Joerg Roedel0bb6e242015-05-28 18:41:40 +02002891 }
Joerg Roedel3f4b87b2015-03-26 13:43:07 +01002892
2893 return &pdomain->domain;
Joerg Roedel3f4b87b2015-03-26 13:43:07 +01002894}
2895
2896static void amd_iommu_domain_free(struct iommu_domain *dom)
Joerg Roedel26508152009-08-26 16:52:40 +02002897{
2898 struct protection_domain *domain;
2899
Joerg Roedel3f4b87b2015-03-26 13:43:07 +01002900 if (!dom)
Joerg Roedel98383fc2008-12-02 18:34:12 +01002901 return;
2902
Joerg Roedel3f4b87b2015-03-26 13:43:07 +01002903 domain = to_pdomain(dom);
2904
Joerg Roedel98383fc2008-12-02 18:34:12 +01002905 if (domain->dev_cnt > 0)
2906 cleanup_domain(domain);
2907
2908 BUG_ON(domain->dev_cnt != 0);
2909
Joerg Roedel132bd682011-11-17 14:18:46 +01002910 if (domain->mode != PAGE_MODE_NONE)
2911 free_pagetable(domain);
Joerg Roedel98383fc2008-12-02 18:34:12 +01002912
Joerg Roedel52815b72011-11-17 17:24:28 +01002913 if (domain->flags & PD_IOMMUV2_MASK)
2914 free_gcr3_table(domain);
2915
Joerg Roedel8b408fe2010-03-08 14:20:07 +01002916 protection_domain_free(domain);
Joerg Roedel98383fc2008-12-02 18:34:12 +01002917}
2918
Joerg Roedel684f2882008-12-08 12:07:44 +01002919static void amd_iommu_detach_device(struct iommu_domain *dom,
2920 struct device *dev)
2921{
Joerg Roedel657cbb62009-11-23 15:26:46 +01002922 struct iommu_dev_data *dev_data = dev->archdata.iommu;
Joerg Roedel684f2882008-12-08 12:07:44 +01002923 struct amd_iommu *iommu;
Joerg Roedel684f2882008-12-08 12:07:44 +01002924 u16 devid;
2925
Joerg Roedel98fc5a62009-11-24 17:19:23 +01002926 if (!check_device(dev))
Joerg Roedel684f2882008-12-08 12:07:44 +01002927 return;
2928
Joerg Roedel98fc5a62009-11-24 17:19:23 +01002929 devid = get_device_id(dev);
Joerg Roedel684f2882008-12-08 12:07:44 +01002930
Joerg Roedel657cbb62009-11-23 15:26:46 +01002931 if (dev_data->domain != NULL)
Joerg Roedel15898bb2009-11-24 15:39:42 +01002932 detach_device(dev);
Joerg Roedel684f2882008-12-08 12:07:44 +01002933
2934 iommu = amd_iommu_rlookup_table[devid];
2935 if (!iommu)
2936 return;
2937
Joerg Roedel684f2882008-12-08 12:07:44 +01002938 iommu_completion_wait(iommu);
2939}
2940
Joerg Roedel01106062008-12-02 19:34:11 +01002941static int amd_iommu_attach_device(struct iommu_domain *dom,
2942 struct device *dev)
2943{
Joerg Roedel3f4b87b2015-03-26 13:43:07 +01002944 struct protection_domain *domain = to_pdomain(dom);
Joerg Roedel657cbb62009-11-23 15:26:46 +01002945 struct iommu_dev_data *dev_data;
Joerg Roedel01106062008-12-02 19:34:11 +01002946 struct amd_iommu *iommu;
Joerg Roedel15898bb2009-11-24 15:39:42 +01002947 int ret;
Joerg Roedel01106062008-12-02 19:34:11 +01002948
Joerg Roedel98fc5a62009-11-24 17:19:23 +01002949 if (!check_device(dev))
Joerg Roedel01106062008-12-02 19:34:11 +01002950 return -EINVAL;
2951
Joerg Roedel657cbb62009-11-23 15:26:46 +01002952 dev_data = dev->archdata.iommu;
2953
Joerg Roedelf62dda62011-06-09 12:55:35 +02002954 iommu = amd_iommu_rlookup_table[dev_data->devid];
Joerg Roedel01106062008-12-02 19:34:11 +01002955 if (!iommu)
2956 return -EINVAL;
2957
Joerg Roedel657cbb62009-11-23 15:26:46 +01002958 if (dev_data->domain)
Joerg Roedel15898bb2009-11-24 15:39:42 +01002959 detach_device(dev);
Joerg Roedel01106062008-12-02 19:34:11 +01002960
Joerg Roedel15898bb2009-11-24 15:39:42 +01002961 ret = attach_device(dev, domain);
Joerg Roedel01106062008-12-02 19:34:11 +01002962
2963 iommu_completion_wait(iommu);
2964
Joerg Roedel15898bb2009-11-24 15:39:42 +01002965 return ret;
Joerg Roedel01106062008-12-02 19:34:11 +01002966}
2967
Joerg Roedel468e2362010-01-21 16:37:36 +01002968static int amd_iommu_map(struct iommu_domain *dom, unsigned long iova,
Ohad Ben-Cohen50090652011-11-10 11:32:25 +02002969 phys_addr_t paddr, size_t page_size, int iommu_prot)
Joerg Roedelc6229ca2008-12-02 19:48:43 +01002970{
Joerg Roedel3f4b87b2015-03-26 13:43:07 +01002971 struct protection_domain *domain = to_pdomain(dom);
Joerg Roedelc6229ca2008-12-02 19:48:43 +01002972 int prot = 0;
2973 int ret;
2974
Joerg Roedel132bd682011-11-17 14:18:46 +01002975 if (domain->mode == PAGE_MODE_NONE)
2976 return -EINVAL;
2977
Joerg Roedelc6229ca2008-12-02 19:48:43 +01002978 if (iommu_prot & IOMMU_READ)
2979 prot |= IOMMU_PROT_IR;
2980 if (iommu_prot & IOMMU_WRITE)
2981 prot |= IOMMU_PROT_IW;
2982
Joerg Roedel5d214fe2010-02-08 14:44:49 +01002983 mutex_lock(&domain->api_lock);
Joerg Roedel795e74f72010-05-11 17:40:57 +02002984 ret = iommu_map_page(domain, iova, paddr, prot, page_size);
Joerg Roedel5d214fe2010-02-08 14:44:49 +01002985 mutex_unlock(&domain->api_lock);
2986
Joerg Roedel795e74f72010-05-11 17:40:57 +02002987 return ret;
Joerg Roedelc6229ca2008-12-02 19:48:43 +01002988}
2989
Ohad Ben-Cohen50090652011-11-10 11:32:25 +02002990static size_t amd_iommu_unmap(struct iommu_domain *dom, unsigned long iova,
2991 size_t page_size)
Joerg Roedeleb74ff62008-12-02 19:59:10 +01002992{
Joerg Roedel3f4b87b2015-03-26 13:43:07 +01002993 struct protection_domain *domain = to_pdomain(dom);
Ohad Ben-Cohen50090652011-11-10 11:32:25 +02002994 size_t unmap_size;
Joerg Roedeleb74ff62008-12-02 19:59:10 +01002995
Joerg Roedel132bd682011-11-17 14:18:46 +01002996 if (domain->mode == PAGE_MODE_NONE)
2997 return -EINVAL;
2998
Joerg Roedel5d214fe2010-02-08 14:44:49 +01002999 mutex_lock(&domain->api_lock);
Joerg Roedel468e2362010-01-21 16:37:36 +01003000 unmap_size = iommu_unmap_page(domain, iova, page_size);
Joerg Roedel795e74f72010-05-11 17:40:57 +02003001 mutex_unlock(&domain->api_lock);
Joerg Roedeleb74ff62008-12-02 19:59:10 +01003002
Joerg Roedel17b124b2011-04-06 18:01:35 +02003003 domain_flush_tlb_pde(domain);
Joerg Roedel5d214fe2010-02-08 14:44:49 +01003004
Ohad Ben-Cohen50090652011-11-10 11:32:25 +02003005 return unmap_size;
Joerg Roedeleb74ff62008-12-02 19:59:10 +01003006}
3007
Joerg Roedel645c4c82008-12-02 20:05:50 +01003008static phys_addr_t amd_iommu_iova_to_phys(struct iommu_domain *dom,
Varun Sethibb5547ac2013-03-29 01:23:58 +05303009 dma_addr_t iova)
Joerg Roedel645c4c82008-12-02 20:05:50 +01003010{
Joerg Roedel3f4b87b2015-03-26 13:43:07 +01003011 struct protection_domain *domain = to_pdomain(dom);
Joerg Roedel3039ca12015-04-01 14:58:48 +02003012 unsigned long offset_mask, pte_pgsize;
Joerg Roedelf03152b2010-01-21 16:15:24 +01003013 u64 *pte, __pte;
Joerg Roedel645c4c82008-12-02 20:05:50 +01003014
Joerg Roedel132bd682011-11-17 14:18:46 +01003015 if (domain->mode == PAGE_MODE_NONE)
3016 return iova;
3017
Joerg Roedel3039ca12015-04-01 14:58:48 +02003018 pte = fetch_pte(domain, iova, &pte_pgsize);
Joerg Roedel645c4c82008-12-02 20:05:50 +01003019
Joerg Roedela6d41a42009-09-02 17:08:55 +02003020 if (!pte || !IOMMU_PTE_PRESENT(*pte))
Joerg Roedel645c4c82008-12-02 20:05:50 +01003021 return 0;
3022
Joerg Roedelb24b1b62015-04-01 14:58:51 +02003023 offset_mask = pte_pgsize - 1;
3024 __pte = *pte & PM_ADDR_MASK;
Joerg Roedelf03152b2010-01-21 16:15:24 +01003025
Joerg Roedelb24b1b62015-04-01 14:58:51 +02003026 return (__pte & ~offset_mask) | (iova & offset_mask);
Joerg Roedel645c4c82008-12-02 20:05:50 +01003027}
3028
Joerg Roedelab636482014-09-05 10:48:21 +02003029static bool amd_iommu_capable(enum iommu_cap cap)
Sheng Yangdbb9fd82009-03-18 15:33:06 +08003030{
Joerg Roedel80a506b2010-07-27 17:14:24 +02003031 switch (cap) {
3032 case IOMMU_CAP_CACHE_COHERENCY:
Joerg Roedelab636482014-09-05 10:48:21 +02003033 return true;
Joerg Roedelbdddadc2012-07-02 18:38:13 +02003034 case IOMMU_CAP_INTR_REMAP:
Joerg Roedelab636482014-09-05 10:48:21 +02003035 return (irq_remapping_enabled == 1);
Will Deaconcfdeec22014-10-27 11:24:48 +00003036 case IOMMU_CAP_NOEXEC:
3037 return false;
Joerg Roedel80a506b2010-07-27 17:14:24 +02003038 }
3039
Joerg Roedelab636482014-09-05 10:48:21 +02003040 return false;
Sheng Yangdbb9fd82009-03-18 15:33:06 +08003041}
3042
Joerg Roedel35cf2482015-05-28 18:41:37 +02003043static void amd_iommu_get_dm_regions(struct device *dev,
3044 struct list_head *head)
3045{
3046 struct unity_map_entry *entry;
3047 u16 devid;
3048
3049 devid = get_device_id(dev);
3050
3051 list_for_each_entry(entry, &amd_iommu_unity_map, list) {
3052 struct iommu_dm_region *region;
3053
3054 if (devid < entry->devid_start || devid > entry->devid_end)
3055 continue;
3056
3057 region = kzalloc(sizeof(*region), GFP_KERNEL);
3058 if (!region) {
3059 pr_err("Out of memory allocating dm-regions for %s\n",
3060 dev_name(dev));
3061 return;
3062 }
3063
3064 region->start = entry->address_start;
3065 region->length = entry->address_end - entry->address_start;
3066 if (entry->prot & IOMMU_PROT_IR)
3067 region->prot |= IOMMU_READ;
3068 if (entry->prot & IOMMU_PROT_IW)
3069 region->prot |= IOMMU_WRITE;
3070
3071 list_add_tail(&region->list, head);
3072 }
3073}
3074
3075static void amd_iommu_put_dm_regions(struct device *dev,
3076 struct list_head *head)
3077{
3078 struct iommu_dm_region *entry, *next;
3079
3080 list_for_each_entry_safe(entry, next, head, list)
3081 kfree(entry);
3082}
3083
Thierry Redingb22f6432014-06-27 09:03:12 +02003084static const struct iommu_ops amd_iommu_ops = {
Joerg Roedelab636482014-09-05 10:48:21 +02003085 .capable = amd_iommu_capable,
Joerg Roedel3f4b87b2015-03-26 13:43:07 +01003086 .domain_alloc = amd_iommu_domain_alloc,
3087 .domain_free = amd_iommu_domain_free,
Joerg Roedel26961ef2008-12-03 17:00:17 +01003088 .attach_dev = amd_iommu_attach_device,
3089 .detach_dev = amd_iommu_detach_device,
Joerg Roedel468e2362010-01-21 16:37:36 +01003090 .map = amd_iommu_map,
3091 .unmap = amd_iommu_unmap,
Olav Haugan315786e2014-10-25 09:55:16 -07003092 .map_sg = default_iommu_map_sg,
Joerg Roedel26961ef2008-12-03 17:00:17 +01003093 .iova_to_phys = amd_iommu_iova_to_phys,
Joerg Roedelaafd8ba2015-05-28 18:41:39 +02003094 .add_device = amd_iommu_add_device,
3095 .remove_device = amd_iommu_remove_device,
Joerg Roedel35cf2482015-05-28 18:41:37 +02003096 .get_dm_regions = amd_iommu_get_dm_regions,
3097 .put_dm_regions = amd_iommu_put_dm_regions,
Ohad Ben-Cohenaa3de9c2011-11-10 11:32:29 +02003098 .pgsize_bitmap = AMD_IOMMU_PGSIZES,
Joerg Roedel26961ef2008-12-03 17:00:17 +01003099};
3100
Joerg Roedel0feae532009-08-26 15:26:30 +02003101/*****************************************************************************
3102 *
3103 * The next functions do a basic initialization of IOMMU for pass through
3104 * mode
3105 *
3106 * In passthrough mode the IOMMU is initialized and enabled but not used for
3107 * DMA-API translation.
3108 *
3109 *****************************************************************************/
3110
Joerg Roedel72e1dcc2011-11-10 19:13:51 +01003111/* IOMMUv2 specific functions */
3112int amd_iommu_register_ppr_notifier(struct notifier_block *nb)
3113{
3114 return atomic_notifier_chain_register(&ppr_notifier, nb);
3115}
3116EXPORT_SYMBOL(amd_iommu_register_ppr_notifier);
3117
3118int amd_iommu_unregister_ppr_notifier(struct notifier_block *nb)
3119{
3120 return atomic_notifier_chain_unregister(&ppr_notifier, nb);
3121}
3122EXPORT_SYMBOL(amd_iommu_unregister_ppr_notifier);
Joerg Roedel132bd682011-11-17 14:18:46 +01003123
3124void amd_iommu_domain_direct_map(struct iommu_domain *dom)
3125{
Joerg Roedel3f4b87b2015-03-26 13:43:07 +01003126 struct protection_domain *domain = to_pdomain(dom);
Joerg Roedel132bd682011-11-17 14:18:46 +01003127 unsigned long flags;
3128
3129 spin_lock_irqsave(&domain->lock, flags);
3130
3131 /* Update data structure */
3132 domain->mode = PAGE_MODE_NONE;
3133 domain->updated = true;
3134
3135 /* Make changes visible to IOMMUs */
3136 update_domain(domain);
3137
3138 /* Page-table is not visible to IOMMU anymore, so free it */
3139 free_pagetable(domain);
3140
3141 spin_unlock_irqrestore(&domain->lock, flags);
3142}
3143EXPORT_SYMBOL(amd_iommu_domain_direct_map);
Joerg Roedel52815b72011-11-17 17:24:28 +01003144
3145int amd_iommu_domain_enable_v2(struct iommu_domain *dom, int pasids)
3146{
Joerg Roedel3f4b87b2015-03-26 13:43:07 +01003147 struct protection_domain *domain = to_pdomain(dom);
Joerg Roedel52815b72011-11-17 17:24:28 +01003148 unsigned long flags;
3149 int levels, ret;
3150
3151 if (pasids <= 0 || pasids > (PASID_MASK + 1))
3152 return -EINVAL;
3153
3154 /* Number of GCR3 table levels required */
3155 for (levels = 0; (pasids - 1) & ~0x1ff; pasids >>= 9)
3156 levels += 1;
3157
3158 if (levels > amd_iommu_max_glx_val)
3159 return -EINVAL;
3160
3161 spin_lock_irqsave(&domain->lock, flags);
3162
3163 /*
3164 * Save us all sanity checks whether devices already in the
3165 * domain support IOMMUv2. Just force that the domain has no
3166 * devices attached when it is switched into IOMMUv2 mode.
3167 */
3168 ret = -EBUSY;
3169 if (domain->dev_cnt > 0 || domain->flags & PD_IOMMUV2_MASK)
3170 goto out;
3171
3172 ret = -ENOMEM;
3173 domain->gcr3_tbl = (void *)get_zeroed_page(GFP_ATOMIC);
3174 if (domain->gcr3_tbl == NULL)
3175 goto out;
3176
3177 domain->glx = levels;
3178 domain->flags |= PD_IOMMUV2_MASK;
3179 domain->updated = true;
3180
3181 update_domain(domain);
3182
3183 ret = 0;
3184
3185out:
3186 spin_unlock_irqrestore(&domain->lock, flags);
3187
3188 return ret;
3189}
3190EXPORT_SYMBOL(amd_iommu_domain_enable_v2);
Joerg Roedel22e266c2011-11-21 15:59:08 +01003191
3192static int __flush_pasid(struct protection_domain *domain, int pasid,
3193 u64 address, bool size)
3194{
3195 struct iommu_dev_data *dev_data;
3196 struct iommu_cmd cmd;
3197 int i, ret;
3198
3199 if (!(domain->flags & PD_IOMMUV2_MASK))
3200 return -EINVAL;
3201
3202 build_inv_iommu_pasid(&cmd, domain->id, pasid, address, size);
3203
3204 /*
3205 * IOMMU TLB needs to be flushed before Device TLB to
3206 * prevent device TLB refill from IOMMU TLB
3207 */
3208 for (i = 0; i < amd_iommus_present; ++i) {
3209 if (domain->dev_iommu[i] == 0)
3210 continue;
3211
3212 ret = iommu_queue_command(amd_iommus[i], &cmd);
3213 if (ret != 0)
3214 goto out;
3215 }
3216
3217 /* Wait until IOMMU TLB flushes are complete */
3218 domain_flush_complete(domain);
3219
3220 /* Now flush device TLBs */
3221 list_for_each_entry(dev_data, &domain->dev_list, list) {
3222 struct amd_iommu *iommu;
3223 int qdep;
3224
Joerg Roedel1c1cc452015-07-30 11:24:45 +02003225 /*
3226 There might be non-IOMMUv2 capable devices in an IOMMUv2
3227 * domain.
3228 */
3229 if (!dev_data->ats.enabled)
3230 continue;
Joerg Roedel22e266c2011-11-21 15:59:08 +01003231
3232 qdep = dev_data->ats.qdep;
3233 iommu = amd_iommu_rlookup_table[dev_data->devid];
3234
3235 build_inv_iotlb_pasid(&cmd, dev_data->devid, pasid,
3236 qdep, address, size);
3237
3238 ret = iommu_queue_command(iommu, &cmd);
3239 if (ret != 0)
3240 goto out;
3241 }
3242
3243 /* Wait until all device TLBs are flushed */
3244 domain_flush_complete(domain);
3245
3246 ret = 0;
3247
3248out:
3249
3250 return ret;
3251}
3252
3253static int __amd_iommu_flush_page(struct protection_domain *domain, int pasid,
3254 u64 address)
3255{
Joerg Roedel399be2f2011-12-01 16:53:47 +01003256 INC_STATS_COUNTER(invalidate_iotlb);
3257
Joerg Roedel22e266c2011-11-21 15:59:08 +01003258 return __flush_pasid(domain, pasid, address, false);
3259}
3260
3261int amd_iommu_flush_page(struct iommu_domain *dom, int pasid,
3262 u64 address)
3263{
Joerg Roedel3f4b87b2015-03-26 13:43:07 +01003264 struct protection_domain *domain = to_pdomain(dom);
Joerg Roedel22e266c2011-11-21 15:59:08 +01003265 unsigned long flags;
3266 int ret;
3267
3268 spin_lock_irqsave(&domain->lock, flags);
3269 ret = __amd_iommu_flush_page(domain, pasid, address);
3270 spin_unlock_irqrestore(&domain->lock, flags);
3271
3272 return ret;
3273}
3274EXPORT_SYMBOL(amd_iommu_flush_page);
3275
3276static int __amd_iommu_flush_tlb(struct protection_domain *domain, int pasid)
3277{
Joerg Roedel399be2f2011-12-01 16:53:47 +01003278 INC_STATS_COUNTER(invalidate_iotlb_all);
3279
Joerg Roedel22e266c2011-11-21 15:59:08 +01003280 return __flush_pasid(domain, pasid, CMD_INV_IOMMU_ALL_PAGES_ADDRESS,
3281 true);
3282}
3283
3284int amd_iommu_flush_tlb(struct iommu_domain *dom, int pasid)
3285{
Joerg Roedel3f4b87b2015-03-26 13:43:07 +01003286 struct protection_domain *domain = to_pdomain(dom);
Joerg Roedel22e266c2011-11-21 15:59:08 +01003287 unsigned long flags;
3288 int ret;
3289
3290 spin_lock_irqsave(&domain->lock, flags);
3291 ret = __amd_iommu_flush_tlb(domain, pasid);
3292 spin_unlock_irqrestore(&domain->lock, flags);
3293
3294 return ret;
3295}
3296EXPORT_SYMBOL(amd_iommu_flush_tlb);
3297
Joerg Roedelb16137b2011-11-21 16:50:23 +01003298static u64 *__get_gcr3_pte(u64 *root, int level, int pasid, bool alloc)
3299{
3300 int index;
3301 u64 *pte;
3302
3303 while (true) {
3304
3305 index = (pasid >> (9 * level)) & 0x1ff;
3306 pte = &root[index];
3307
3308 if (level == 0)
3309 break;
3310
3311 if (!(*pte & GCR3_VALID)) {
3312 if (!alloc)
3313 return NULL;
3314
3315 root = (void *)get_zeroed_page(GFP_ATOMIC);
3316 if (root == NULL)
3317 return NULL;
3318
3319 *pte = __pa(root) | GCR3_VALID;
3320 }
3321
3322 root = __va(*pte & PAGE_MASK);
3323
3324 level -= 1;
3325 }
3326
3327 return pte;
3328}
3329
3330static int __set_gcr3(struct protection_domain *domain, int pasid,
3331 unsigned long cr3)
3332{
3333 u64 *pte;
3334
3335 if (domain->mode != PAGE_MODE_NONE)
3336 return -EINVAL;
3337
3338 pte = __get_gcr3_pte(domain->gcr3_tbl, domain->glx, pasid, true);
3339 if (pte == NULL)
3340 return -ENOMEM;
3341
3342 *pte = (cr3 & PAGE_MASK) | GCR3_VALID;
3343
3344 return __amd_iommu_flush_tlb(domain, pasid);
3345}
3346
3347static int __clear_gcr3(struct protection_domain *domain, int pasid)
3348{
3349 u64 *pte;
3350
3351 if (domain->mode != PAGE_MODE_NONE)
3352 return -EINVAL;
3353
3354 pte = __get_gcr3_pte(domain->gcr3_tbl, domain->glx, pasid, false);
3355 if (pte == NULL)
3356 return 0;
3357
3358 *pte = 0;
3359
3360 return __amd_iommu_flush_tlb(domain, pasid);
3361}
3362
3363int amd_iommu_domain_set_gcr3(struct iommu_domain *dom, int pasid,
3364 unsigned long cr3)
3365{
Joerg Roedel3f4b87b2015-03-26 13:43:07 +01003366 struct protection_domain *domain = to_pdomain(dom);
Joerg Roedelb16137b2011-11-21 16:50:23 +01003367 unsigned long flags;
3368 int ret;
3369
3370 spin_lock_irqsave(&domain->lock, flags);
3371 ret = __set_gcr3(domain, pasid, cr3);
3372 spin_unlock_irqrestore(&domain->lock, flags);
3373
3374 return ret;
3375}
3376EXPORT_SYMBOL(amd_iommu_domain_set_gcr3);
3377
3378int amd_iommu_domain_clear_gcr3(struct iommu_domain *dom, int pasid)
3379{
Joerg Roedel3f4b87b2015-03-26 13:43:07 +01003380 struct protection_domain *domain = to_pdomain(dom);
Joerg Roedelb16137b2011-11-21 16:50:23 +01003381 unsigned long flags;
3382 int ret;
3383
3384 spin_lock_irqsave(&domain->lock, flags);
3385 ret = __clear_gcr3(domain, pasid);
3386 spin_unlock_irqrestore(&domain->lock, flags);
3387
3388 return ret;
3389}
3390EXPORT_SYMBOL(amd_iommu_domain_clear_gcr3);
Joerg Roedelc99afa22011-11-21 18:19:25 +01003391
3392int amd_iommu_complete_ppr(struct pci_dev *pdev, int pasid,
3393 int status, int tag)
3394{
3395 struct iommu_dev_data *dev_data;
3396 struct amd_iommu *iommu;
3397 struct iommu_cmd cmd;
3398
Joerg Roedel399be2f2011-12-01 16:53:47 +01003399 INC_STATS_COUNTER(complete_ppr);
3400
Joerg Roedelc99afa22011-11-21 18:19:25 +01003401 dev_data = get_dev_data(&pdev->dev);
3402 iommu = amd_iommu_rlookup_table[dev_data->devid];
3403
3404 build_complete_ppr(&cmd, dev_data->devid, pasid, status,
3405 tag, dev_data->pri_tlp);
3406
3407 return iommu_queue_command(iommu, &cmd);
3408}
3409EXPORT_SYMBOL(amd_iommu_complete_ppr);
Joerg Roedelf3572db2011-11-23 12:36:25 +01003410
3411struct iommu_domain *amd_iommu_get_v2_domain(struct pci_dev *pdev)
3412{
Joerg Roedel3f4b87b2015-03-26 13:43:07 +01003413 struct protection_domain *pdomain;
Joerg Roedelf3572db2011-11-23 12:36:25 +01003414
Joerg Roedel3f4b87b2015-03-26 13:43:07 +01003415 pdomain = get_domain(&pdev->dev);
3416 if (IS_ERR(pdomain))
Joerg Roedelf3572db2011-11-23 12:36:25 +01003417 return NULL;
3418
3419 /* Only return IOMMUv2 domains */
Joerg Roedel3f4b87b2015-03-26 13:43:07 +01003420 if (!(pdomain->flags & PD_IOMMUV2_MASK))
Joerg Roedelf3572db2011-11-23 12:36:25 +01003421 return NULL;
3422
Joerg Roedel3f4b87b2015-03-26 13:43:07 +01003423 return &pdomain->domain;
Joerg Roedelf3572db2011-11-23 12:36:25 +01003424}
3425EXPORT_SYMBOL(amd_iommu_get_v2_domain);
Joerg Roedel6a113dd2011-12-01 12:04:58 +01003426
3427void amd_iommu_enable_device_erratum(struct pci_dev *pdev, u32 erratum)
3428{
3429 struct iommu_dev_data *dev_data;
3430
3431 if (!amd_iommu_v2_supported())
3432 return;
3433
3434 dev_data = get_dev_data(&pdev->dev);
3435 dev_data->errata |= (1 << erratum);
3436}
3437EXPORT_SYMBOL(amd_iommu_enable_device_erratum);
Joerg Roedel52efdb82011-12-07 12:01:36 +01003438
3439int amd_iommu_device_info(struct pci_dev *pdev,
3440 struct amd_iommu_device_info *info)
3441{
3442 int max_pasids;
3443 int pos;
3444
3445 if (pdev == NULL || info == NULL)
3446 return -EINVAL;
3447
3448 if (!amd_iommu_v2_supported())
3449 return -EINVAL;
3450
3451 memset(info, 0, sizeof(*info));
3452
3453 pos = pci_find_ext_capability(pdev, PCI_EXT_CAP_ID_ATS);
3454 if (pos)
3455 info->flags |= AMD_IOMMU_DEVICE_FLAG_ATS_SUP;
3456
3457 pos = pci_find_ext_capability(pdev, PCI_EXT_CAP_ID_PRI);
3458 if (pos)
3459 info->flags |= AMD_IOMMU_DEVICE_FLAG_PRI_SUP;
3460
3461 pos = pci_find_ext_capability(pdev, PCI_EXT_CAP_ID_PASID);
3462 if (pos) {
3463 int features;
3464
3465 max_pasids = 1 << (9 * (amd_iommu_max_glx_val + 1));
3466 max_pasids = min(max_pasids, (1 << 20));
3467
3468 info->flags |= AMD_IOMMU_DEVICE_FLAG_PASID_SUP;
3469 info->max_pasids = min(pci_max_pasids(pdev), max_pasids);
3470
3471 features = pci_pasid_features(pdev);
3472 if (features & PCI_PASID_CAP_EXEC)
3473 info->flags |= AMD_IOMMU_DEVICE_FLAG_EXEC_SUP;
3474 if (features & PCI_PASID_CAP_PRIV)
3475 info->flags |= AMD_IOMMU_DEVICE_FLAG_PRIV_SUP;
3476 }
3477
3478 return 0;
3479}
3480EXPORT_SYMBOL(amd_iommu_device_info);
Joerg Roedel2b324502012-06-21 16:29:10 +02003481
3482#ifdef CONFIG_IRQ_REMAP
3483
3484/*****************************************************************************
3485 *
3486 * Interrupt Remapping Implementation
3487 *
3488 *****************************************************************************/
3489
3490union irte {
3491 u32 val;
3492 struct {
3493 u32 valid : 1,
3494 no_fault : 1,
3495 int_type : 3,
3496 rq_eoi : 1,
3497 dm : 1,
3498 rsvd_1 : 1,
3499 destination : 8,
3500 vector : 8,
3501 rsvd_2 : 8;
3502 } fields;
3503};
3504
Jiang Liu9c724962015-04-14 10:29:52 +08003505struct irq_2_irte {
3506 u16 devid; /* Device ID for IRTE table */
3507 u16 index; /* Index into IRTE table*/
3508};
3509
Jiang Liu7c71d302015-04-13 14:11:33 +08003510struct amd_ir_data {
3511 struct irq_2_irte irq_2_irte;
3512 union irte irte_entry;
3513 union {
3514 struct msi_msg msi_entry;
3515 };
3516};
3517
3518static struct irq_chip amd_ir_chip;
3519
Joerg Roedel2b324502012-06-21 16:29:10 +02003520#define DTE_IRQ_PHYS_ADDR_MASK (((1ULL << 45)-1) << 6)
3521#define DTE_IRQ_REMAP_INTCTL (2ULL << 60)
3522#define DTE_IRQ_TABLE_LEN (8ULL << 1)
3523#define DTE_IRQ_REMAP_ENABLE 1ULL
3524
3525static void set_dte_irq_entry(u16 devid, struct irq_remap_table *table)
3526{
3527 u64 dte;
3528
3529 dte = amd_iommu_dev_table[devid].data[2];
3530 dte &= ~DTE_IRQ_PHYS_ADDR_MASK;
3531 dte |= virt_to_phys(table->table);
3532 dte |= DTE_IRQ_REMAP_INTCTL;
3533 dte |= DTE_IRQ_TABLE_LEN;
3534 dte |= DTE_IRQ_REMAP_ENABLE;
3535
3536 amd_iommu_dev_table[devid].data[2] = dte;
3537}
3538
3539#define IRTE_ALLOCATED (~1U)
3540
3541static struct irq_remap_table *get_irq_table(u16 devid, bool ioapic)
3542{
3543 struct irq_remap_table *table = NULL;
3544 struct amd_iommu *iommu;
3545 unsigned long flags;
3546 u16 alias;
3547
3548 write_lock_irqsave(&amd_iommu_devtable_lock, flags);
3549
3550 iommu = amd_iommu_rlookup_table[devid];
3551 if (!iommu)
3552 goto out_unlock;
3553
3554 table = irq_lookup_table[devid];
3555 if (table)
3556 goto out;
3557
3558 alias = amd_iommu_alias_table[devid];
3559 table = irq_lookup_table[alias];
3560 if (table) {
3561 irq_lookup_table[devid] = table;
3562 set_dte_irq_entry(devid, table);
3563 iommu_flush_dte(iommu, devid);
3564 goto out;
3565 }
3566
3567 /* Nothing there yet, allocate new irq remapping table */
3568 table = kzalloc(sizeof(*table), GFP_ATOMIC);
3569 if (!table)
3570 goto out;
3571
Joerg Roedel197887f2013-04-09 21:14:08 +02003572 /* Initialize table spin-lock */
3573 spin_lock_init(&table->lock);
3574
Joerg Roedel2b324502012-06-21 16:29:10 +02003575 if (ioapic)
3576 /* Keep the first 32 indexes free for IOAPIC interrupts */
3577 table->min_index = 32;
3578
3579 table->table = kmem_cache_alloc(amd_iommu_irq_cache, GFP_ATOMIC);
3580 if (!table->table) {
3581 kfree(table);
Dan Carpenter821f0f62012-10-02 11:34:40 +03003582 table = NULL;
Joerg Roedel2b324502012-06-21 16:29:10 +02003583 goto out;
3584 }
3585
3586 memset(table->table, 0, MAX_IRQS_PER_TABLE * sizeof(u32));
3587
3588 if (ioapic) {
3589 int i;
3590
3591 for (i = 0; i < 32; ++i)
3592 table->table[i] = IRTE_ALLOCATED;
3593 }
3594
3595 irq_lookup_table[devid] = table;
3596 set_dte_irq_entry(devid, table);
3597 iommu_flush_dte(iommu, devid);
3598 if (devid != alias) {
3599 irq_lookup_table[alias] = table;
Alex Williamsone028a9e2014-04-22 10:08:40 -06003600 set_dte_irq_entry(alias, table);
Joerg Roedel2b324502012-06-21 16:29:10 +02003601 iommu_flush_dte(iommu, alias);
3602 }
3603
3604out:
3605 iommu_completion_wait(iommu);
3606
3607out_unlock:
3608 write_unlock_irqrestore(&amd_iommu_devtable_lock, flags);
3609
3610 return table;
3611}
3612
Jiang Liu3c3d4f92015-04-13 14:11:38 +08003613static int alloc_irq_index(u16 devid, int count)
Joerg Roedel2b324502012-06-21 16:29:10 +02003614{
3615 struct irq_remap_table *table;
3616 unsigned long flags;
3617 int index, c;
3618
3619 table = get_irq_table(devid, false);
3620 if (!table)
3621 return -ENODEV;
3622
3623 spin_lock_irqsave(&table->lock, flags);
3624
3625 /* Scan table for free entries */
3626 for (c = 0, index = table->min_index;
3627 index < MAX_IRQS_PER_TABLE;
3628 ++index) {
3629 if (table->table[index] == 0)
3630 c += 1;
3631 else
3632 c = 0;
3633
3634 if (c == count) {
Joerg Roedel2b324502012-06-21 16:29:10 +02003635 for (; c != 0; --c)
3636 table->table[index - c + 1] = IRTE_ALLOCATED;
3637
3638 index -= count - 1;
Joerg Roedel2b324502012-06-21 16:29:10 +02003639 goto out;
3640 }
3641 }
3642
3643 index = -ENOSPC;
3644
3645out:
3646 spin_unlock_irqrestore(&table->lock, flags);
3647
3648 return index;
3649}
3650
Joerg Roedel2b324502012-06-21 16:29:10 +02003651static int modify_irte(u16 devid, int index, union irte irte)
3652{
3653 struct irq_remap_table *table;
3654 struct amd_iommu *iommu;
3655 unsigned long flags;
3656
3657 iommu = amd_iommu_rlookup_table[devid];
3658 if (iommu == NULL)
3659 return -EINVAL;
3660
3661 table = get_irq_table(devid, false);
3662 if (!table)
3663 return -ENOMEM;
3664
3665 spin_lock_irqsave(&table->lock, flags);
3666 table->table[index] = irte.val;
3667 spin_unlock_irqrestore(&table->lock, flags);
3668
3669 iommu_flush_irt(iommu, devid);
3670 iommu_completion_wait(iommu);
3671
3672 return 0;
3673}
3674
3675static void free_irte(u16 devid, int index)
3676{
3677 struct irq_remap_table *table;
3678 struct amd_iommu *iommu;
3679 unsigned long flags;
3680
3681 iommu = amd_iommu_rlookup_table[devid];
3682 if (iommu == NULL)
3683 return;
3684
3685 table = get_irq_table(devid, false);
3686 if (!table)
3687 return;
3688
3689 spin_lock_irqsave(&table->lock, flags);
3690 table->table[index] = 0;
3691 spin_unlock_irqrestore(&table->lock, flags);
3692
3693 iommu_flush_irt(iommu, devid);
3694 iommu_completion_wait(iommu);
3695}
3696
Jiang Liu7c71d302015-04-13 14:11:33 +08003697static int get_devid(struct irq_alloc_info *info)
Joerg Roedel5527de72012-06-26 11:17:32 +02003698{
Jiang Liu7c71d302015-04-13 14:11:33 +08003699 int devid = -1;
Joerg Roedel5527de72012-06-26 11:17:32 +02003700
Jiang Liu7c71d302015-04-13 14:11:33 +08003701 switch (info->type) {
3702 case X86_IRQ_ALLOC_TYPE_IOAPIC:
3703 devid = get_ioapic_devid(info->ioapic_id);
3704 break;
3705 case X86_IRQ_ALLOC_TYPE_HPET:
3706 devid = get_hpet_devid(info->hpet_id);
3707 break;
3708 case X86_IRQ_ALLOC_TYPE_MSI:
3709 case X86_IRQ_ALLOC_TYPE_MSIX:
3710 devid = get_device_id(&info->msi_dev->dev);
3711 break;
3712 default:
3713 BUG_ON(1);
3714 break;
Joerg Roedel5527de72012-06-26 11:17:32 +02003715 }
3716
Jiang Liu7c71d302015-04-13 14:11:33 +08003717 return devid;
Joerg Roedel5527de72012-06-26 11:17:32 +02003718}
3719
Jiang Liu7c71d302015-04-13 14:11:33 +08003720static struct irq_domain *get_ir_irq_domain(struct irq_alloc_info *info)
Joerg Roedel5527de72012-06-26 11:17:32 +02003721{
Jiang Liu7c71d302015-04-13 14:11:33 +08003722 struct amd_iommu *iommu;
3723 int devid;
Joerg Roedel5527de72012-06-26 11:17:32 +02003724
Jiang Liu7c71d302015-04-13 14:11:33 +08003725 if (!info)
3726 return NULL;
Joerg Roedel5527de72012-06-26 11:17:32 +02003727
Jiang Liu7c71d302015-04-13 14:11:33 +08003728 devid = get_devid(info);
3729 if (devid >= 0) {
3730 iommu = amd_iommu_rlookup_table[devid];
3731 if (iommu)
3732 return iommu->ir_domain;
3733 }
Joerg Roedel5527de72012-06-26 11:17:32 +02003734
Jiang Liu7c71d302015-04-13 14:11:33 +08003735 return NULL;
Joerg Roedel5527de72012-06-26 11:17:32 +02003736}
3737
Jiang Liu7c71d302015-04-13 14:11:33 +08003738static struct irq_domain *get_irq_domain(struct irq_alloc_info *info)
Joerg Roedel0b4d48c2012-06-26 14:54:17 +02003739{
Jiang Liu7c71d302015-04-13 14:11:33 +08003740 struct amd_iommu *iommu;
3741 int devid;
Joerg Roedel0b4d48c2012-06-26 14:54:17 +02003742
Jiang Liu7c71d302015-04-13 14:11:33 +08003743 if (!info)
3744 return NULL;
Joerg Roedel0b4d48c2012-06-26 14:54:17 +02003745
Jiang Liu7c71d302015-04-13 14:11:33 +08003746 switch (info->type) {
3747 case X86_IRQ_ALLOC_TYPE_MSI:
3748 case X86_IRQ_ALLOC_TYPE_MSIX:
3749 devid = get_device_id(&info->msi_dev->dev);
3750 if (devid >= 0) {
3751 iommu = amd_iommu_rlookup_table[devid];
3752 if (iommu)
3753 return iommu->msi_domain;
3754 }
3755 break;
3756 default:
3757 break;
3758 }
Joerg Roedel0b4d48c2012-06-26 14:54:17 +02003759
Jiang Liu7c71d302015-04-13 14:11:33 +08003760 return NULL;
Joerg Roedeld9761952012-06-26 16:00:08 +02003761}
3762
Joerg Roedel6b474b82012-06-26 16:46:04 +02003763struct irq_remap_ops amd_iommu_irq_ops = {
Joerg Roedel6b474b82012-06-26 16:46:04 +02003764 .prepare = amd_iommu_prepare,
3765 .enable = amd_iommu_enable,
3766 .disable = amd_iommu_disable,
3767 .reenable = amd_iommu_reenable,
3768 .enable_faulting = amd_iommu_enable_faulting,
Jiang Liu7c71d302015-04-13 14:11:33 +08003769 .get_ir_irq_domain = get_ir_irq_domain,
3770 .get_irq_domain = get_irq_domain,
Joerg Roedel6b474b82012-06-26 16:46:04 +02003771};
Jiang Liu7c71d302015-04-13 14:11:33 +08003772
3773static void irq_remapping_prepare_irte(struct amd_ir_data *data,
3774 struct irq_cfg *irq_cfg,
3775 struct irq_alloc_info *info,
3776 int devid, int index, int sub_handle)
3777{
3778 struct irq_2_irte *irte_info = &data->irq_2_irte;
3779 struct msi_msg *msg = &data->msi_entry;
3780 union irte *irte = &data->irte_entry;
3781 struct IO_APIC_route_entry *entry;
3782
Jiang Liu7c71d302015-04-13 14:11:33 +08003783 data->irq_2_irte.devid = devid;
3784 data->irq_2_irte.index = index + sub_handle;
3785
3786 /* Setup IRTE for IOMMU */
3787 irte->val = 0;
3788 irte->fields.vector = irq_cfg->vector;
3789 irte->fields.int_type = apic->irq_delivery_mode;
3790 irte->fields.destination = irq_cfg->dest_apicid;
3791 irte->fields.dm = apic->irq_dest_mode;
3792 irte->fields.valid = 1;
3793
3794 switch (info->type) {
3795 case X86_IRQ_ALLOC_TYPE_IOAPIC:
3796 /* Setup IOAPIC entry */
3797 entry = info->ioapic_entry;
3798 info->ioapic_entry = NULL;
3799 memset(entry, 0, sizeof(*entry));
3800 entry->vector = index;
3801 entry->mask = 0;
3802 entry->trigger = info->ioapic_trigger;
3803 entry->polarity = info->ioapic_polarity;
3804 /* Mask level triggered irqs. */
3805 if (info->ioapic_trigger)
3806 entry->mask = 1;
3807 break;
3808
3809 case X86_IRQ_ALLOC_TYPE_HPET:
3810 case X86_IRQ_ALLOC_TYPE_MSI:
3811 case X86_IRQ_ALLOC_TYPE_MSIX:
3812 msg->address_hi = MSI_ADDR_BASE_HI;
3813 msg->address_lo = MSI_ADDR_BASE_LO;
3814 msg->data = irte_info->index;
3815 break;
3816
3817 default:
3818 BUG_ON(1);
3819 break;
3820 }
3821}
3822
3823static int irq_remapping_alloc(struct irq_domain *domain, unsigned int virq,
3824 unsigned int nr_irqs, void *arg)
3825{
3826 struct irq_alloc_info *info = arg;
3827 struct irq_data *irq_data;
3828 struct amd_ir_data *data;
3829 struct irq_cfg *cfg;
3830 int i, ret, devid;
3831 int index = -1;
3832
3833 if (!info)
3834 return -EINVAL;
3835 if (nr_irqs > 1 && info->type != X86_IRQ_ALLOC_TYPE_MSI &&
3836 info->type != X86_IRQ_ALLOC_TYPE_MSIX)
3837 return -EINVAL;
3838
3839 /*
3840 * With IRQ remapping enabled, don't need contiguous CPU vectors
3841 * to support multiple MSI interrupts.
3842 */
3843 if (info->type == X86_IRQ_ALLOC_TYPE_MSI)
3844 info->flags &= ~X86_IRQ_ALLOC_CONTIGUOUS_VECTORS;
3845
3846 devid = get_devid(info);
3847 if (devid < 0)
3848 return -EINVAL;
3849
3850 ret = irq_domain_alloc_irqs_parent(domain, virq, nr_irqs, arg);
3851 if (ret < 0)
3852 return ret;
3853
Jiang Liu7c71d302015-04-13 14:11:33 +08003854 if (info->type == X86_IRQ_ALLOC_TYPE_IOAPIC) {
3855 if (get_irq_table(devid, true))
3856 index = info->ioapic_pin;
3857 else
3858 ret = -ENOMEM;
3859 } else {
Jiang Liu3c3d4f92015-04-13 14:11:38 +08003860 index = alloc_irq_index(devid, nr_irqs);
Jiang Liu7c71d302015-04-13 14:11:33 +08003861 }
3862 if (index < 0) {
3863 pr_warn("Failed to allocate IRTE\n");
Jiang Liu7c71d302015-04-13 14:11:33 +08003864 goto out_free_parent;
3865 }
3866
3867 for (i = 0; i < nr_irqs; i++) {
3868 irq_data = irq_domain_get_irq_data(domain, virq + i);
3869 cfg = irqd_cfg(irq_data);
3870 if (!irq_data || !cfg) {
3871 ret = -EINVAL;
3872 goto out_free_data;
3873 }
3874
Joerg Roedela130e692015-08-13 11:07:25 +02003875 ret = -ENOMEM;
3876 data = kzalloc(sizeof(*data), GFP_KERNEL);
3877 if (!data)
3878 goto out_free_data;
3879
Jiang Liu7c71d302015-04-13 14:11:33 +08003880 irq_data->hwirq = (devid << 16) + i;
3881 irq_data->chip_data = data;
3882 irq_data->chip = &amd_ir_chip;
3883 irq_remapping_prepare_irte(data, cfg, info, devid, index, i);
3884 irq_set_status_flags(virq + i, IRQ_MOVE_PCNTXT);
3885 }
Joerg Roedela130e692015-08-13 11:07:25 +02003886
Jiang Liu7c71d302015-04-13 14:11:33 +08003887 return 0;
3888
3889out_free_data:
3890 for (i--; i >= 0; i--) {
3891 irq_data = irq_domain_get_irq_data(domain, virq + i);
3892 if (irq_data)
3893 kfree(irq_data->chip_data);
3894 }
3895 for (i = 0; i < nr_irqs; i++)
3896 free_irte(devid, index + i);
3897out_free_parent:
3898 irq_domain_free_irqs_common(domain, virq, nr_irqs);
3899 return ret;
3900}
3901
3902static void irq_remapping_free(struct irq_domain *domain, unsigned int virq,
3903 unsigned int nr_irqs)
3904{
3905 struct irq_2_irte *irte_info;
3906 struct irq_data *irq_data;
3907 struct amd_ir_data *data;
3908 int i;
3909
3910 for (i = 0; i < nr_irqs; i++) {
3911 irq_data = irq_domain_get_irq_data(domain, virq + i);
3912 if (irq_data && irq_data->chip_data) {
3913 data = irq_data->chip_data;
3914 irte_info = &data->irq_2_irte;
3915 free_irte(irte_info->devid, irte_info->index);
3916 kfree(data);
3917 }
3918 }
3919 irq_domain_free_irqs_common(domain, virq, nr_irqs);
3920}
3921
3922static void irq_remapping_activate(struct irq_domain *domain,
3923 struct irq_data *irq_data)
3924{
3925 struct amd_ir_data *data = irq_data->chip_data;
3926 struct irq_2_irte *irte_info = &data->irq_2_irte;
3927
3928 modify_irte(irte_info->devid, irte_info->index, data->irte_entry);
3929}
3930
3931static void irq_remapping_deactivate(struct irq_domain *domain,
3932 struct irq_data *irq_data)
3933{
3934 struct amd_ir_data *data = irq_data->chip_data;
3935 struct irq_2_irte *irte_info = &data->irq_2_irte;
3936 union irte entry;
3937
3938 entry.val = 0;
3939 modify_irte(irte_info->devid, irte_info->index, data->irte_entry);
3940}
3941
3942static struct irq_domain_ops amd_ir_domain_ops = {
3943 .alloc = irq_remapping_alloc,
3944 .free = irq_remapping_free,
3945 .activate = irq_remapping_activate,
3946 .deactivate = irq_remapping_deactivate,
3947};
3948
3949static int amd_ir_set_affinity(struct irq_data *data,
3950 const struct cpumask *mask, bool force)
3951{
3952 struct amd_ir_data *ir_data = data->chip_data;
3953 struct irq_2_irte *irte_info = &ir_data->irq_2_irte;
3954 struct irq_cfg *cfg = irqd_cfg(data);
3955 struct irq_data *parent = data->parent_data;
3956 int ret;
3957
3958 ret = parent->chip->irq_set_affinity(parent, mask, force);
3959 if (ret < 0 || ret == IRQ_SET_MASK_OK_DONE)
3960 return ret;
3961
3962 /*
3963 * Atomically updates the IRTE with the new destination, vector
3964 * and flushes the interrupt entry cache.
3965 */
3966 ir_data->irte_entry.fields.vector = cfg->vector;
3967 ir_data->irte_entry.fields.destination = cfg->dest_apicid;
3968 modify_irte(irte_info->devid, irte_info->index, ir_data->irte_entry);
3969
3970 /*
3971 * After this point, all the interrupts will start arriving
3972 * at the new destination. So, time to cleanup the previous
3973 * vector allocation.
3974 */
Jiang Liuc6c20022015-04-14 10:30:02 +08003975 send_cleanup_vector(cfg);
Jiang Liu7c71d302015-04-13 14:11:33 +08003976
3977 return IRQ_SET_MASK_OK_DONE;
3978}
3979
3980static void ir_compose_msi_msg(struct irq_data *irq_data, struct msi_msg *msg)
3981{
3982 struct amd_ir_data *ir_data = irq_data->chip_data;
3983
3984 *msg = ir_data->msi_entry;
3985}
3986
3987static struct irq_chip amd_ir_chip = {
3988 .irq_ack = ir_ack_apic_edge,
3989 .irq_set_affinity = amd_ir_set_affinity,
3990 .irq_compose_msi_msg = ir_compose_msi_msg,
3991};
3992
3993int amd_iommu_create_irq_domain(struct amd_iommu *iommu)
3994{
3995 iommu->ir_domain = irq_domain_add_tree(NULL, &amd_ir_domain_ops, iommu);
3996 if (!iommu->ir_domain)
3997 return -ENOMEM;
3998
3999 iommu->ir_domain->parent = arch_get_ir_parent_domain();
4000 iommu->msi_domain = arch_create_msi_irq_domain(iommu->ir_domain);
4001
4002 return 0;
4003}
Joerg Roedel2b324502012-06-21 16:29:10 +02004004#endif