blob: 2a22515f5a8bf1371a2925846347e6c4a9950013 [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 Roedel007b74b2015-12-21 12:53:54 +0100117/*
118 * For dynamic growth the aperture size is split into ranges of 128MB of
119 * DMA address space each. This struct represents one such range.
120 */
121struct aperture_range {
122
Joerg Roedel08c5fb92015-12-21 13:04:49 +0100123 spinlock_t bitmap_lock;
124
Joerg Roedel007b74b2015-12-21 12:53:54 +0100125 /* address allocation bitmap */
126 unsigned long *bitmap;
Joerg Roedelae62d492015-12-21 16:28:45 +0100127 unsigned long offset;
Joerg Roedel007b74b2015-12-21 12:53:54 +0100128
129 /*
130 * Array of PTE pages for the aperture. In this array we save all the
131 * leaf pages of the domain page table used for the aperture. This way
132 * we don't need to walk the page table to find a specific PTE. We can
133 * just calculate its address in constant time.
134 */
135 u64 *pte_pages[64];
Joerg Roedel007b74b2015-12-21 12:53:54 +0100136};
137
138/*
139 * Data container for a dma_ops specific protection domain
140 */
141struct dma_ops_domain {
142 /* generic protection domain information */
143 struct protection_domain domain;
144
145 /* size of the aperture for the mappings */
146 unsigned long aperture_size;
147
148 /* address we start to search for free addresses */
149 unsigned long next_address;
150
151 /* address space relevant data */
152 struct aperture_range *aperture[APERTURE_MAX_RANGES];
153
154 /* This will be set to true when TLB needs to be flushed */
155 bool need_flush;
156};
157
Joerg Roedel15898bb2009-11-24 15:39:42 +0100158/****************************************************************************
159 *
160 * Helper functions
161 *
162 ****************************************************************************/
163
Joerg Roedel3f4b87b2015-03-26 13:43:07 +0100164static struct protection_domain *to_pdomain(struct iommu_domain *dom)
165{
166 return container_of(dom, struct protection_domain, domain);
167}
168
Joerg Roedelf62dda62011-06-09 12:55:35 +0200169static struct iommu_dev_data *alloc_dev_data(u16 devid)
Joerg Roedel8fa5f802011-06-09 12:24:45 +0200170{
171 struct iommu_dev_data *dev_data;
172 unsigned long flags;
173
174 dev_data = kzalloc(sizeof(*dev_data), GFP_KERNEL);
175 if (!dev_data)
176 return NULL;
177
Joerg Roedelf62dda62011-06-09 12:55:35 +0200178 dev_data->devid = devid;
Joerg Roedel8fa5f802011-06-09 12:24:45 +0200179
180 spin_lock_irqsave(&dev_data_list_lock, flags);
181 list_add_tail(&dev_data->dev_data_list, &dev_data_list);
182 spin_unlock_irqrestore(&dev_data_list_lock, flags);
183
184 return dev_data;
185}
186
Joerg Roedel3b03bb72011-06-09 18:53:25 +0200187static struct iommu_dev_data *search_dev_data(u16 devid)
188{
189 struct iommu_dev_data *dev_data;
190 unsigned long flags;
191
192 spin_lock_irqsave(&dev_data_list_lock, flags);
193 list_for_each_entry(dev_data, &dev_data_list, dev_data_list) {
194 if (dev_data->devid == devid)
195 goto out_unlock;
196 }
197
198 dev_data = NULL;
199
200out_unlock:
201 spin_unlock_irqrestore(&dev_data_list_lock, flags);
202
203 return dev_data;
204}
205
206static struct iommu_dev_data *find_dev_data(u16 devid)
207{
208 struct iommu_dev_data *dev_data;
209
210 dev_data = search_dev_data(devid);
211
212 if (dev_data == NULL)
213 dev_data = alloc_dev_data(devid);
214
215 return dev_data;
216}
217
Joerg Roedel15898bb2009-11-24 15:39:42 +0100218static inline u16 get_device_id(struct device *dev)
219{
220 struct pci_dev *pdev = to_pci_dev(dev);
221
Shuah Khan6f2729b2013-02-27 17:07:30 -0700222 return PCI_DEVID(pdev->bus->number, pdev->devfn);
Joerg Roedel15898bb2009-11-24 15:39:42 +0100223}
224
Joerg Roedel657cbb62009-11-23 15:26:46 +0100225static struct iommu_dev_data *get_dev_data(struct device *dev)
226{
227 return dev->archdata.iommu;
228}
229
Joerg Roedel5abcdba2011-12-01 15:49:45 +0100230static bool pci_iommuv2_capable(struct pci_dev *pdev)
231{
232 static const int caps[] = {
233 PCI_EXT_CAP_ID_ATS,
Joerg Roedel46277b72011-12-07 14:34:02 +0100234 PCI_EXT_CAP_ID_PRI,
235 PCI_EXT_CAP_ID_PASID,
Joerg Roedel5abcdba2011-12-01 15:49:45 +0100236 };
237 int i, pos;
238
239 for (i = 0; i < 3; ++i) {
240 pos = pci_find_ext_capability(pdev, caps[i]);
241 if (pos == 0)
242 return false;
243 }
244
245 return true;
246}
247
Joerg Roedel6a113dd2011-12-01 12:04:58 +0100248static bool pdev_pri_erratum(struct pci_dev *pdev, u32 erratum)
249{
250 struct iommu_dev_data *dev_data;
251
252 dev_data = get_dev_data(&pdev->dev);
253
254 return dev_data->errata & (1 << erratum) ? true : false;
255}
256
Joerg Roedel71c70982009-11-24 16:43:06 +0100257/*
Joerg Roedel0bb6e242015-05-28 18:41:40 +0200258 * This function actually applies the mapping to the page table of the
259 * dma_ops domain.
Joerg Roedel71c70982009-11-24 16:43:06 +0100260 */
Joerg Roedel0bb6e242015-05-28 18:41:40 +0200261static void alloc_unity_mapping(struct dma_ops_domain *dma_dom,
262 struct unity_map_entry *e)
Joerg Roedel71c70982009-11-24 16:43:06 +0100263{
Joerg Roedel0bb6e242015-05-28 18:41:40 +0200264 u64 addr;
Joerg Roedel71c70982009-11-24 16:43:06 +0100265
Joerg Roedel0bb6e242015-05-28 18:41:40 +0200266 for (addr = e->address_start; addr < e->address_end;
267 addr += PAGE_SIZE) {
268 if (addr < dma_dom->aperture_size)
269 __set_bit(addr >> PAGE_SHIFT,
270 dma_dom->aperture[0]->bitmap);
Joerg Roedel71c70982009-11-24 16:43:06 +0100271 }
Joerg Roedel0bb6e242015-05-28 18:41:40 +0200272}
Joerg Roedel71c70982009-11-24 16:43:06 +0100273
Joerg Roedel0bb6e242015-05-28 18:41:40 +0200274/*
275 * Inits the unity mappings required for a specific device
276 */
277static void init_unity_mappings_for_device(struct device *dev,
278 struct dma_ops_domain *dma_dom)
279{
280 struct unity_map_entry *e;
281 u16 devid;
Joerg Roedel71c70982009-11-24 16:43:06 +0100282
Joerg Roedel0bb6e242015-05-28 18:41:40 +0200283 devid = get_device_id(dev);
284
285 list_for_each_entry(e, &amd_iommu_unity_map, list) {
286 if (!(devid >= e->devid_start && devid <= e->devid_end))
287 continue;
288 alloc_unity_mapping(dma_dom, e);
289 }
Joerg Roedel71c70982009-11-24 16:43:06 +0100290}
291
Joerg Roedel98fc5a62009-11-24 17:19:23 +0100292/*
293 * This function checks if the driver got a valid device from the caller to
294 * avoid dereferencing invalid pointers.
295 */
296static bool check_device(struct device *dev)
297{
298 u16 devid;
299
300 if (!dev || !dev->dma_mask)
301 return false;
302
Yijing Wangb82a2272013-12-05 19:42:41 +0800303 /* No PCI device */
304 if (!dev_is_pci(dev))
Joerg Roedel98fc5a62009-11-24 17:19:23 +0100305 return false;
306
307 devid = get_device_id(dev);
308
309 /* Out of our scope? */
310 if (devid > amd_iommu_last_bdf)
311 return false;
312
313 if (amd_iommu_rlookup_table[devid] == NULL)
314 return false;
315
316 return true;
317}
318
Alex Williamson25b11ce2014-09-19 10:03:13 -0600319static void init_iommu_group(struct device *dev)
Alex Williamson2851db22012-10-08 22:49:41 -0600320{
Joerg Roedel0bb6e242015-05-28 18:41:40 +0200321 struct dma_ops_domain *dma_domain;
322 struct iommu_domain *domain;
Alex Williamson2851db22012-10-08 22:49:41 -0600323 struct iommu_group *group;
Alex Williamson2851db22012-10-08 22:49:41 -0600324
Alex Williamson65d53522014-07-03 09:51:30 -0600325 group = iommu_group_get_for_dev(dev);
Joerg Roedel0bb6e242015-05-28 18:41:40 +0200326 if (IS_ERR(group))
327 return;
328
329 domain = iommu_group_default_domain(group);
330 if (!domain)
331 goto out;
332
333 dma_domain = to_pdomain(domain)->priv;
334
335 init_unity_mappings_for_device(dev, dma_domain);
336out:
337 iommu_group_put(group);
Alex Williamsoneb9c9522012-10-08 22:49:35 -0600338}
339
340static int iommu_init_device(struct device *dev)
341{
342 struct pci_dev *pdev = to_pci_dev(dev);
343 struct iommu_dev_data *dev_data;
Alex Williamsoneb9c9522012-10-08 22:49:35 -0600344
345 if (dev->archdata.iommu)
346 return 0;
347
348 dev_data = find_dev_data(get_device_id(dev));
349 if (!dev_data)
350 return -ENOMEM;
351
Joerg Roedel5abcdba2011-12-01 15:49:45 +0100352 if (pci_iommuv2_capable(pdev)) {
353 struct amd_iommu *iommu;
354
355 iommu = amd_iommu_rlookup_table[dev_data->devid];
356 dev_data->iommu_v2 = iommu->is_iommu_v2;
357 }
358
Joerg Roedel657cbb62009-11-23 15:26:46 +0100359 dev->archdata.iommu = dev_data;
360
Alex Williamson066f2e92014-06-12 16:12:37 -0600361 iommu_device_link(amd_iommu_rlookup_table[dev_data->devid]->iommu_dev,
362 dev);
363
Joerg Roedel657cbb62009-11-23 15:26:46 +0100364 return 0;
365}
366
Joerg Roedel26018872011-06-06 16:50:14 +0200367static void iommu_ignore_device(struct device *dev)
368{
369 u16 devid, alias;
370
371 devid = get_device_id(dev);
372 alias = amd_iommu_alias_table[devid];
373
374 memset(&amd_iommu_dev_table[devid], 0, sizeof(struct dev_table_entry));
375 memset(&amd_iommu_dev_table[alias], 0, sizeof(struct dev_table_entry));
376
377 amd_iommu_rlookup_table[devid] = NULL;
378 amd_iommu_rlookup_table[alias] = NULL;
379}
380
Joerg Roedel657cbb62009-11-23 15:26:46 +0100381static void iommu_uninit_device(struct device *dev)
382{
Alex Williamsonc1931092014-07-03 09:51:24 -0600383 struct iommu_dev_data *dev_data = search_dev_data(get_device_id(dev));
384
385 if (!dev_data)
386 return;
387
Alex Williamson066f2e92014-06-12 16:12:37 -0600388 iommu_device_unlink(amd_iommu_rlookup_table[dev_data->devid]->iommu_dev,
389 dev);
390
Alex Williamson9dcd6132012-05-30 14:19:07 -0600391 iommu_group_remove_device(dev);
392
Joerg Roedelaafd8ba2015-05-28 18:41:39 +0200393 /* Remove dma-ops */
394 dev->archdata.dma_ops = NULL;
395
Joerg Roedel8fa5f802011-06-09 12:24:45 +0200396 /*
Alex Williamsonc1931092014-07-03 09:51:24 -0600397 * We keep dev_data around for unplugged devices and reuse it when the
398 * device is re-plugged - not doing so would introduce a ton of races.
Joerg Roedel8fa5f802011-06-09 12:24:45 +0200399 */
Joerg Roedel657cbb62009-11-23 15:26:46 +0100400}
Joerg Roedelb7cc9552009-12-10 11:03:39 +0100401
Joerg Roedel7f265082008-12-12 13:50:21 +0100402#ifdef CONFIG_AMD_IOMMU_STATS
403
404/*
405 * Initialization code for statistics collection
406 */
407
Joerg Roedelda49f6d2008-12-12 14:59:58 +0100408DECLARE_STATS_COUNTER(compl_wait);
Joerg Roedel0f2a86f2008-12-12 15:05:16 +0100409DECLARE_STATS_COUNTER(cnt_map_single);
Joerg Roedel146a6912008-12-12 15:07:12 +0100410DECLARE_STATS_COUNTER(cnt_unmap_single);
Joerg Roedeld03f0672008-12-12 15:09:48 +0100411DECLARE_STATS_COUNTER(cnt_map_sg);
Joerg Roedel55877a62008-12-12 15:12:14 +0100412DECLARE_STATS_COUNTER(cnt_unmap_sg);
Joerg Roedelc8f0fb32008-12-12 15:14:21 +0100413DECLARE_STATS_COUNTER(cnt_alloc_coherent);
Joerg Roedel5d31ee72008-12-12 15:16:38 +0100414DECLARE_STATS_COUNTER(cnt_free_coherent);
Joerg Roedelc1858972008-12-12 15:42:39 +0100415DECLARE_STATS_COUNTER(cross_page);
Joerg Roedelf57d98a2008-12-12 15:46:29 +0100416DECLARE_STATS_COUNTER(domain_flush_single);
Joerg Roedel18811f52008-12-12 15:48:28 +0100417DECLARE_STATS_COUNTER(domain_flush_all);
Joerg Roedel5774f7c2008-12-12 15:57:30 +0100418DECLARE_STATS_COUNTER(alloced_io_mem);
Joerg Roedel8ecaf8f2008-12-12 16:13:04 +0100419DECLARE_STATS_COUNTER(total_map_requests);
Joerg Roedel399be2f2011-12-01 16:53:47 +0100420DECLARE_STATS_COUNTER(complete_ppr);
421DECLARE_STATS_COUNTER(invalidate_iotlb);
422DECLARE_STATS_COUNTER(invalidate_iotlb_all);
423DECLARE_STATS_COUNTER(pri_requests);
424
Joerg Roedel7f265082008-12-12 13:50:21 +0100425static struct dentry *stats_dir;
Joerg Roedel7f265082008-12-12 13:50:21 +0100426static struct dentry *de_fflush;
427
428static void amd_iommu_stats_add(struct __iommu_counter *cnt)
429{
430 if (stats_dir == NULL)
431 return;
432
433 cnt->dent = debugfs_create_u64(cnt->name, 0444, stats_dir,
434 &cnt->value);
435}
436
437static void amd_iommu_stats_init(void)
438{
439 stats_dir = debugfs_create_dir("amd-iommu", NULL);
440 if (stats_dir == NULL)
441 return;
442
Joerg Roedel7f265082008-12-12 13:50:21 +0100443 de_fflush = debugfs_create_bool("fullflush", 0444, stats_dir,
Dan Carpenter3775d482012-06-27 12:09:18 +0300444 &amd_iommu_unmap_flush);
Joerg Roedelda49f6d2008-12-12 14:59:58 +0100445
446 amd_iommu_stats_add(&compl_wait);
Joerg Roedel0f2a86f2008-12-12 15:05:16 +0100447 amd_iommu_stats_add(&cnt_map_single);
Joerg Roedel146a6912008-12-12 15:07:12 +0100448 amd_iommu_stats_add(&cnt_unmap_single);
Joerg Roedeld03f0672008-12-12 15:09:48 +0100449 amd_iommu_stats_add(&cnt_map_sg);
Joerg Roedel55877a62008-12-12 15:12:14 +0100450 amd_iommu_stats_add(&cnt_unmap_sg);
Joerg Roedelc8f0fb32008-12-12 15:14:21 +0100451 amd_iommu_stats_add(&cnt_alloc_coherent);
Joerg Roedel5d31ee72008-12-12 15:16:38 +0100452 amd_iommu_stats_add(&cnt_free_coherent);
Joerg Roedelc1858972008-12-12 15:42:39 +0100453 amd_iommu_stats_add(&cross_page);
Joerg Roedelf57d98a2008-12-12 15:46:29 +0100454 amd_iommu_stats_add(&domain_flush_single);
Joerg Roedel18811f52008-12-12 15:48:28 +0100455 amd_iommu_stats_add(&domain_flush_all);
Joerg Roedel5774f7c2008-12-12 15:57:30 +0100456 amd_iommu_stats_add(&alloced_io_mem);
Joerg Roedel8ecaf8f2008-12-12 16:13:04 +0100457 amd_iommu_stats_add(&total_map_requests);
Joerg Roedel399be2f2011-12-01 16:53:47 +0100458 amd_iommu_stats_add(&complete_ppr);
459 amd_iommu_stats_add(&invalidate_iotlb);
460 amd_iommu_stats_add(&invalidate_iotlb_all);
461 amd_iommu_stats_add(&pri_requests);
Joerg Roedel7f265082008-12-12 13:50:21 +0100462}
463
464#endif
465
Joerg Roedel431b2a22008-07-11 17:14:22 +0200466/****************************************************************************
467 *
Joerg Roedela80dc3e2008-09-11 16:51:41 +0200468 * Interrupt handling functions
469 *
470 ****************************************************************************/
471
Joerg Roedele3e59872009-09-03 14:02:10 +0200472static void dump_dte_entry(u16 devid)
473{
474 int i;
475
Joerg Roedelee6c2862011-11-09 12:06:03 +0100476 for (i = 0; i < 4; ++i)
477 pr_err("AMD-Vi: DTE[%d]: %016llx\n", i,
Joerg Roedele3e59872009-09-03 14:02:10 +0200478 amd_iommu_dev_table[devid].data[i]);
479}
480
Joerg Roedel945b4ac2009-09-03 14:25:02 +0200481static void dump_command(unsigned long phys_addr)
482{
483 struct iommu_cmd *cmd = phys_to_virt(phys_addr);
484 int i;
485
486 for (i = 0; i < 4; ++i)
487 pr_err("AMD-Vi: CMD[%d]: %08x\n", i, cmd->data[i]);
488}
489
Joerg Roedela345b232009-09-03 15:01:43 +0200490static void iommu_print_event(struct amd_iommu *iommu, void *__evt)
Joerg Roedel90008ee2008-09-09 16:41:05 +0200491{
Joerg Roedel3d06fca2012-04-12 14:12:00 +0200492 int type, devid, domid, flags;
493 volatile u32 *event = __evt;
494 int count = 0;
495 u64 address;
496
497retry:
498 type = (event[1] >> EVENT_TYPE_SHIFT) & EVENT_TYPE_MASK;
499 devid = (event[0] >> EVENT_DEVID_SHIFT) & EVENT_DEVID_MASK;
500 domid = (event[1] >> EVENT_DOMID_SHIFT) & EVENT_DOMID_MASK;
501 flags = (event[1] >> EVENT_FLAGS_SHIFT) & EVENT_FLAGS_MASK;
502 address = (u64)(((u64)event[3]) << 32) | event[2];
503
504 if (type == 0) {
505 /* Did we hit the erratum? */
506 if (++count == LOOP_TIMEOUT) {
507 pr_err("AMD-Vi: No event written to event log\n");
508 return;
509 }
510 udelay(1);
511 goto retry;
512 }
Joerg Roedel90008ee2008-09-09 16:41:05 +0200513
Joerg Roedel4c6f40d2009-09-01 16:43:58 +0200514 printk(KERN_ERR "AMD-Vi: Event logged [");
Joerg Roedel90008ee2008-09-09 16:41:05 +0200515
516 switch (type) {
517 case EVENT_TYPE_ILL_DEV:
518 printk("ILLEGAL_DEV_TABLE_ENTRY device=%02x:%02x.%x "
519 "address=0x%016llx flags=0x%04x]\n",
Shuah Khanc5081cd2013-02-27 17:07:19 -0700520 PCI_BUS_NUM(devid), PCI_SLOT(devid), PCI_FUNC(devid),
Joerg Roedel90008ee2008-09-09 16:41:05 +0200521 address, flags);
Joerg Roedele3e59872009-09-03 14:02:10 +0200522 dump_dte_entry(devid);
Joerg Roedel90008ee2008-09-09 16:41:05 +0200523 break;
524 case EVENT_TYPE_IO_FAULT:
525 printk("IO_PAGE_FAULT device=%02x:%02x.%x "
526 "domain=0x%04x address=0x%016llx flags=0x%04x]\n",
Shuah Khanc5081cd2013-02-27 17:07:19 -0700527 PCI_BUS_NUM(devid), PCI_SLOT(devid), PCI_FUNC(devid),
Joerg Roedel90008ee2008-09-09 16:41:05 +0200528 domid, address, flags);
529 break;
530 case EVENT_TYPE_DEV_TAB_ERR:
531 printk("DEV_TAB_HARDWARE_ERROR device=%02x:%02x.%x "
532 "address=0x%016llx flags=0x%04x]\n",
Shuah Khanc5081cd2013-02-27 17:07:19 -0700533 PCI_BUS_NUM(devid), PCI_SLOT(devid), PCI_FUNC(devid),
Joerg Roedel90008ee2008-09-09 16:41:05 +0200534 address, flags);
535 break;
536 case EVENT_TYPE_PAGE_TAB_ERR:
537 printk("PAGE_TAB_HARDWARE_ERROR device=%02x:%02x.%x "
538 "domain=0x%04x address=0x%016llx flags=0x%04x]\n",
Shuah Khanc5081cd2013-02-27 17:07:19 -0700539 PCI_BUS_NUM(devid), PCI_SLOT(devid), PCI_FUNC(devid),
Joerg Roedel90008ee2008-09-09 16:41:05 +0200540 domid, address, flags);
541 break;
542 case EVENT_TYPE_ILL_CMD:
543 printk("ILLEGAL_COMMAND_ERROR address=0x%016llx]\n", address);
Joerg Roedel945b4ac2009-09-03 14:25:02 +0200544 dump_command(address);
Joerg Roedel90008ee2008-09-09 16:41:05 +0200545 break;
546 case EVENT_TYPE_CMD_HARD_ERR:
547 printk("COMMAND_HARDWARE_ERROR address=0x%016llx "
548 "flags=0x%04x]\n", address, flags);
549 break;
550 case EVENT_TYPE_IOTLB_INV_TO:
551 printk("IOTLB_INV_TIMEOUT device=%02x:%02x.%x "
552 "address=0x%016llx]\n",
Shuah Khanc5081cd2013-02-27 17:07:19 -0700553 PCI_BUS_NUM(devid), PCI_SLOT(devid), PCI_FUNC(devid),
Joerg Roedel90008ee2008-09-09 16:41:05 +0200554 address);
555 break;
556 case EVENT_TYPE_INV_DEV_REQ:
557 printk("INVALID_DEVICE_REQUEST device=%02x:%02x.%x "
558 "address=0x%016llx flags=0x%04x]\n",
Shuah Khanc5081cd2013-02-27 17:07:19 -0700559 PCI_BUS_NUM(devid), PCI_SLOT(devid), PCI_FUNC(devid),
Joerg Roedel90008ee2008-09-09 16:41:05 +0200560 address, flags);
561 break;
562 default:
563 printk(KERN_ERR "UNKNOWN type=0x%02x]\n", type);
564 }
Joerg Roedel3d06fca2012-04-12 14:12:00 +0200565
566 memset(__evt, 0, 4 * sizeof(u32));
Joerg Roedel90008ee2008-09-09 16:41:05 +0200567}
568
569static void iommu_poll_events(struct amd_iommu *iommu)
570{
571 u32 head, tail;
Joerg Roedel90008ee2008-09-09 16:41:05 +0200572
573 head = readl(iommu->mmio_base + MMIO_EVT_HEAD_OFFSET);
574 tail = readl(iommu->mmio_base + MMIO_EVT_TAIL_OFFSET);
575
576 while (head != tail) {
Joerg Roedela345b232009-09-03 15:01:43 +0200577 iommu_print_event(iommu, iommu->evt_buf + head);
Joerg Roedeldeba4bc2015-10-20 17:33:41 +0200578 head = (head + EVENT_ENTRY_SIZE) % EVT_BUFFER_SIZE;
Joerg Roedel90008ee2008-09-09 16:41:05 +0200579 }
580
581 writel(head, iommu->mmio_base + MMIO_EVT_HEAD_OFFSET);
Joerg Roedel90008ee2008-09-09 16:41:05 +0200582}
583
Joerg Roedeleee53532012-06-01 15:20:23 +0200584static void iommu_handle_ppr_entry(struct amd_iommu *iommu, u64 *raw)
Joerg Roedel72e1dcc2011-11-10 19:13:51 +0100585{
586 struct amd_iommu_fault fault;
Joerg Roedel72e1dcc2011-11-10 19:13:51 +0100587
Joerg Roedel399be2f2011-12-01 16:53:47 +0100588 INC_STATS_COUNTER(pri_requests);
589
Joerg Roedel72e1dcc2011-11-10 19:13:51 +0100590 if (PPR_REQ_TYPE(raw[0]) != PPR_REQ_FAULT) {
591 pr_err_ratelimited("AMD-Vi: Unknown PPR request received\n");
592 return;
593 }
594
595 fault.address = raw[1];
596 fault.pasid = PPR_PASID(raw[0]);
597 fault.device_id = PPR_DEVID(raw[0]);
598 fault.tag = PPR_TAG(raw[0]);
599 fault.flags = PPR_FLAGS(raw[0]);
600
Joerg Roedel72e1dcc2011-11-10 19:13:51 +0100601 atomic_notifier_call_chain(&ppr_notifier, 0, &fault);
602}
603
604static void iommu_poll_ppr_log(struct amd_iommu *iommu)
605{
Joerg Roedel72e1dcc2011-11-10 19:13:51 +0100606 u32 head, tail;
607
608 if (iommu->ppr_log == NULL)
609 return;
610
Joerg Roedel72e1dcc2011-11-10 19:13:51 +0100611 head = readl(iommu->mmio_base + MMIO_PPR_HEAD_OFFSET);
612 tail = readl(iommu->mmio_base + MMIO_PPR_TAIL_OFFSET);
613
614 while (head != tail) {
Joerg Roedeleee53532012-06-01 15:20:23 +0200615 volatile u64 *raw;
616 u64 entry[2];
617 int i;
Joerg Roedel72e1dcc2011-11-10 19:13:51 +0100618
Joerg Roedeleee53532012-06-01 15:20:23 +0200619 raw = (u64 *)(iommu->ppr_log + head);
Joerg Roedel72e1dcc2011-11-10 19:13:51 +0100620
Joerg Roedeleee53532012-06-01 15:20:23 +0200621 /*
622 * Hardware bug: Interrupt may arrive before the entry is
623 * written to memory. If this happens we need to wait for the
624 * entry to arrive.
625 */
626 for (i = 0; i < LOOP_TIMEOUT; ++i) {
627 if (PPR_REQ_TYPE(raw[0]) != 0)
628 break;
629 udelay(1);
630 }
631
632 /* Avoid memcpy function-call overhead */
633 entry[0] = raw[0];
634 entry[1] = raw[1];
635
636 /*
637 * To detect the hardware bug we need to clear the entry
638 * back to zero.
639 */
640 raw[0] = raw[1] = 0UL;
641
642 /* Update head pointer of hardware ring-buffer */
Joerg Roedel72e1dcc2011-11-10 19:13:51 +0100643 head = (head + PPR_ENTRY_SIZE) % PPR_LOG_SIZE;
644 writel(head, iommu->mmio_base + MMIO_PPR_HEAD_OFFSET);
Joerg Roedeleee53532012-06-01 15:20:23 +0200645
Joerg Roedeleee53532012-06-01 15:20:23 +0200646 /* Handle PPR entry */
647 iommu_handle_ppr_entry(iommu, entry);
648
Joerg Roedeleee53532012-06-01 15:20:23 +0200649 /* Refresh ring-buffer information */
650 head = readl(iommu->mmio_base + MMIO_PPR_HEAD_OFFSET);
Joerg Roedel72e1dcc2011-11-10 19:13:51 +0100651 tail = readl(iommu->mmio_base + MMIO_PPR_TAIL_OFFSET);
652 }
Joerg Roedel72e1dcc2011-11-10 19:13:51 +0100653}
654
Joerg Roedel72fe00f2011-05-10 10:50:42 +0200655irqreturn_t amd_iommu_int_thread(int irq, void *data)
Joerg Roedela80dc3e2008-09-11 16:51:41 +0200656{
Suravee Suthikulpanit3f398bc2013-04-22 16:32:34 -0500657 struct amd_iommu *iommu = (struct amd_iommu *) data;
658 u32 status = readl(iommu->mmio_base + MMIO_STATUS_OFFSET);
Joerg Roedel90008ee2008-09-09 16:41:05 +0200659
Suravee Suthikulpanit3f398bc2013-04-22 16:32:34 -0500660 while (status & (MMIO_STATUS_EVT_INT_MASK | MMIO_STATUS_PPR_INT_MASK)) {
661 /* Enable EVT and PPR interrupts again */
662 writel((MMIO_STATUS_EVT_INT_MASK | MMIO_STATUS_PPR_INT_MASK),
663 iommu->mmio_base + MMIO_STATUS_OFFSET);
664
665 if (status & MMIO_STATUS_EVT_INT_MASK) {
666 pr_devel("AMD-Vi: Processing IOMMU Event Log\n");
667 iommu_poll_events(iommu);
668 }
669
670 if (status & MMIO_STATUS_PPR_INT_MASK) {
671 pr_devel("AMD-Vi: Processing IOMMU PPR Log\n");
672 iommu_poll_ppr_log(iommu);
673 }
674
675 /*
676 * Hardware bug: ERBT1312
677 * When re-enabling interrupt (by writing 1
678 * to clear the bit), the hardware might also try to set
679 * the interrupt bit in the event status register.
680 * In this scenario, the bit will be set, and disable
681 * subsequent interrupts.
682 *
683 * Workaround: The IOMMU driver should read back the
684 * status register and check if the interrupt bits are cleared.
685 * If not, driver will need to go through the interrupt handler
686 * again and re-clear the bits
687 */
688 status = readl(iommu->mmio_base + MMIO_STATUS_OFFSET);
Joerg Roedel72e1dcc2011-11-10 19:13:51 +0100689 }
Joerg Roedel90008ee2008-09-09 16:41:05 +0200690 return IRQ_HANDLED;
Joerg Roedela80dc3e2008-09-11 16:51:41 +0200691}
692
Joerg Roedel72fe00f2011-05-10 10:50:42 +0200693irqreturn_t amd_iommu_int_handler(int irq, void *data)
694{
695 return IRQ_WAKE_THREAD;
696}
697
Joerg Roedela80dc3e2008-09-11 16:51:41 +0200698/****************************************************************************
699 *
Joerg Roedel431b2a22008-07-11 17:14:22 +0200700 * IOMMU command queuing functions
701 *
702 ****************************************************************************/
703
Joerg Roedelac0ea6e2011-04-06 18:38:20 +0200704static int wait_on_sem(volatile u64 *sem)
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200705{
Joerg Roedelac0ea6e2011-04-06 18:38:20 +0200706 int i = 0;
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200707
Joerg Roedelac0ea6e2011-04-06 18:38:20 +0200708 while (*sem == 0 && i < LOOP_TIMEOUT) {
709 udelay(1);
710 i += 1;
711 }
712
713 if (i == LOOP_TIMEOUT) {
714 pr_alert("AMD-Vi: Completion-Wait loop timed out\n");
715 return -EIO;
716 }
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200717
718 return 0;
719}
720
Joerg Roedelac0ea6e2011-04-06 18:38:20 +0200721static void copy_cmd_to_buffer(struct amd_iommu *iommu,
722 struct iommu_cmd *cmd,
723 u32 tail)
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200724{
Joerg Roedelac0ea6e2011-04-06 18:38:20 +0200725 u8 *target;
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200726
Joerg Roedelac0ea6e2011-04-06 18:38:20 +0200727 target = iommu->cmd_buf + tail;
Joerg Roedeldeba4bc2015-10-20 17:33:41 +0200728 tail = (tail + sizeof(*cmd)) % CMD_BUFFER_SIZE;
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200729
Joerg Roedelac0ea6e2011-04-06 18:38:20 +0200730 /* Copy command to buffer */
731 memcpy(target, cmd, sizeof(*cmd));
732
733 /* Tell the IOMMU about it */
734 writel(tail, iommu->mmio_base + MMIO_CMD_TAIL_OFFSET);
735}
736
Joerg Roedel815b33f2011-04-06 17:26:49 +0200737static void build_completion_wait(struct iommu_cmd *cmd, u64 address)
Joerg Roedelded46732011-04-06 10:53:48 +0200738{
Joerg Roedel815b33f2011-04-06 17:26:49 +0200739 WARN_ON(address & 0x7ULL);
740
Joerg Roedelded46732011-04-06 10:53:48 +0200741 memset(cmd, 0, sizeof(*cmd));
Joerg Roedel815b33f2011-04-06 17:26:49 +0200742 cmd->data[0] = lower_32_bits(__pa(address)) | CMD_COMPL_WAIT_STORE_MASK;
743 cmd->data[1] = upper_32_bits(__pa(address));
744 cmd->data[2] = 1;
Joerg Roedelded46732011-04-06 10:53:48 +0200745 CMD_SET_TYPE(cmd, CMD_COMPL_WAIT);
746}
747
Joerg Roedel94fe79e2011-04-06 11:07:21 +0200748static void build_inv_dte(struct iommu_cmd *cmd, u16 devid)
749{
750 memset(cmd, 0, sizeof(*cmd));
751 cmd->data[0] = devid;
752 CMD_SET_TYPE(cmd, CMD_INV_DEV_ENTRY);
753}
754
Joerg Roedel11b64022011-04-06 11:49:28 +0200755static void build_inv_iommu_pages(struct iommu_cmd *cmd, u64 address,
756 size_t size, u16 domid, int pde)
757{
758 u64 pages;
Quentin Lambertae0cbbb2015-02-04 11:40:07 +0100759 bool s;
Joerg Roedel11b64022011-04-06 11:49:28 +0200760
761 pages = iommu_num_pages(address, size, PAGE_SIZE);
Quentin Lambertae0cbbb2015-02-04 11:40:07 +0100762 s = false;
Joerg Roedel11b64022011-04-06 11:49:28 +0200763
764 if (pages > 1) {
765 /*
766 * If we have to flush more than one page, flush all
767 * TLB entries for this domain
768 */
769 address = CMD_INV_IOMMU_ALL_PAGES_ADDRESS;
Quentin Lambertae0cbbb2015-02-04 11:40:07 +0100770 s = true;
Joerg Roedel11b64022011-04-06 11:49:28 +0200771 }
772
773 address &= PAGE_MASK;
774
775 memset(cmd, 0, sizeof(*cmd));
776 cmd->data[1] |= domid;
777 cmd->data[2] = lower_32_bits(address);
778 cmd->data[3] = upper_32_bits(address);
779 CMD_SET_TYPE(cmd, CMD_INV_IOMMU_PAGES);
780 if (s) /* size bit - we flush more than one 4kb page */
781 cmd->data[2] |= CMD_INV_IOMMU_PAGES_SIZE_MASK;
Frank Arnolddf805ab2012-08-27 19:21:04 +0200782 if (pde) /* PDE bit - we want to flush everything, not only the PTEs */
Joerg Roedel11b64022011-04-06 11:49:28 +0200783 cmd->data[2] |= CMD_INV_IOMMU_PAGES_PDE_MASK;
784}
785
Joerg Roedelcb41ed82011-04-05 11:00:53 +0200786static void build_inv_iotlb_pages(struct iommu_cmd *cmd, u16 devid, int qdep,
787 u64 address, size_t size)
788{
789 u64 pages;
Quentin Lambertae0cbbb2015-02-04 11:40:07 +0100790 bool s;
Joerg Roedelcb41ed82011-04-05 11:00:53 +0200791
792 pages = iommu_num_pages(address, size, PAGE_SIZE);
Quentin Lambertae0cbbb2015-02-04 11:40:07 +0100793 s = false;
Joerg Roedelcb41ed82011-04-05 11:00:53 +0200794
795 if (pages > 1) {
796 /*
797 * If we have to flush more than one page, flush all
798 * TLB entries for this domain
799 */
800 address = CMD_INV_IOMMU_ALL_PAGES_ADDRESS;
Quentin Lambertae0cbbb2015-02-04 11:40:07 +0100801 s = true;
Joerg Roedelcb41ed82011-04-05 11:00:53 +0200802 }
803
804 address &= PAGE_MASK;
805
806 memset(cmd, 0, sizeof(*cmd));
807 cmd->data[0] = devid;
808 cmd->data[0] |= (qdep & 0xff) << 24;
809 cmd->data[1] = devid;
810 cmd->data[2] = lower_32_bits(address);
811 cmd->data[3] = upper_32_bits(address);
812 CMD_SET_TYPE(cmd, CMD_INV_IOTLB_PAGES);
813 if (s)
814 cmd->data[2] |= CMD_INV_IOMMU_PAGES_SIZE_MASK;
815}
816
Joerg Roedel22e266c2011-11-21 15:59:08 +0100817static void build_inv_iommu_pasid(struct iommu_cmd *cmd, u16 domid, int pasid,
818 u64 address, bool size)
819{
820 memset(cmd, 0, sizeof(*cmd));
821
822 address &= ~(0xfffULL);
823
Suravee Suthikulpanita919a012014-03-05 18:54:18 -0600824 cmd->data[0] = pasid;
Joerg Roedel22e266c2011-11-21 15:59:08 +0100825 cmd->data[1] = domid;
826 cmd->data[2] = lower_32_bits(address);
827 cmd->data[3] = upper_32_bits(address);
828 cmd->data[2] |= CMD_INV_IOMMU_PAGES_PDE_MASK;
829 cmd->data[2] |= CMD_INV_IOMMU_PAGES_GN_MASK;
830 if (size)
831 cmd->data[2] |= CMD_INV_IOMMU_PAGES_SIZE_MASK;
832 CMD_SET_TYPE(cmd, CMD_INV_IOMMU_PAGES);
833}
834
835static void build_inv_iotlb_pasid(struct iommu_cmd *cmd, u16 devid, int pasid,
836 int qdep, u64 address, bool size)
837{
838 memset(cmd, 0, sizeof(*cmd));
839
840 address &= ~(0xfffULL);
841
842 cmd->data[0] = devid;
Jay Cornwalle8d2d822014-02-26 15:49:31 -0600843 cmd->data[0] |= ((pasid >> 8) & 0xff) << 16;
Joerg Roedel22e266c2011-11-21 15:59:08 +0100844 cmd->data[0] |= (qdep & 0xff) << 24;
845 cmd->data[1] = devid;
Jay Cornwalle8d2d822014-02-26 15:49:31 -0600846 cmd->data[1] |= (pasid & 0xff) << 16;
Joerg Roedel22e266c2011-11-21 15:59:08 +0100847 cmd->data[2] = lower_32_bits(address);
848 cmd->data[2] |= CMD_INV_IOMMU_PAGES_GN_MASK;
849 cmd->data[3] = upper_32_bits(address);
850 if (size)
851 cmd->data[2] |= CMD_INV_IOMMU_PAGES_SIZE_MASK;
852 CMD_SET_TYPE(cmd, CMD_INV_IOTLB_PAGES);
853}
854
Joerg Roedelc99afa22011-11-21 18:19:25 +0100855static void build_complete_ppr(struct iommu_cmd *cmd, u16 devid, int pasid,
856 int status, int tag, bool gn)
857{
858 memset(cmd, 0, sizeof(*cmd));
859
860 cmd->data[0] = devid;
861 if (gn) {
Suravee Suthikulpanita919a012014-03-05 18:54:18 -0600862 cmd->data[1] = pasid;
Joerg Roedelc99afa22011-11-21 18:19:25 +0100863 cmd->data[2] = CMD_INV_IOMMU_PAGES_GN_MASK;
864 }
865 cmd->data[3] = tag & 0x1ff;
866 cmd->data[3] |= (status & PPR_STATUS_MASK) << PPR_STATUS_SHIFT;
867
868 CMD_SET_TYPE(cmd, CMD_COMPLETE_PPR);
869}
870
Joerg Roedel58fc7f12011-04-11 11:13:24 +0200871static void build_inv_all(struct iommu_cmd *cmd)
872{
873 memset(cmd, 0, sizeof(*cmd));
874 CMD_SET_TYPE(cmd, CMD_INV_ALL);
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200875}
876
Joerg Roedel7ef27982012-06-21 16:46:04 +0200877static void build_inv_irt(struct iommu_cmd *cmd, u16 devid)
878{
879 memset(cmd, 0, sizeof(*cmd));
880 cmd->data[0] = devid;
881 CMD_SET_TYPE(cmd, CMD_INV_IRT);
882}
883
Joerg Roedel431b2a22008-07-11 17:14:22 +0200884/*
Joerg Roedelb6c02712008-06-26 21:27:53 +0200885 * Writes the command to the IOMMUs command buffer and informs the
Joerg Roedelac0ea6e2011-04-06 18:38:20 +0200886 * hardware about the new command.
Joerg Roedel431b2a22008-07-11 17:14:22 +0200887 */
Joerg Roedelf1ca1512011-09-02 14:10:32 +0200888static int iommu_queue_command_sync(struct amd_iommu *iommu,
889 struct iommu_cmd *cmd,
890 bool sync)
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200891{
Joerg Roedelac0ea6e2011-04-06 18:38:20 +0200892 u32 left, tail, head, next_tail;
Joerg Roedel815b33f2011-04-06 17:26:49 +0200893 unsigned long flags;
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200894
Joerg Roedelac0ea6e2011-04-06 18:38:20 +0200895again:
Joerg Roedel815b33f2011-04-06 17:26:49 +0200896 spin_lock_irqsave(&iommu->lock, flags);
Joerg Roedelac0ea6e2011-04-06 18:38:20 +0200897
898 head = readl(iommu->mmio_base + MMIO_CMD_HEAD_OFFSET);
899 tail = readl(iommu->mmio_base + MMIO_CMD_TAIL_OFFSET);
Joerg Roedeldeba4bc2015-10-20 17:33:41 +0200900 next_tail = (tail + sizeof(*cmd)) % CMD_BUFFER_SIZE;
901 left = (head - next_tail) % CMD_BUFFER_SIZE;
Joerg Roedelac0ea6e2011-04-06 18:38:20 +0200902
903 if (left <= 2) {
904 struct iommu_cmd sync_cmd;
905 volatile u64 sem = 0;
906 int ret;
907
908 build_completion_wait(&sync_cmd, (u64)&sem);
909 copy_cmd_to_buffer(iommu, &sync_cmd, tail);
910
911 spin_unlock_irqrestore(&iommu->lock, flags);
912
913 if ((ret = wait_on_sem(&sem)) != 0)
914 return ret;
915
916 goto again;
Joerg Roedel136f78a2008-07-11 17:14:27 +0200917 }
918
Joerg Roedelac0ea6e2011-04-06 18:38:20 +0200919 copy_cmd_to_buffer(iommu, cmd, tail);
Joerg Roedel519c31b2008-08-14 19:55:15 +0200920
Joerg Roedelac0ea6e2011-04-06 18:38:20 +0200921 /* We need to sync now to make sure all commands are processed */
Joerg Roedelf1ca1512011-09-02 14:10:32 +0200922 iommu->need_sync = sync;
Joerg Roedelac0ea6e2011-04-06 18:38:20 +0200923
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200924 spin_unlock_irqrestore(&iommu->lock, flags);
925
Joerg Roedel815b33f2011-04-06 17:26:49 +0200926 return 0;
Joerg Roedel8d201962008-12-02 20:34:41 +0100927}
928
Joerg Roedelf1ca1512011-09-02 14:10:32 +0200929static int iommu_queue_command(struct amd_iommu *iommu, struct iommu_cmd *cmd)
930{
931 return iommu_queue_command_sync(iommu, cmd, true);
932}
933
Joerg Roedel8d201962008-12-02 20:34:41 +0100934/*
935 * This function queues a completion wait command into the command
936 * buffer of an IOMMU
937 */
Joerg Roedel8d201962008-12-02 20:34:41 +0100938static int iommu_completion_wait(struct amd_iommu *iommu)
939{
Joerg Roedel815b33f2011-04-06 17:26:49 +0200940 struct iommu_cmd cmd;
941 volatile u64 sem = 0;
Joerg Roedelac0ea6e2011-04-06 18:38:20 +0200942 int ret;
Joerg Roedel8d201962008-12-02 20:34:41 +0100943
944 if (!iommu->need_sync)
Joerg Roedel815b33f2011-04-06 17:26:49 +0200945 return 0;
Joerg Roedel8d201962008-12-02 20:34:41 +0100946
Joerg Roedel815b33f2011-04-06 17:26:49 +0200947 build_completion_wait(&cmd, (u64)&sem);
Joerg Roedel8d201962008-12-02 20:34:41 +0100948
Joerg Roedelf1ca1512011-09-02 14:10:32 +0200949 ret = iommu_queue_command_sync(iommu, &cmd, false);
Joerg Roedel8d201962008-12-02 20:34:41 +0100950 if (ret)
Joerg Roedel815b33f2011-04-06 17:26:49 +0200951 return ret;
Joerg Roedel8d201962008-12-02 20:34:41 +0100952
Joerg Roedelac0ea6e2011-04-06 18:38:20 +0200953 return wait_on_sem(&sem);
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200954}
955
Joerg Roedeld8c13082011-04-06 18:51:26 +0200956static int iommu_flush_dte(struct amd_iommu *iommu, u16 devid)
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200957{
958 struct iommu_cmd cmd;
959
Joerg Roedeld8c13082011-04-06 18:51:26 +0200960 build_inv_dte(&cmd, devid);
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200961
Joerg Roedeld8c13082011-04-06 18:51:26 +0200962 return iommu_queue_command(iommu, &cmd);
963}
964
Joerg Roedel7d0c5cc2011-04-07 08:16:10 +0200965static void iommu_flush_dte_all(struct amd_iommu *iommu)
966{
967 u32 devid;
968
969 for (devid = 0; devid <= 0xffff; ++devid)
970 iommu_flush_dte(iommu, devid);
971
972 iommu_completion_wait(iommu);
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200973}
974
975/*
Joerg Roedel7d0c5cc2011-04-07 08:16:10 +0200976 * This function uses heavy locking and may disable irqs for some time. But
977 * this is no issue because it is only called during resume.
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200978 */
Joerg Roedel7d0c5cc2011-04-07 08:16:10 +0200979static void iommu_flush_tlb_all(struct amd_iommu *iommu)
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200980{
Joerg Roedel7d0c5cc2011-04-07 08:16:10 +0200981 u32 dom_id;
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200982
Joerg Roedel7d0c5cc2011-04-07 08:16:10 +0200983 for (dom_id = 0; dom_id <= 0xffff; ++dom_id) {
984 struct iommu_cmd cmd;
985 build_inv_iommu_pages(&cmd, 0, CMD_INV_IOMMU_ALL_PAGES_ADDRESS,
986 dom_id, 1);
987 iommu_queue_command(iommu, &cmd);
988 }
Joerg Roedel431b2a22008-07-11 17:14:22 +0200989
Joerg Roedel7d0c5cc2011-04-07 08:16:10 +0200990 iommu_completion_wait(iommu);
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200991}
992
Joerg Roedel58fc7f12011-04-11 11:13:24 +0200993static void iommu_flush_all(struct amd_iommu *iommu)
994{
995 struct iommu_cmd cmd;
996
997 build_inv_all(&cmd);
998
999 iommu_queue_command(iommu, &cmd);
1000 iommu_completion_wait(iommu);
1001}
1002
Joerg Roedel7ef27982012-06-21 16:46:04 +02001003static void iommu_flush_irt(struct amd_iommu *iommu, u16 devid)
1004{
1005 struct iommu_cmd cmd;
1006
1007 build_inv_irt(&cmd, devid);
1008
1009 iommu_queue_command(iommu, &cmd);
1010}
1011
1012static void iommu_flush_irt_all(struct amd_iommu *iommu)
1013{
1014 u32 devid;
1015
1016 for (devid = 0; devid <= MAX_DEV_TABLE_ENTRIES; devid++)
1017 iommu_flush_irt(iommu, devid);
1018
1019 iommu_completion_wait(iommu);
1020}
1021
Joerg Roedel7d0c5cc2011-04-07 08:16:10 +02001022void iommu_flush_all_caches(struct amd_iommu *iommu)
1023{
Joerg Roedel58fc7f12011-04-11 11:13:24 +02001024 if (iommu_feature(iommu, FEATURE_IA)) {
1025 iommu_flush_all(iommu);
1026 } else {
1027 iommu_flush_dte_all(iommu);
Joerg Roedel7ef27982012-06-21 16:46:04 +02001028 iommu_flush_irt_all(iommu);
Joerg Roedel58fc7f12011-04-11 11:13:24 +02001029 iommu_flush_tlb_all(iommu);
1030 }
Joerg Roedel7d0c5cc2011-04-07 08:16:10 +02001031}
1032
Joerg Roedel431b2a22008-07-11 17:14:22 +02001033/*
Joerg Roedelcb41ed82011-04-05 11:00:53 +02001034 * Command send function for flushing on-device TLB
1035 */
Joerg Roedel6c542042011-06-09 17:07:31 +02001036static int device_flush_iotlb(struct iommu_dev_data *dev_data,
1037 u64 address, size_t size)
Joerg Roedelcb41ed82011-04-05 11:00:53 +02001038{
Joerg Roedelcb41ed82011-04-05 11:00:53 +02001039 struct amd_iommu *iommu;
1040 struct iommu_cmd cmd;
Joerg Roedelcb41ed82011-04-05 11:00:53 +02001041 int qdep;
1042
Joerg Roedelea61cdd2011-06-09 12:56:30 +02001043 qdep = dev_data->ats.qdep;
1044 iommu = amd_iommu_rlookup_table[dev_data->devid];
Joerg Roedelcb41ed82011-04-05 11:00:53 +02001045
Joerg Roedelea61cdd2011-06-09 12:56:30 +02001046 build_inv_iotlb_pages(&cmd, dev_data->devid, qdep, address, size);
Joerg Roedelcb41ed82011-04-05 11:00:53 +02001047
1048 return iommu_queue_command(iommu, &cmd);
1049}
1050
1051/*
Joerg Roedel431b2a22008-07-11 17:14:22 +02001052 * Command send function for invalidating a device table entry
1053 */
Joerg Roedel6c542042011-06-09 17:07:31 +02001054static int device_flush_dte(struct iommu_dev_data *dev_data)
Joerg Roedel3fa43652009-11-26 15:04:38 +01001055{
1056 struct amd_iommu *iommu;
Joerg Roedele25bfb52015-10-20 17:33:38 +02001057 u16 alias;
Joerg Roedelcb41ed82011-04-05 11:00:53 +02001058 int ret;
Joerg Roedel3fa43652009-11-26 15:04:38 +01001059
Joerg Roedel6c542042011-06-09 17:07:31 +02001060 iommu = amd_iommu_rlookup_table[dev_data->devid];
Joerg Roedele25bfb52015-10-20 17:33:38 +02001061 alias = amd_iommu_alias_table[dev_data->devid];
Joerg Roedel3fa43652009-11-26 15:04:38 +01001062
Joerg Roedelf62dda62011-06-09 12:55:35 +02001063 ret = iommu_flush_dte(iommu, dev_data->devid);
Joerg Roedele25bfb52015-10-20 17:33:38 +02001064 if (!ret && alias != dev_data->devid)
1065 ret = iommu_flush_dte(iommu, alias);
Joerg Roedelcb41ed82011-04-05 11:00:53 +02001066 if (ret)
1067 return ret;
1068
Joerg Roedelea61cdd2011-06-09 12:56:30 +02001069 if (dev_data->ats.enabled)
Joerg Roedel6c542042011-06-09 17:07:31 +02001070 ret = device_flush_iotlb(dev_data, 0, ~0UL);
Joerg Roedelcb41ed82011-04-05 11:00:53 +02001071
1072 return ret;
Joerg Roedel3fa43652009-11-26 15:04:38 +01001073}
1074
Joerg Roedel431b2a22008-07-11 17:14:22 +02001075/*
1076 * TLB invalidation function which is called from the mapping functions.
1077 * It invalidates a single PTE if the range to flush is within a single
1078 * page. Otherwise it flushes the whole TLB of the IOMMU.
1079 */
Joerg Roedel17b124b2011-04-06 18:01:35 +02001080static void __domain_flush_pages(struct protection_domain *domain,
1081 u64 address, size_t size, int pde)
Joerg Roedela19ae1e2008-06-26 21:27:55 +02001082{
Joerg Roedelcb41ed82011-04-05 11:00:53 +02001083 struct iommu_dev_data *dev_data;
Joerg Roedel11b64022011-04-06 11:49:28 +02001084 struct iommu_cmd cmd;
1085 int ret = 0, i;
Joerg Roedela19ae1e2008-06-26 21:27:55 +02001086
Joerg Roedel11b64022011-04-06 11:49:28 +02001087 build_inv_iommu_pages(&cmd, address, size, domain->id, pde);
Joerg Roedel999ba412008-07-03 19:35:08 +02001088
Joerg Roedel6de8ad92009-11-23 18:30:32 +01001089 for (i = 0; i < amd_iommus_present; ++i) {
1090 if (!domain->dev_iommu[i])
1091 continue;
1092
1093 /*
1094 * Devices of this domain are behind this IOMMU
1095 * We need a TLB flush
1096 */
Joerg Roedel11b64022011-04-06 11:49:28 +02001097 ret |= iommu_queue_command(amd_iommus[i], &cmd);
Joerg Roedel6de8ad92009-11-23 18:30:32 +01001098 }
1099
Joerg Roedelcb41ed82011-04-05 11:00:53 +02001100 list_for_each_entry(dev_data, &domain->dev_list, list) {
Joerg Roedelcb41ed82011-04-05 11:00:53 +02001101
Joerg Roedelea61cdd2011-06-09 12:56:30 +02001102 if (!dev_data->ats.enabled)
Joerg Roedelcb41ed82011-04-05 11:00:53 +02001103 continue;
1104
Joerg Roedel6c542042011-06-09 17:07:31 +02001105 ret |= device_flush_iotlb(dev_data, address, size);
Joerg Roedelcb41ed82011-04-05 11:00:53 +02001106 }
1107
Joerg Roedel11b64022011-04-06 11:49:28 +02001108 WARN_ON(ret);
Joerg Roedel6de8ad92009-11-23 18:30:32 +01001109}
1110
Joerg Roedel17b124b2011-04-06 18:01:35 +02001111static void domain_flush_pages(struct protection_domain *domain,
1112 u64 address, size_t size)
Joerg Roedel6de8ad92009-11-23 18:30:32 +01001113{
Joerg Roedel17b124b2011-04-06 18:01:35 +02001114 __domain_flush_pages(domain, address, size, 0);
Joerg Roedela19ae1e2008-06-26 21:27:55 +02001115}
Joerg Roedelb6c02712008-06-26 21:27:53 +02001116
Joerg Roedel1c655772008-09-04 18:40:05 +02001117/* Flush the whole IO/TLB for a given protection domain */
Joerg Roedel17b124b2011-04-06 18:01:35 +02001118static void domain_flush_tlb(struct protection_domain *domain)
Joerg Roedel1c655772008-09-04 18:40:05 +02001119{
Joerg Roedel17b124b2011-04-06 18:01:35 +02001120 __domain_flush_pages(domain, 0, CMD_INV_IOMMU_ALL_PAGES_ADDRESS, 0);
Joerg Roedel1c655772008-09-04 18:40:05 +02001121}
1122
Chris Wright42a49f92009-06-15 15:42:00 +02001123/* Flush the whole IO/TLB for a given protection domain - including PDE */
Joerg Roedel17b124b2011-04-06 18:01:35 +02001124static void domain_flush_tlb_pde(struct protection_domain *domain)
Chris Wright42a49f92009-06-15 15:42:00 +02001125{
Joerg Roedel17b124b2011-04-06 18:01:35 +02001126 __domain_flush_pages(domain, 0, CMD_INV_IOMMU_ALL_PAGES_ADDRESS, 1);
1127}
1128
1129static void domain_flush_complete(struct protection_domain *domain)
Joerg Roedelb6c02712008-06-26 21:27:53 +02001130{
1131 int i;
1132
1133 for (i = 0; i < amd_iommus_present; ++i) {
1134 if (!domain->dev_iommu[i])
1135 continue;
1136
1137 /*
1138 * Devices of this domain are behind this IOMMU
1139 * We need to wait for completion of all commands.
1140 */
1141 iommu_completion_wait(amd_iommus[i]);
1142 }
1143}
1144
Joerg Roedelb00d3bc2009-11-26 15:35:33 +01001145
Joerg Roedel43f49602008-12-02 21:01:12 +01001146/*
Joerg Roedelb00d3bc2009-11-26 15:35:33 +01001147 * This function flushes the DTEs for all devices in domain
Joerg Roedel43f49602008-12-02 21:01:12 +01001148 */
Joerg Roedel17b124b2011-04-06 18:01:35 +02001149static void domain_flush_devices(struct protection_domain *domain)
Joerg Roedelbfd1be12009-05-05 15:33:57 +02001150{
Joerg Roedelb00d3bc2009-11-26 15:35:33 +01001151 struct iommu_dev_data *dev_data;
Joerg Roedelb00d3bc2009-11-26 15:35:33 +01001152
1153 list_for_each_entry(dev_data, &domain->dev_list, list)
Joerg Roedel6c542042011-06-09 17:07:31 +02001154 device_flush_dte(dev_data);
Joerg Roedelb00d3bc2009-11-26 15:35:33 +01001155}
1156
Joerg Roedel431b2a22008-07-11 17:14:22 +02001157/****************************************************************************
1158 *
1159 * The functions below are used the create the page table mappings for
1160 * unity mapped regions.
1161 *
1162 ****************************************************************************/
1163
1164/*
Joerg Roedel308973d2009-11-24 17:43:32 +01001165 * This function is used to add another level to an IO page table. Adding
1166 * another level increases the size of the address space by 9 bits to a size up
1167 * to 64 bits.
1168 */
1169static bool increase_address_space(struct protection_domain *domain,
1170 gfp_t gfp)
1171{
1172 u64 *pte;
1173
1174 if (domain->mode == PAGE_MODE_6_LEVEL)
1175 /* address space already 64 bit large */
1176 return false;
1177
1178 pte = (void *)get_zeroed_page(gfp);
1179 if (!pte)
1180 return false;
1181
1182 *pte = PM_LEVEL_PDE(domain->mode,
1183 virt_to_phys(domain->pt_root));
1184 domain->pt_root = pte;
1185 domain->mode += 1;
1186 domain->updated = true;
1187
1188 return true;
1189}
1190
1191static u64 *alloc_pte(struct protection_domain *domain,
1192 unsigned long address,
Joerg Roedelcbb9d722010-01-15 14:41:15 +01001193 unsigned long page_size,
Joerg Roedel308973d2009-11-24 17:43:32 +01001194 u64 **pte_page,
1195 gfp_t gfp)
1196{
Joerg Roedelcbb9d722010-01-15 14:41:15 +01001197 int level, end_lvl;
Joerg Roedel308973d2009-11-24 17:43:32 +01001198 u64 *pte, *page;
Joerg Roedelcbb9d722010-01-15 14:41:15 +01001199
1200 BUG_ON(!is_power_of_2(page_size));
Joerg Roedel308973d2009-11-24 17:43:32 +01001201
1202 while (address > PM_LEVEL_SIZE(domain->mode))
1203 increase_address_space(domain, gfp);
1204
Joerg Roedelcbb9d722010-01-15 14:41:15 +01001205 level = domain->mode - 1;
1206 pte = &domain->pt_root[PM_LEVEL_INDEX(level, address)];
1207 address = PAGE_SIZE_ALIGN(address, page_size);
1208 end_lvl = PAGE_SIZE_LEVEL(page_size);
Joerg Roedel308973d2009-11-24 17:43:32 +01001209
1210 while (level > end_lvl) {
1211 if (!IOMMU_PTE_PRESENT(*pte)) {
1212 page = (u64 *)get_zeroed_page(gfp);
1213 if (!page)
1214 return NULL;
1215 *pte = PM_LEVEL_PDE(level, virt_to_phys(page));
1216 }
1217
Joerg Roedelcbb9d722010-01-15 14:41:15 +01001218 /* No level skipping support yet */
1219 if (PM_PTE_LEVEL(*pte) != level)
1220 return NULL;
1221
Joerg Roedel308973d2009-11-24 17:43:32 +01001222 level -= 1;
1223
1224 pte = IOMMU_PTE_PAGE(*pte);
1225
1226 if (pte_page && level == end_lvl)
1227 *pte_page = pte;
1228
1229 pte = &pte[PM_LEVEL_INDEX(level, address)];
1230 }
1231
1232 return pte;
1233}
1234
1235/*
1236 * This function checks if there is a PTE for a given dma address. If
1237 * there is one, it returns the pointer to it.
1238 */
Joerg Roedel3039ca12015-04-01 14:58:48 +02001239static u64 *fetch_pte(struct protection_domain *domain,
1240 unsigned long address,
1241 unsigned long *page_size)
Joerg Roedel308973d2009-11-24 17:43:32 +01001242{
1243 int level;
1244 u64 *pte;
1245
Joerg Roedel24cd7722010-01-19 17:27:39 +01001246 if (address > PM_LEVEL_SIZE(domain->mode))
1247 return NULL;
Joerg Roedel308973d2009-11-24 17:43:32 +01001248
Joerg Roedel3039ca12015-04-01 14:58:48 +02001249 level = domain->mode - 1;
1250 pte = &domain->pt_root[PM_LEVEL_INDEX(level, address)];
1251 *page_size = PTE_LEVEL_PAGE_SIZE(level);
Joerg Roedel24cd7722010-01-19 17:27:39 +01001252
1253 while (level > 0) {
1254
1255 /* Not Present */
Joerg Roedel308973d2009-11-24 17:43:32 +01001256 if (!IOMMU_PTE_PRESENT(*pte))
1257 return NULL;
1258
Joerg Roedel24cd7722010-01-19 17:27:39 +01001259 /* Large PTE */
Joerg Roedel3039ca12015-04-01 14:58:48 +02001260 if (PM_PTE_LEVEL(*pte) == 7 ||
1261 PM_PTE_LEVEL(*pte) == 0)
1262 break;
Joerg Roedel24cd7722010-01-19 17:27:39 +01001263
1264 /* No level skipping support yet */
1265 if (PM_PTE_LEVEL(*pte) != level)
1266 return NULL;
1267
Joerg Roedel308973d2009-11-24 17:43:32 +01001268 level -= 1;
1269
Joerg Roedel24cd7722010-01-19 17:27:39 +01001270 /* Walk to the next level */
Joerg Roedel3039ca12015-04-01 14:58:48 +02001271 pte = IOMMU_PTE_PAGE(*pte);
1272 pte = &pte[PM_LEVEL_INDEX(level, address)];
1273 *page_size = PTE_LEVEL_PAGE_SIZE(level);
1274 }
1275
1276 if (PM_PTE_LEVEL(*pte) == 0x07) {
1277 unsigned long pte_mask;
1278
1279 /*
1280 * If we have a series of large PTEs, make
1281 * sure to return a pointer to the first one.
1282 */
1283 *page_size = pte_mask = PTE_PAGE_SIZE(*pte);
1284 pte_mask = ~((PAGE_SIZE_PTE_COUNT(pte_mask) << 3) - 1);
1285 pte = (u64 *)(((unsigned long)pte) & pte_mask);
Joerg Roedel308973d2009-11-24 17:43:32 +01001286 }
1287
1288 return pte;
1289}
1290
1291/*
Joerg Roedel431b2a22008-07-11 17:14:22 +02001292 * Generic mapping functions. It maps a physical address into a DMA
1293 * address space. It allocates the page table pages if necessary.
1294 * In the future it can be extended to a generic mapping function
1295 * supporting all features of AMD IOMMU page tables like level skipping
1296 * and full 64 bit address spaces.
1297 */
Joerg Roedel38e817f2008-12-02 17:27:52 +01001298static int iommu_map_page(struct protection_domain *dom,
1299 unsigned long bus_addr,
1300 unsigned long phys_addr,
Joerg Roedelabdc5eb2009-09-03 11:33:51 +02001301 int prot,
Joerg Roedelcbb9d722010-01-15 14:41:15 +01001302 unsigned long page_size)
Joerg Roedelbd0e5212008-06-26 21:27:56 +02001303{
Joerg Roedel8bda3092009-05-12 12:02:46 +02001304 u64 __pte, *pte;
Joerg Roedelcbb9d722010-01-15 14:41:15 +01001305 int i, count;
Joerg Roedelabdc5eb2009-09-03 11:33:51 +02001306
Joerg Roedeld4b03662015-04-01 14:58:52 +02001307 BUG_ON(!IS_ALIGNED(bus_addr, page_size));
1308 BUG_ON(!IS_ALIGNED(phys_addr, page_size));
1309
Joerg Roedelbad1cac2009-09-02 16:52:23 +02001310 if (!(prot & IOMMU_PROT_MASK))
Joerg Roedelbd0e5212008-06-26 21:27:56 +02001311 return -EINVAL;
1312
Joerg Roedeld4b03662015-04-01 14:58:52 +02001313 count = PAGE_SIZE_PTE_COUNT(page_size);
1314 pte = alloc_pte(dom, bus_addr, page_size, NULL, GFP_KERNEL);
Joerg Roedelbd0e5212008-06-26 21:27:56 +02001315
Maurizio Lombardi63eaa752014-09-11 12:28:03 +02001316 if (!pte)
1317 return -ENOMEM;
1318
Joerg Roedelcbb9d722010-01-15 14:41:15 +01001319 for (i = 0; i < count; ++i)
1320 if (IOMMU_PTE_PRESENT(pte[i]))
1321 return -EBUSY;
Joerg Roedelbd0e5212008-06-26 21:27:56 +02001322
Joerg Roedeld4b03662015-04-01 14:58:52 +02001323 if (count > 1) {
Joerg Roedelcbb9d722010-01-15 14:41:15 +01001324 __pte = PAGE_SIZE_PTE(phys_addr, page_size);
1325 __pte |= PM_LEVEL_ENC(7) | IOMMU_PTE_P | IOMMU_PTE_FC;
1326 } else
1327 __pte = phys_addr | IOMMU_PTE_P | IOMMU_PTE_FC;
1328
Joerg Roedelbd0e5212008-06-26 21:27:56 +02001329 if (prot & IOMMU_PROT_IR)
1330 __pte |= IOMMU_PTE_IR;
1331 if (prot & IOMMU_PROT_IW)
1332 __pte |= IOMMU_PTE_IW;
1333
Joerg Roedelcbb9d722010-01-15 14:41:15 +01001334 for (i = 0; i < count; ++i)
1335 pte[i] = __pte;
Joerg Roedelbd0e5212008-06-26 21:27:56 +02001336
Joerg Roedel04bfdd82009-09-02 16:00:23 +02001337 update_domain(dom);
1338
Joerg Roedelbd0e5212008-06-26 21:27:56 +02001339 return 0;
1340}
1341
Joerg Roedel24cd7722010-01-19 17:27:39 +01001342static unsigned long iommu_unmap_page(struct protection_domain *dom,
1343 unsigned long bus_addr,
1344 unsigned long page_size)
Joerg Roedeleb74ff62008-12-02 19:59:10 +01001345{
Joerg Roedel71b390e2015-04-01 14:58:49 +02001346 unsigned long long unmapped;
1347 unsigned long unmap_size;
Joerg Roedel24cd7722010-01-19 17:27:39 +01001348 u64 *pte;
Joerg Roedeleb74ff62008-12-02 19:59:10 +01001349
Joerg Roedel24cd7722010-01-19 17:27:39 +01001350 BUG_ON(!is_power_of_2(page_size));
1351
1352 unmapped = 0;
1353
1354 while (unmapped < page_size) {
1355
Joerg Roedel71b390e2015-04-01 14:58:49 +02001356 pte = fetch_pte(dom, bus_addr, &unmap_size);
Joerg Roedel24cd7722010-01-19 17:27:39 +01001357
Joerg Roedel71b390e2015-04-01 14:58:49 +02001358 if (pte) {
1359 int i, count;
Joerg Roedel24cd7722010-01-19 17:27:39 +01001360
Joerg Roedel71b390e2015-04-01 14:58:49 +02001361 count = PAGE_SIZE_PTE_COUNT(unmap_size);
Joerg Roedel24cd7722010-01-19 17:27:39 +01001362 for (i = 0; i < count; i++)
1363 pte[i] = 0ULL;
1364 }
1365
1366 bus_addr = (bus_addr & ~(unmap_size - 1)) + unmap_size;
1367 unmapped += unmap_size;
1368 }
1369
Alex Williamson60d0ca32013-06-21 14:33:19 -06001370 BUG_ON(unmapped && !is_power_of_2(unmapped));
Joerg Roedel24cd7722010-01-19 17:27:39 +01001371
1372 return unmapped;
Joerg Roedeleb74ff62008-12-02 19:59:10 +01001373}
Joerg Roedeleb74ff62008-12-02 19:59:10 +01001374
Joerg Roedel431b2a22008-07-11 17:14:22 +02001375/****************************************************************************
1376 *
1377 * The next functions belong to the address allocator for the dma_ops
1378 * interface functions. They work like the allocators in the other IOMMU
1379 * drivers. Its basically a bitmap which marks the allocated pages in
1380 * the aperture. Maybe it could be enhanced in the future to a more
1381 * efficient allocator.
1382 *
1383 ****************************************************************************/
Joerg Roedeld3086442008-06-26 21:27:57 +02001384
Joerg Roedel431b2a22008-07-11 17:14:22 +02001385/*
Joerg Roedel384de722009-05-15 12:30:05 +02001386 * The address allocator core functions.
Joerg Roedel431b2a22008-07-11 17:14:22 +02001387 *
1388 * called with domain->lock held
1389 */
Joerg Roedel384de722009-05-15 12:30:05 +02001390
Joerg Roedel9cabe892009-05-18 16:38:55 +02001391/*
Joerg Roedel171e7b32009-11-24 17:47:56 +01001392 * Used to reserve address ranges in the aperture (e.g. for exclusion
1393 * ranges.
1394 */
1395static void dma_ops_reserve_addresses(struct dma_ops_domain *dom,
1396 unsigned long start_page,
1397 unsigned int pages)
1398{
1399 unsigned int i, last_page = dom->aperture_size >> PAGE_SHIFT;
1400
1401 if (start_page + pages > last_page)
1402 pages = last_page - start_page;
1403
1404 for (i = start_page; i < start_page + pages; ++i) {
1405 int index = i / APERTURE_RANGE_PAGES;
1406 int page = i % APERTURE_RANGE_PAGES;
1407 __set_bit(page, dom->aperture[index]->bitmap);
1408 }
1409}
1410
1411/*
Joerg Roedel9cabe892009-05-18 16:38:55 +02001412 * This function is used to add a new aperture range to an existing
1413 * aperture in case of dma_ops domain allocation or address allocation
1414 * failure.
1415 */
Joerg Roedel576175c2009-11-23 19:08:46 +01001416static int alloc_new_range(struct dma_ops_domain *dma_dom,
Joerg Roedel9cabe892009-05-18 16:38:55 +02001417 bool populate, gfp_t gfp)
1418{
1419 int index = dma_dom->aperture_size >> APERTURE_RANGE_SHIFT;
Joerg Roedel576175c2009-11-23 19:08:46 +01001420 struct amd_iommu *iommu;
Joerg Roedel5d7c94c2015-04-01 14:58:50 +02001421 unsigned long i, old_size, pte_pgsize;
Joerg Roedel9cabe892009-05-18 16:38:55 +02001422
Joerg Roedelf5e97052009-05-22 12:31:53 +02001423#ifdef CONFIG_IOMMU_STRESS
1424 populate = false;
1425#endif
1426
Joerg Roedel9cabe892009-05-18 16:38:55 +02001427 if (index >= APERTURE_MAX_RANGES)
1428 return -ENOMEM;
1429
1430 dma_dom->aperture[index] = kzalloc(sizeof(struct aperture_range), gfp);
1431 if (!dma_dom->aperture[index])
1432 return -ENOMEM;
1433
1434 dma_dom->aperture[index]->bitmap = (void *)get_zeroed_page(gfp);
1435 if (!dma_dom->aperture[index]->bitmap)
1436 goto out_free;
1437
1438 dma_dom->aperture[index]->offset = dma_dom->aperture_size;
1439
Joerg Roedel08c5fb92015-12-21 13:04:49 +01001440 spin_lock_init(&dma_dom->aperture[index]->bitmap_lock);
1441
Joerg Roedel9cabe892009-05-18 16:38:55 +02001442 if (populate) {
1443 unsigned long address = dma_dom->aperture_size;
1444 int i, num_ptes = APERTURE_RANGE_PAGES / 512;
1445 u64 *pte, *pte_page;
1446
1447 for (i = 0; i < num_ptes; ++i) {
Joerg Roedelcbb9d722010-01-15 14:41:15 +01001448 pte = alloc_pte(&dma_dom->domain, address, PAGE_SIZE,
Joerg Roedel9cabe892009-05-18 16:38:55 +02001449 &pte_page, gfp);
1450 if (!pte)
1451 goto out_free;
1452
1453 dma_dom->aperture[index]->pte_pages[i] = pte_page;
1454
1455 address += APERTURE_RANGE_SIZE / 64;
1456 }
1457 }
1458
Joerg Roedel17f5b562011-07-06 17:14:44 +02001459 old_size = dma_dom->aperture_size;
Joerg Roedel9cabe892009-05-18 16:38:55 +02001460 dma_dom->aperture_size += APERTURE_RANGE_SIZE;
1461
Joerg Roedel17f5b562011-07-06 17:14:44 +02001462 /* Reserve address range used for MSI messages */
1463 if (old_size < MSI_ADDR_BASE_LO &&
1464 dma_dom->aperture_size > MSI_ADDR_BASE_LO) {
1465 unsigned long spage;
1466 int pages;
1467
1468 pages = iommu_num_pages(MSI_ADDR_BASE_LO, 0x10000, PAGE_SIZE);
1469 spage = MSI_ADDR_BASE_LO >> PAGE_SHIFT;
1470
1471 dma_ops_reserve_addresses(dma_dom, spage, pages);
1472 }
1473
Uwe Kleine-Königb5950762010-11-01 15:38:34 -04001474 /* Initialize the exclusion range if necessary */
Joerg Roedel576175c2009-11-23 19:08:46 +01001475 for_each_iommu(iommu) {
1476 if (iommu->exclusion_start &&
1477 iommu->exclusion_start >= dma_dom->aperture[index]->offset
1478 && iommu->exclusion_start < dma_dom->aperture_size) {
1479 unsigned long startpage;
1480 int pages = iommu_num_pages(iommu->exclusion_start,
1481 iommu->exclusion_length,
1482 PAGE_SIZE);
1483 startpage = iommu->exclusion_start >> PAGE_SHIFT;
1484 dma_ops_reserve_addresses(dma_dom, startpage, pages);
1485 }
Joerg Roedel00cd1222009-05-19 09:52:40 +02001486 }
1487
1488 /*
1489 * Check for areas already mapped as present in the new aperture
1490 * range and mark those pages as reserved in the allocator. Such
1491 * mappings may already exist as a result of requested unity
1492 * mappings for devices.
1493 */
1494 for (i = dma_dom->aperture[index]->offset;
1495 i < dma_dom->aperture_size;
Joerg Roedel5d7c94c2015-04-01 14:58:50 +02001496 i += pte_pgsize) {
Joerg Roedel3039ca12015-04-01 14:58:48 +02001497 u64 *pte = fetch_pte(&dma_dom->domain, i, &pte_pgsize);
Joerg Roedel00cd1222009-05-19 09:52:40 +02001498 if (!pte || !IOMMU_PTE_PRESENT(*pte))
1499 continue;
1500
Joerg Roedel5d7c94c2015-04-01 14:58:50 +02001501 dma_ops_reserve_addresses(dma_dom, i >> PAGE_SHIFT,
1502 pte_pgsize >> 12);
Joerg Roedel00cd1222009-05-19 09:52:40 +02001503 }
1504
Joerg Roedel04bfdd82009-09-02 16:00:23 +02001505 update_domain(&dma_dom->domain);
1506
Joerg Roedel9cabe892009-05-18 16:38:55 +02001507 return 0;
1508
1509out_free:
Joerg Roedel04bfdd82009-09-02 16:00:23 +02001510 update_domain(&dma_dom->domain);
1511
Joerg Roedel9cabe892009-05-18 16:38:55 +02001512 free_page((unsigned long)dma_dom->aperture[index]->bitmap);
1513
1514 kfree(dma_dom->aperture[index]);
1515 dma_dom->aperture[index] = NULL;
1516
1517 return -ENOMEM;
1518}
1519
Joerg Roedela0f51442015-12-21 16:20:09 +01001520static dma_addr_t dma_ops_aperture_alloc(struct aperture_range *range,
1521 unsigned long pages,
1522 unsigned long next_bit,
1523 unsigned long dma_mask,
1524 unsigned long boundary_size,
1525 unsigned long align_mask)
1526{
1527 unsigned long offset, limit, flags;
1528 dma_addr_t address;
1529
1530 offset = range->offset >> PAGE_SHIFT;
1531 limit = iommu_device_max_index(APERTURE_RANGE_PAGES, offset,
1532 dma_mask >> PAGE_SHIFT);
1533
1534 spin_lock_irqsave(&range->bitmap_lock, flags);
1535 address = iommu_area_alloc(range->bitmap, limit, next_bit, pages,
1536 offset, boundary_size, align_mask);
1537 spin_unlock_irqrestore(&range->bitmap_lock, flags);
1538
1539 return address;
1540}
1541
Joerg Roedel384de722009-05-15 12:30:05 +02001542static unsigned long dma_ops_area_alloc(struct device *dev,
1543 struct dma_ops_domain *dom,
1544 unsigned int pages,
1545 unsigned long align_mask,
1546 u64 dma_mask,
1547 unsigned long start)
1548{
Joerg Roedel803b8cb42009-05-18 15:32:48 +02001549 unsigned long next_bit = dom->next_address % APERTURE_RANGE_SIZE;
Joerg Roedel384de722009-05-15 12:30:05 +02001550 int max_index = dom->aperture_size >> APERTURE_RANGE_SHIFT;
1551 int i = start >> APERTURE_RANGE_SHIFT;
Joerg Roedele6aabee2015-05-27 09:26:09 +02001552 unsigned long boundary_size, mask;
Joerg Roedel384de722009-05-15 12:30:05 +02001553 unsigned long address = -1;
Joerg Roedel384de722009-05-15 12:30:05 +02001554
Joerg Roedel803b8cb42009-05-18 15:32:48 +02001555 next_bit >>= PAGE_SHIFT;
1556
Joerg Roedele6aabee2015-05-27 09:26:09 +02001557 mask = dma_get_seg_boundary(dev);
1558
1559 boundary_size = mask + 1 ? ALIGN(mask + 1, PAGE_SIZE) >> PAGE_SHIFT :
1560 1UL << (BITS_PER_LONG - PAGE_SHIFT);
Joerg Roedel384de722009-05-15 12:30:05 +02001561
1562 for (;i < max_index; ++i) {
Joerg Roedel384de722009-05-15 12:30:05 +02001563 if (dom->aperture[i]->offset >= dma_mask)
1564 break;
1565
Joerg Roedela0f51442015-12-21 16:20:09 +01001566 address = dma_ops_aperture_alloc(dom->aperture[i], pages,
1567 next_bit, dma_mask,
1568 boundary_size, align_mask);
Joerg Roedel384de722009-05-15 12:30:05 +02001569 if (address != -1) {
1570 address = dom->aperture[i]->offset +
1571 (address << PAGE_SHIFT);
Joerg Roedel803b8cb42009-05-18 15:32:48 +02001572 dom->next_address = address + (pages << PAGE_SHIFT);
Joerg Roedel384de722009-05-15 12:30:05 +02001573 break;
1574 }
1575
1576 next_bit = 0;
1577 }
1578
1579 return address;
1580}
1581
Joerg Roedeld3086442008-06-26 21:27:57 +02001582static unsigned long dma_ops_alloc_addresses(struct device *dev,
1583 struct dma_ops_domain *dom,
Joerg Roedel6d4f3432008-09-04 19:18:02 +02001584 unsigned int pages,
Joerg Roedel832a90c2008-09-18 15:54:23 +02001585 unsigned long align_mask,
1586 u64 dma_mask)
Joerg Roedeld3086442008-06-26 21:27:57 +02001587{
Joerg Roedeld3086442008-06-26 21:27:57 +02001588 unsigned long address;
Joerg Roedeld3086442008-06-26 21:27:57 +02001589
Joerg Roedelfe16f082009-05-22 12:27:53 +02001590#ifdef CONFIG_IOMMU_STRESS
1591 dom->next_address = 0;
1592 dom->need_flush = true;
1593#endif
Joerg Roedeld3086442008-06-26 21:27:57 +02001594
Joerg Roedel384de722009-05-15 12:30:05 +02001595 address = dma_ops_area_alloc(dev, dom, pages, align_mask,
Joerg Roedel803b8cb42009-05-18 15:32:48 +02001596 dma_mask, dom->next_address);
Joerg Roedeld3086442008-06-26 21:27:57 +02001597
Joerg Roedel1c655772008-09-04 18:40:05 +02001598 if (address == -1) {
Joerg Roedel803b8cb42009-05-18 15:32:48 +02001599 dom->next_address = 0;
Joerg Roedel384de722009-05-15 12:30:05 +02001600 address = dma_ops_area_alloc(dev, dom, pages, align_mask,
1601 dma_mask, 0);
Joerg Roedel1c655772008-09-04 18:40:05 +02001602 dom->need_flush = true;
1603 }
Joerg Roedeld3086442008-06-26 21:27:57 +02001604
Joerg Roedel384de722009-05-15 12:30:05 +02001605 if (unlikely(address == -1))
FUJITA Tomonori8fd524b2009-11-15 21:19:53 +09001606 address = DMA_ERROR_CODE;
Joerg Roedeld3086442008-06-26 21:27:57 +02001607
1608 WARN_ON((address + (PAGE_SIZE*pages)) > dom->aperture_size);
1609
1610 return address;
1611}
1612
Joerg Roedel431b2a22008-07-11 17:14:22 +02001613/*
1614 * The address free function.
1615 *
1616 * called with domain->lock held
1617 */
Joerg Roedeld3086442008-06-26 21:27:57 +02001618static void dma_ops_free_addresses(struct dma_ops_domain *dom,
1619 unsigned long address,
1620 unsigned int pages)
1621{
Joerg Roedel384de722009-05-15 12:30:05 +02001622 unsigned i = address >> APERTURE_RANGE_SHIFT;
1623 struct aperture_range *range = dom->aperture[i];
Joerg Roedel08c5fb92015-12-21 13:04:49 +01001624 unsigned long flags;
Joerg Roedel80be3082008-11-06 14:59:05 +01001625
Joerg Roedel384de722009-05-15 12:30:05 +02001626 BUG_ON(i >= APERTURE_MAX_RANGES || range == NULL);
1627
Joerg Roedel47bccd62009-05-22 12:40:54 +02001628#ifdef CONFIG_IOMMU_STRESS
1629 if (i < 4)
1630 return;
1631#endif
1632
Joerg Roedel803b8cb42009-05-18 15:32:48 +02001633 if (address >= dom->next_address)
Joerg Roedel80be3082008-11-06 14:59:05 +01001634 dom->need_flush = true;
Joerg Roedel384de722009-05-15 12:30:05 +02001635
1636 address = (address % APERTURE_RANGE_SIZE) >> PAGE_SHIFT;
Joerg Roedel803b8cb42009-05-18 15:32:48 +02001637
Joerg Roedel08c5fb92015-12-21 13:04:49 +01001638 spin_lock_irqsave(&range->bitmap_lock, flags);
Akinobu Mitaa66022c2009-12-15 16:48:28 -08001639 bitmap_clear(range->bitmap, address, pages);
Joerg Roedel08c5fb92015-12-21 13:04:49 +01001640 spin_unlock_irqrestore(&range->bitmap_lock, flags);
Joerg Roedel384de722009-05-15 12:30:05 +02001641
Joerg Roedeld3086442008-06-26 21:27:57 +02001642}
1643
Joerg Roedel431b2a22008-07-11 17:14:22 +02001644/****************************************************************************
1645 *
1646 * The next functions belong to the domain allocation. A domain is
1647 * allocated for every IOMMU as the default domain. If device isolation
1648 * is enabled, every device get its own domain. The most important thing
1649 * about domains is the page table mapping the DMA address space they
1650 * contain.
1651 *
1652 ****************************************************************************/
1653
Joerg Roedelaeb26f52009-11-20 16:44:01 +01001654/*
1655 * This function adds a protection domain to the global protection domain list
1656 */
1657static void add_domain_to_list(struct protection_domain *domain)
1658{
1659 unsigned long flags;
1660
1661 spin_lock_irqsave(&amd_iommu_pd_lock, flags);
1662 list_add(&domain->list, &amd_iommu_pd_list);
1663 spin_unlock_irqrestore(&amd_iommu_pd_lock, flags);
1664}
1665
1666/*
1667 * This function removes a protection domain to the global
1668 * protection domain list
1669 */
1670static void del_domain_from_list(struct protection_domain *domain)
1671{
1672 unsigned long flags;
1673
1674 spin_lock_irqsave(&amd_iommu_pd_lock, flags);
1675 list_del(&domain->list);
1676 spin_unlock_irqrestore(&amd_iommu_pd_lock, flags);
1677}
1678
Joerg Roedelec487d12008-06-26 21:27:58 +02001679static u16 domain_id_alloc(void)
1680{
1681 unsigned long flags;
1682 int id;
1683
1684 write_lock_irqsave(&amd_iommu_devtable_lock, flags);
1685 id = find_first_zero_bit(amd_iommu_pd_alloc_bitmap, MAX_DOMAIN_ID);
1686 BUG_ON(id == 0);
1687 if (id > 0 && id < MAX_DOMAIN_ID)
1688 __set_bit(id, amd_iommu_pd_alloc_bitmap);
1689 else
1690 id = 0;
1691 write_unlock_irqrestore(&amd_iommu_devtable_lock, flags);
1692
1693 return id;
1694}
1695
Joerg Roedela2acfb72008-12-02 18:28:53 +01001696static void domain_id_free(int id)
1697{
1698 unsigned long flags;
1699
1700 write_lock_irqsave(&amd_iommu_devtable_lock, flags);
1701 if (id > 0 && id < MAX_DOMAIN_ID)
1702 __clear_bit(id, amd_iommu_pd_alloc_bitmap);
1703 write_unlock_irqrestore(&amd_iommu_devtable_lock, flags);
1704}
Joerg Roedela2acfb72008-12-02 18:28:53 +01001705
Joerg Roedel5c34c402013-06-20 20:22:58 +02001706#define DEFINE_FREE_PT_FN(LVL, FN) \
1707static void free_pt_##LVL (unsigned long __pt) \
1708{ \
1709 unsigned long p; \
1710 u64 *pt; \
1711 int i; \
1712 \
1713 pt = (u64 *)__pt; \
1714 \
1715 for (i = 0; i < 512; ++i) { \
Joerg Roedel0b3fff52015-06-18 10:48:34 +02001716 /* PTE present? */ \
Joerg Roedel5c34c402013-06-20 20:22:58 +02001717 if (!IOMMU_PTE_PRESENT(pt[i])) \
1718 continue; \
1719 \
Joerg Roedel0b3fff52015-06-18 10:48:34 +02001720 /* Large PTE? */ \
1721 if (PM_PTE_LEVEL(pt[i]) == 0 || \
1722 PM_PTE_LEVEL(pt[i]) == 7) \
1723 continue; \
1724 \
Joerg Roedel5c34c402013-06-20 20:22:58 +02001725 p = (unsigned long)IOMMU_PTE_PAGE(pt[i]); \
1726 FN(p); \
1727 } \
1728 free_page((unsigned long)pt); \
1729}
1730
1731DEFINE_FREE_PT_FN(l2, free_page)
1732DEFINE_FREE_PT_FN(l3, free_pt_l2)
1733DEFINE_FREE_PT_FN(l4, free_pt_l3)
1734DEFINE_FREE_PT_FN(l5, free_pt_l4)
1735DEFINE_FREE_PT_FN(l6, free_pt_l5)
1736
Joerg Roedel86db2e52008-12-02 18:20:21 +01001737static void free_pagetable(struct protection_domain *domain)
Joerg Roedelec487d12008-06-26 21:27:58 +02001738{
Joerg Roedel5c34c402013-06-20 20:22:58 +02001739 unsigned long root = (unsigned long)domain->pt_root;
Joerg Roedelec487d12008-06-26 21:27:58 +02001740
Joerg Roedel5c34c402013-06-20 20:22:58 +02001741 switch (domain->mode) {
1742 case PAGE_MODE_NONE:
1743 break;
1744 case PAGE_MODE_1_LEVEL:
1745 free_page(root);
1746 break;
1747 case PAGE_MODE_2_LEVEL:
1748 free_pt_l2(root);
1749 break;
1750 case PAGE_MODE_3_LEVEL:
1751 free_pt_l3(root);
1752 break;
1753 case PAGE_MODE_4_LEVEL:
1754 free_pt_l4(root);
1755 break;
1756 case PAGE_MODE_5_LEVEL:
1757 free_pt_l5(root);
1758 break;
1759 case PAGE_MODE_6_LEVEL:
1760 free_pt_l6(root);
1761 break;
1762 default:
1763 BUG();
Joerg Roedelec487d12008-06-26 21:27:58 +02001764 }
Joerg Roedelec487d12008-06-26 21:27:58 +02001765}
1766
Joerg Roedelb16137b2011-11-21 16:50:23 +01001767static void free_gcr3_tbl_level1(u64 *tbl)
1768{
1769 u64 *ptr;
1770 int i;
1771
1772 for (i = 0; i < 512; ++i) {
1773 if (!(tbl[i] & GCR3_VALID))
1774 continue;
1775
1776 ptr = __va(tbl[i] & PAGE_MASK);
1777
1778 free_page((unsigned long)ptr);
1779 }
1780}
1781
1782static void free_gcr3_tbl_level2(u64 *tbl)
1783{
1784 u64 *ptr;
1785 int i;
1786
1787 for (i = 0; i < 512; ++i) {
1788 if (!(tbl[i] & GCR3_VALID))
1789 continue;
1790
1791 ptr = __va(tbl[i] & PAGE_MASK);
1792
1793 free_gcr3_tbl_level1(ptr);
1794 }
1795}
1796
Joerg Roedel52815b72011-11-17 17:24:28 +01001797static void free_gcr3_table(struct protection_domain *domain)
1798{
Joerg Roedelb16137b2011-11-21 16:50:23 +01001799 if (domain->glx == 2)
1800 free_gcr3_tbl_level2(domain->gcr3_tbl);
1801 else if (domain->glx == 1)
1802 free_gcr3_tbl_level1(domain->gcr3_tbl);
Joerg Roedel23d3a982015-08-13 11:15:13 +02001803 else
1804 BUG_ON(domain->glx != 0);
Joerg Roedelb16137b2011-11-21 16:50:23 +01001805
Joerg Roedel52815b72011-11-17 17:24:28 +01001806 free_page((unsigned long)domain->gcr3_tbl);
1807}
1808
Joerg Roedel431b2a22008-07-11 17:14:22 +02001809/*
1810 * Free a domain, only used if something went wrong in the
1811 * allocation path and we need to free an already allocated page table
1812 */
Joerg Roedelec487d12008-06-26 21:27:58 +02001813static void dma_ops_domain_free(struct dma_ops_domain *dom)
1814{
Joerg Roedel384de722009-05-15 12:30:05 +02001815 int i;
1816
Joerg Roedelec487d12008-06-26 21:27:58 +02001817 if (!dom)
1818 return;
1819
Joerg Roedelaeb26f52009-11-20 16:44:01 +01001820 del_domain_from_list(&dom->domain);
1821
Joerg Roedel86db2e52008-12-02 18:20:21 +01001822 free_pagetable(&dom->domain);
Joerg Roedelec487d12008-06-26 21:27:58 +02001823
Joerg Roedel384de722009-05-15 12:30:05 +02001824 for (i = 0; i < APERTURE_MAX_RANGES; ++i) {
1825 if (!dom->aperture[i])
1826 continue;
1827 free_page((unsigned long)dom->aperture[i]->bitmap);
1828 kfree(dom->aperture[i]);
1829 }
Joerg Roedelec487d12008-06-26 21:27:58 +02001830
1831 kfree(dom);
1832}
1833
Joerg Roedel431b2a22008-07-11 17:14:22 +02001834/*
1835 * Allocates a new protection domain usable for the dma_ops functions.
Uwe Kleine-Königb5950762010-11-01 15:38:34 -04001836 * It also initializes the page table and the address allocator data
Joerg Roedel431b2a22008-07-11 17:14:22 +02001837 * structures required for the dma_ops interface
1838 */
Joerg Roedel87a64d52009-11-24 17:26:43 +01001839static struct dma_ops_domain *dma_ops_domain_alloc(void)
Joerg Roedelec487d12008-06-26 21:27:58 +02001840{
1841 struct dma_ops_domain *dma_dom;
Joerg Roedelec487d12008-06-26 21:27:58 +02001842
1843 dma_dom = kzalloc(sizeof(struct dma_ops_domain), GFP_KERNEL);
1844 if (!dma_dom)
1845 return NULL;
1846
Joerg Roedel7a5a5662015-06-30 08:56:11 +02001847 if (protection_domain_init(&dma_dom->domain))
Joerg Roedelec487d12008-06-26 21:27:58 +02001848 goto free_dma_dom;
Joerg Roedel7a5a5662015-06-30 08:56:11 +02001849
Joerg Roedel8f7a0172009-09-02 16:55:24 +02001850 dma_dom->domain.mode = PAGE_MODE_2_LEVEL;
Joerg Roedelec487d12008-06-26 21:27:58 +02001851 dma_dom->domain.pt_root = (void *)get_zeroed_page(GFP_KERNEL);
Joerg Roedel9fdb19d2008-12-02 17:46:25 +01001852 dma_dom->domain.flags = PD_DMA_OPS_MASK;
Joerg Roedelec487d12008-06-26 21:27:58 +02001853 dma_dom->domain.priv = dma_dom;
1854 if (!dma_dom->domain.pt_root)
1855 goto free_dma_dom;
Joerg Roedelec487d12008-06-26 21:27:58 +02001856
Joerg Roedel1c655772008-09-04 18:40:05 +02001857 dma_dom->need_flush = false;
1858
Joerg Roedelaeb26f52009-11-20 16:44:01 +01001859 add_domain_to_list(&dma_dom->domain);
1860
Joerg Roedel576175c2009-11-23 19:08:46 +01001861 if (alloc_new_range(dma_dom, true, GFP_KERNEL))
Joerg Roedelec487d12008-06-26 21:27:58 +02001862 goto free_dma_dom;
Joerg Roedelec487d12008-06-26 21:27:58 +02001863
Joerg Roedel431b2a22008-07-11 17:14:22 +02001864 /*
Joerg Roedelec487d12008-06-26 21:27:58 +02001865 * mark the first page as allocated so we never return 0 as
1866 * a valid dma-address. So we can use 0 as error value
Joerg Roedel431b2a22008-07-11 17:14:22 +02001867 */
Joerg Roedel384de722009-05-15 12:30:05 +02001868 dma_dom->aperture[0]->bitmap[0] = 1;
Joerg Roedel803b8cb42009-05-18 15:32:48 +02001869 dma_dom->next_address = 0;
Joerg Roedelec487d12008-06-26 21:27:58 +02001870
Joerg Roedelec487d12008-06-26 21:27:58 +02001871
1872 return dma_dom;
1873
1874free_dma_dom:
1875 dma_ops_domain_free(dma_dom);
1876
1877 return NULL;
1878}
1879
Joerg Roedel431b2a22008-07-11 17:14:22 +02001880/*
Joerg Roedel5b28df62008-12-02 17:49:42 +01001881 * little helper function to check whether a given protection domain is a
1882 * dma_ops domain
1883 */
1884static bool dma_ops_domain(struct protection_domain *domain)
1885{
1886 return domain->flags & PD_DMA_OPS_MASK;
1887}
1888
Joerg Roedelfd7b5532011-04-05 15:31:08 +02001889static void set_dte_entry(u16 devid, struct protection_domain *domain, bool ats)
Joerg Roedelb20ac0d2008-06-26 21:27:59 +02001890{
Joerg Roedel132bd682011-11-17 14:18:46 +01001891 u64 pte_root = 0;
Joerg Roedelee6c2862011-11-09 12:06:03 +01001892 u64 flags = 0;
Joerg Roedel863c74e2008-12-02 17:56:36 +01001893
Joerg Roedel132bd682011-11-17 14:18:46 +01001894 if (domain->mode != PAGE_MODE_NONE)
1895 pte_root = virt_to_phys(domain->pt_root);
1896
Joerg Roedel38ddf412008-09-11 10:38:32 +02001897 pte_root |= (domain->mode & DEV_ENTRY_MODE_MASK)
1898 << DEV_ENTRY_MODE_SHIFT;
1899 pte_root |= IOMMU_PTE_IR | IOMMU_PTE_IW | IOMMU_PTE_P | IOMMU_PTE_TV;
Joerg Roedelb20ac0d2008-06-26 21:27:59 +02001900
Joerg Roedelee6c2862011-11-09 12:06:03 +01001901 flags = amd_iommu_dev_table[devid].data[1];
1902
Joerg Roedelfd7b5532011-04-05 15:31:08 +02001903 if (ats)
1904 flags |= DTE_FLAG_IOTLB;
1905
Joerg Roedel52815b72011-11-17 17:24:28 +01001906 if (domain->flags & PD_IOMMUV2_MASK) {
1907 u64 gcr3 = __pa(domain->gcr3_tbl);
1908 u64 glx = domain->glx;
1909 u64 tmp;
1910
1911 pte_root |= DTE_FLAG_GV;
1912 pte_root |= (glx & DTE_GLX_MASK) << DTE_GLX_SHIFT;
1913
1914 /* First mask out possible old values for GCR3 table */
1915 tmp = DTE_GCR3_VAL_B(~0ULL) << DTE_GCR3_SHIFT_B;
1916 flags &= ~tmp;
1917
1918 tmp = DTE_GCR3_VAL_C(~0ULL) << DTE_GCR3_SHIFT_C;
1919 flags &= ~tmp;
1920
1921 /* Encode GCR3 table into DTE */
1922 tmp = DTE_GCR3_VAL_A(gcr3) << DTE_GCR3_SHIFT_A;
1923 pte_root |= tmp;
1924
1925 tmp = DTE_GCR3_VAL_B(gcr3) << DTE_GCR3_SHIFT_B;
1926 flags |= tmp;
1927
1928 tmp = DTE_GCR3_VAL_C(gcr3) << DTE_GCR3_SHIFT_C;
1929 flags |= tmp;
1930 }
1931
Joerg Roedelee6c2862011-11-09 12:06:03 +01001932 flags &= ~(0xffffUL);
1933 flags |= domain->id;
1934
1935 amd_iommu_dev_table[devid].data[1] = flags;
1936 amd_iommu_dev_table[devid].data[0] = pte_root;
Joerg Roedelb20ac0d2008-06-26 21:27:59 +02001937}
1938
Joerg Roedel15898bb2009-11-24 15:39:42 +01001939static void clear_dte_entry(u16 devid)
Joerg Roedel355bf552008-12-08 12:02:41 +01001940{
Joerg Roedel355bf552008-12-08 12:02:41 +01001941 /* remove entry from the device table seen by the hardware */
Joerg Roedelcbf3ccd2015-10-20 14:59:36 +02001942 amd_iommu_dev_table[devid].data[0] = IOMMU_PTE_P | IOMMU_PTE_TV;
1943 amd_iommu_dev_table[devid].data[1] &= DTE_FLAG_MASK;
Joerg Roedel355bf552008-12-08 12:02:41 +01001944
Joerg Roedelc5cca142009-10-09 18:31:20 +02001945 amd_iommu_apply_erratum_63(devid);
Joerg Roedel7f760dd2009-11-26 14:49:59 +01001946}
1947
Joerg Roedelec9e79e2011-06-09 17:25:50 +02001948static void do_attach(struct iommu_dev_data *dev_data,
1949 struct protection_domain *domain)
Joerg Roedel7f760dd2009-11-26 14:49:59 +01001950{
Joerg Roedel7f760dd2009-11-26 14:49:59 +01001951 struct amd_iommu *iommu;
Joerg Roedele25bfb52015-10-20 17:33:38 +02001952 u16 alias;
Joerg Roedelec9e79e2011-06-09 17:25:50 +02001953 bool ats;
Joerg Roedel7f760dd2009-11-26 14:49:59 +01001954
Joerg Roedelec9e79e2011-06-09 17:25:50 +02001955 iommu = amd_iommu_rlookup_table[dev_data->devid];
Joerg Roedele25bfb52015-10-20 17:33:38 +02001956 alias = amd_iommu_alias_table[dev_data->devid];
Joerg Roedelec9e79e2011-06-09 17:25:50 +02001957 ats = dev_data->ats.enabled;
Joerg Roedel7f760dd2009-11-26 14:49:59 +01001958
1959 /* Update data structures */
1960 dev_data->domain = domain;
1961 list_add(&dev_data->list, &domain->dev_list);
Joerg Roedel7f760dd2009-11-26 14:49:59 +01001962
1963 /* Do reference counting */
1964 domain->dev_iommu[iommu->index] += 1;
1965 domain->dev_cnt += 1;
1966
Joerg Roedele25bfb52015-10-20 17:33:38 +02001967 /* Update device table */
1968 set_dte_entry(dev_data->devid, domain, ats);
1969 if (alias != dev_data->devid)
1970 set_dte_entry(dev_data->devid, domain, ats);
1971
Joerg Roedel6c542042011-06-09 17:07:31 +02001972 device_flush_dte(dev_data);
Joerg Roedel7f760dd2009-11-26 14:49:59 +01001973}
1974
Joerg Roedelec9e79e2011-06-09 17:25:50 +02001975static void do_detach(struct iommu_dev_data *dev_data)
Joerg Roedel7f760dd2009-11-26 14:49:59 +01001976{
Joerg Roedel7f760dd2009-11-26 14:49:59 +01001977 struct amd_iommu *iommu;
Joerg Roedele25bfb52015-10-20 17:33:38 +02001978 u16 alias;
Joerg Roedel7f760dd2009-11-26 14:49:59 +01001979
Joerg Roedel5adad992015-10-09 16:23:33 +02001980 /*
1981 * First check if the device is still attached. It might already
1982 * be detached from its domain because the generic
1983 * iommu_detach_group code detached it and we try again here in
1984 * our alias handling.
1985 */
1986 if (!dev_data->domain)
1987 return;
1988
Joerg Roedelec9e79e2011-06-09 17:25:50 +02001989 iommu = amd_iommu_rlookup_table[dev_data->devid];
Joerg Roedele25bfb52015-10-20 17:33:38 +02001990 alias = amd_iommu_alias_table[dev_data->devid];
Joerg Roedelc5cca142009-10-09 18:31:20 +02001991
Joerg Roedelc4596112009-11-20 14:57:32 +01001992 /* decrease reference counters */
Joerg Roedel7f760dd2009-11-26 14:49:59 +01001993 dev_data->domain->dev_iommu[iommu->index] -= 1;
1994 dev_data->domain->dev_cnt -= 1;
Joerg Roedel355bf552008-12-08 12:02:41 +01001995
Joerg Roedel7f760dd2009-11-26 14:49:59 +01001996 /* Update data structures */
1997 dev_data->domain = NULL;
1998 list_del(&dev_data->list);
Joerg Roedelf62dda62011-06-09 12:55:35 +02001999 clear_dte_entry(dev_data->devid);
Joerg Roedele25bfb52015-10-20 17:33:38 +02002000 if (alias != dev_data->devid)
2001 clear_dte_entry(alias);
Joerg Roedel7f760dd2009-11-26 14:49:59 +01002002
2003 /* Flush the DTE entry */
Joerg Roedel6c542042011-06-09 17:07:31 +02002004 device_flush_dte(dev_data);
Joerg Roedel15898bb2009-11-24 15:39:42 +01002005}
2006
2007/*
2008 * If a device is not yet associated with a domain, this function does
2009 * assigns it visible for the hardware
2010 */
Joerg Roedelec9e79e2011-06-09 17:25:50 +02002011static int __attach_device(struct iommu_dev_data *dev_data,
Joerg Roedel15898bb2009-11-24 15:39:42 +01002012 struct protection_domain *domain)
2013{
Julia Lawall84fe6c12010-05-27 12:31:51 +02002014 int ret;
Joerg Roedel657cbb62009-11-23 15:26:46 +01002015
Joerg Roedel272e4f92015-10-20 17:33:37 +02002016 /*
2017 * Must be called with IRQs disabled. Warn here to detect early
2018 * when its not.
2019 */
2020 WARN_ON(!irqs_disabled());
2021
Joerg Roedel15898bb2009-11-24 15:39:42 +01002022 /* lock domain */
2023 spin_lock(&domain->lock);
2024
Joerg Roedel397111a2014-08-05 17:31:51 +02002025 ret = -EBUSY;
Joerg Roedel150952f2015-10-20 17:33:35 +02002026 if (dev_data->domain != NULL)
Joerg Roedel397111a2014-08-05 17:31:51 +02002027 goto out_unlock;
Joerg Roedel24100052009-11-25 15:59:57 +01002028
Joerg Roedel397111a2014-08-05 17:31:51 +02002029 /* Attach alias group root */
Joerg Roedel150952f2015-10-20 17:33:35 +02002030 do_attach(dev_data, domain);
Joerg Roedel24100052009-11-25 15:59:57 +01002031
Julia Lawall84fe6c12010-05-27 12:31:51 +02002032 ret = 0;
2033
2034out_unlock:
2035
Joerg Roedel355bf552008-12-08 12:02:41 +01002036 /* ready */
2037 spin_unlock(&domain->lock);
Joerg Roedel21129f72009-09-01 11:59:42 +02002038
Julia Lawall84fe6c12010-05-27 12:31:51 +02002039 return ret;
Joerg Roedel15898bb2009-11-24 15:39:42 +01002040}
2041
Joerg Roedel52815b72011-11-17 17:24:28 +01002042
2043static void pdev_iommuv2_disable(struct pci_dev *pdev)
2044{
2045 pci_disable_ats(pdev);
2046 pci_disable_pri(pdev);
2047 pci_disable_pasid(pdev);
2048}
2049
Joerg Roedel6a113dd2011-12-01 12:04:58 +01002050/* FIXME: Change generic reset-function to do the same */
2051static int pri_reset_while_enabled(struct pci_dev *pdev)
2052{
2053 u16 control;
2054 int pos;
2055
Joerg Roedel46277b72011-12-07 14:34:02 +01002056 pos = pci_find_ext_capability(pdev, PCI_EXT_CAP_ID_PRI);
Joerg Roedel6a113dd2011-12-01 12:04:58 +01002057 if (!pos)
2058 return -EINVAL;
2059
Joerg Roedel46277b72011-12-07 14:34:02 +01002060 pci_read_config_word(pdev, pos + PCI_PRI_CTRL, &control);
2061 control |= PCI_PRI_CTRL_RESET;
2062 pci_write_config_word(pdev, pos + PCI_PRI_CTRL, control);
Joerg Roedel6a113dd2011-12-01 12:04:58 +01002063
2064 return 0;
2065}
2066
Joerg Roedel52815b72011-11-17 17:24:28 +01002067static int pdev_iommuv2_enable(struct pci_dev *pdev)
2068{
Joerg Roedel6a113dd2011-12-01 12:04:58 +01002069 bool reset_enable;
2070 int reqs, ret;
2071
2072 /* FIXME: Hardcode number of outstanding requests for now */
2073 reqs = 32;
2074 if (pdev_pri_erratum(pdev, AMD_PRI_DEV_ERRATUM_LIMIT_REQ_ONE))
2075 reqs = 1;
2076 reset_enable = pdev_pri_erratum(pdev, AMD_PRI_DEV_ERRATUM_ENABLE_RESET);
Joerg Roedel52815b72011-11-17 17:24:28 +01002077
2078 /* Only allow access to user-accessible pages */
2079 ret = pci_enable_pasid(pdev, 0);
2080 if (ret)
2081 goto out_err;
2082
2083 /* First reset the PRI state of the device */
2084 ret = pci_reset_pri(pdev);
2085 if (ret)
2086 goto out_err;
2087
Joerg Roedel6a113dd2011-12-01 12:04:58 +01002088 /* Enable PRI */
2089 ret = pci_enable_pri(pdev, reqs);
Joerg Roedel52815b72011-11-17 17:24:28 +01002090 if (ret)
2091 goto out_err;
2092
Joerg Roedel6a113dd2011-12-01 12:04:58 +01002093 if (reset_enable) {
2094 ret = pri_reset_while_enabled(pdev);
2095 if (ret)
2096 goto out_err;
2097 }
2098
Joerg Roedel52815b72011-11-17 17:24:28 +01002099 ret = pci_enable_ats(pdev, PAGE_SHIFT);
2100 if (ret)
2101 goto out_err;
2102
2103 return 0;
2104
2105out_err:
2106 pci_disable_pri(pdev);
2107 pci_disable_pasid(pdev);
2108
2109 return ret;
2110}
2111
Joerg Roedelc99afa22011-11-21 18:19:25 +01002112/* FIXME: Move this to PCI code */
Joerg Roedela3b93122012-04-12 12:49:26 +02002113#define PCI_PRI_TLP_OFF (1 << 15)
Joerg Roedelc99afa22011-11-21 18:19:25 +01002114
Joerg Roedel98f1ad22012-07-06 13:28:37 +02002115static bool pci_pri_tlp_required(struct pci_dev *pdev)
Joerg Roedelc99afa22011-11-21 18:19:25 +01002116{
Joerg Roedela3b93122012-04-12 12:49:26 +02002117 u16 status;
Joerg Roedelc99afa22011-11-21 18:19:25 +01002118 int pos;
2119
Joerg Roedel46277b72011-12-07 14:34:02 +01002120 pos = pci_find_ext_capability(pdev, PCI_EXT_CAP_ID_PRI);
Joerg Roedelc99afa22011-11-21 18:19:25 +01002121 if (!pos)
2122 return false;
2123
Joerg Roedela3b93122012-04-12 12:49:26 +02002124 pci_read_config_word(pdev, pos + PCI_PRI_STATUS, &status);
Joerg Roedelc99afa22011-11-21 18:19:25 +01002125
Joerg Roedela3b93122012-04-12 12:49:26 +02002126 return (status & PCI_PRI_TLP_OFF) ? true : false;
Joerg Roedelc99afa22011-11-21 18:19:25 +01002127}
2128
Joerg Roedel15898bb2009-11-24 15:39:42 +01002129/*
Frank Arnolddf805ab2012-08-27 19:21:04 +02002130 * If a device is not yet associated with a domain, this function
Joerg Roedel15898bb2009-11-24 15:39:42 +01002131 * assigns it visible for the hardware
2132 */
2133static int attach_device(struct device *dev,
2134 struct protection_domain *domain)
2135{
Joerg Roedelfd7b5532011-04-05 15:31:08 +02002136 struct pci_dev *pdev = to_pci_dev(dev);
Joerg Roedelea61cdd2011-06-09 12:56:30 +02002137 struct iommu_dev_data *dev_data;
Joerg Roedel15898bb2009-11-24 15:39:42 +01002138 unsigned long flags;
2139 int ret;
2140
Joerg Roedelea61cdd2011-06-09 12:56:30 +02002141 dev_data = get_dev_data(dev);
2142
Joerg Roedel52815b72011-11-17 17:24:28 +01002143 if (domain->flags & PD_IOMMUV2_MASK) {
Joerg Roedel02ca2022015-07-28 16:58:49 +02002144 if (!dev_data->passthrough)
Joerg Roedel52815b72011-11-17 17:24:28 +01002145 return -EINVAL;
2146
Joerg Roedel02ca2022015-07-28 16:58:49 +02002147 if (dev_data->iommu_v2) {
2148 if (pdev_iommuv2_enable(pdev) != 0)
2149 return -EINVAL;
Joerg Roedel52815b72011-11-17 17:24:28 +01002150
Joerg Roedel02ca2022015-07-28 16:58:49 +02002151 dev_data->ats.enabled = true;
2152 dev_data->ats.qdep = pci_ats_queue_depth(pdev);
2153 dev_data->pri_tlp = pci_pri_tlp_required(pdev);
2154 }
Joerg Roedel52815b72011-11-17 17:24:28 +01002155 } else if (amd_iommu_iotlb_sup &&
2156 pci_enable_ats(pdev, PAGE_SHIFT) == 0) {
Joerg Roedelea61cdd2011-06-09 12:56:30 +02002157 dev_data->ats.enabled = true;
2158 dev_data->ats.qdep = pci_ats_queue_depth(pdev);
2159 }
Joerg Roedelfd7b5532011-04-05 15:31:08 +02002160
Joerg Roedel15898bb2009-11-24 15:39:42 +01002161 write_lock_irqsave(&amd_iommu_devtable_lock, flags);
Joerg Roedelec9e79e2011-06-09 17:25:50 +02002162 ret = __attach_device(dev_data, domain);
Joerg Roedel15898bb2009-11-24 15:39:42 +01002163 write_unlock_irqrestore(&amd_iommu_devtable_lock, flags);
2164
2165 /*
2166 * We might boot into a crash-kernel here. The crashed kernel
2167 * left the caches in the IOMMU dirty. So we have to flush
2168 * here to evict all dirty stuff.
2169 */
Joerg Roedel17b124b2011-04-06 18:01:35 +02002170 domain_flush_tlb_pde(domain);
Joerg Roedel15898bb2009-11-24 15:39:42 +01002171
2172 return ret;
2173}
2174
2175/*
2176 * Removes a device from a protection domain (unlocked)
2177 */
Joerg Roedelec9e79e2011-06-09 17:25:50 +02002178static void __detach_device(struct iommu_dev_data *dev_data)
Joerg Roedel15898bb2009-11-24 15:39:42 +01002179{
Joerg Roedel2ca76272010-01-22 16:45:31 +01002180 struct protection_domain *domain;
Joerg Roedel15898bb2009-11-24 15:39:42 +01002181
Joerg Roedel272e4f92015-10-20 17:33:37 +02002182 /*
2183 * Must be called with IRQs disabled. Warn here to detect early
2184 * when its not.
2185 */
2186 WARN_ON(!irqs_disabled());
2187
Joerg Roedelf34c73f2015-10-20 17:33:34 +02002188 if (WARN_ON(!dev_data->domain))
2189 return;
Joerg Roedel15898bb2009-11-24 15:39:42 +01002190
Joerg Roedel2ca76272010-01-22 16:45:31 +01002191 domain = dev_data->domain;
2192
Joerg Roedelf1dd0a82015-10-20 17:33:36 +02002193 spin_lock(&domain->lock);
Joerg Roedel24100052009-11-25 15:59:57 +01002194
Joerg Roedel150952f2015-10-20 17:33:35 +02002195 do_detach(dev_data);
Joerg Roedel71f77582011-06-09 19:03:15 +02002196
Joerg Roedelf1dd0a82015-10-20 17:33:36 +02002197 spin_unlock(&domain->lock);
Joerg Roedel355bf552008-12-08 12:02:41 +01002198}
2199
2200/*
2201 * Removes a device from a protection domain (with devtable_lock held)
2202 */
Joerg Roedel15898bb2009-11-24 15:39:42 +01002203static void detach_device(struct device *dev)
Joerg Roedel355bf552008-12-08 12:02:41 +01002204{
Joerg Roedel52815b72011-11-17 17:24:28 +01002205 struct protection_domain *domain;
Joerg Roedelea61cdd2011-06-09 12:56:30 +02002206 struct iommu_dev_data *dev_data;
Joerg Roedel355bf552008-12-08 12:02:41 +01002207 unsigned long flags;
2208
Joerg Roedelec9e79e2011-06-09 17:25:50 +02002209 dev_data = get_dev_data(dev);
Joerg Roedel52815b72011-11-17 17:24:28 +01002210 domain = dev_data->domain;
Joerg Roedelec9e79e2011-06-09 17:25:50 +02002211
Joerg Roedel355bf552008-12-08 12:02:41 +01002212 /* lock device table */
2213 write_lock_irqsave(&amd_iommu_devtable_lock, flags);
Joerg Roedelec9e79e2011-06-09 17:25:50 +02002214 __detach_device(dev_data);
Joerg Roedel355bf552008-12-08 12:02:41 +01002215 write_unlock_irqrestore(&amd_iommu_devtable_lock, flags);
Joerg Roedelfd7b5532011-04-05 15:31:08 +02002216
Joerg Roedel02ca2022015-07-28 16:58:49 +02002217 if (domain->flags & PD_IOMMUV2_MASK && dev_data->iommu_v2)
Joerg Roedel52815b72011-11-17 17:24:28 +01002218 pdev_iommuv2_disable(to_pci_dev(dev));
2219 else if (dev_data->ats.enabled)
Joerg Roedelea61cdd2011-06-09 12:56:30 +02002220 pci_disable_ats(to_pci_dev(dev));
Joerg Roedel52815b72011-11-17 17:24:28 +01002221
2222 dev_data->ats.enabled = false;
Joerg Roedel355bf552008-12-08 12:02:41 +01002223}
Joerg Roedele275a2a2008-12-10 18:27:25 +01002224
Joerg Roedelaafd8ba2015-05-28 18:41:39 +02002225static int amd_iommu_add_device(struct device *dev)
Joerg Roedel15898bb2009-11-24 15:39:42 +01002226{
Joerg Roedel71f77582011-06-09 19:03:15 +02002227 struct iommu_dev_data *dev_data;
Joerg Roedel07ee8692015-05-28 18:41:42 +02002228 struct iommu_domain *domain;
Joerg Roedele275a2a2008-12-10 18:27:25 +01002229 struct amd_iommu *iommu;
Joerg Roedel5abcdba2011-12-01 15:49:45 +01002230 u16 devid;
Joerg Roedelaafd8ba2015-05-28 18:41:39 +02002231 int ret;
Joerg Roedele275a2a2008-12-10 18:27:25 +01002232
Joerg Roedelaafd8ba2015-05-28 18:41:39 +02002233 if (!check_device(dev) || get_dev_data(dev))
Joerg Roedel98fc5a62009-11-24 17:19:23 +01002234 return 0;
Joerg Roedele275a2a2008-12-10 18:27:25 +01002235
Joerg Roedelaafd8ba2015-05-28 18:41:39 +02002236 devid = get_device_id(dev);
2237 iommu = amd_iommu_rlookup_table[devid];
Joerg Roedele275a2a2008-12-10 18:27:25 +01002238
Joerg Roedelaafd8ba2015-05-28 18:41:39 +02002239 ret = iommu_init_device(dev);
Joerg Roedel4d58b8a2015-06-11 09:21:39 +02002240 if (ret) {
2241 if (ret != -ENOTSUPP)
2242 pr_err("Failed to initialize device %s - trying to proceed anyway\n",
2243 dev_name(dev));
Joerg Roedel657cbb62009-11-23 15:26:46 +01002244
Joerg Roedelaafd8ba2015-05-28 18:41:39 +02002245 iommu_ignore_device(dev);
Joerg Roedel343e9ca2015-05-28 18:41:43 +02002246 dev->archdata.dma_ops = &nommu_dma_ops;
Joerg Roedele275a2a2008-12-10 18:27:25 +01002247 goto out;
2248 }
Joerg Roedelaafd8ba2015-05-28 18:41:39 +02002249 init_iommu_group(dev);
Joerg Roedele275a2a2008-12-10 18:27:25 +01002250
Joerg Roedel07ee8692015-05-28 18:41:42 +02002251 dev_data = get_dev_data(dev);
Joerg Roedel4d58b8a2015-06-11 09:21:39 +02002252
2253 BUG_ON(!dev_data);
2254
Joerg Roedel1e6a7b02015-07-28 16:58:48 +02002255 if (iommu_pass_through || dev_data->iommu_v2)
Joerg Roedel07ee8692015-05-28 18:41:42 +02002256 iommu_request_dm_for_dev(dev);
2257
2258 /* Domains are initialized for this device - have a look what we ended up with */
2259 domain = iommu_get_domain_for_dev(dev);
Joerg Roedel32302322015-07-28 16:58:50 +02002260 if (domain->type == IOMMU_DOMAIN_IDENTITY)
Joerg Roedel07ee8692015-05-28 18:41:42 +02002261 dev_data->passthrough = true;
Joerg Roedel32302322015-07-28 16:58:50 +02002262 else
Joerg Roedel07ee8692015-05-28 18:41:42 +02002263 dev->archdata.dma_ops = &amd_iommu_dma_ops;
Joerg Roedele275a2a2008-12-10 18:27:25 +01002264
2265out:
Joerg Roedelaafd8ba2015-05-28 18:41:39 +02002266 iommu_completion_wait(iommu);
2267
Joerg Roedele275a2a2008-12-10 18:27:25 +01002268 return 0;
2269}
2270
Joerg Roedelaafd8ba2015-05-28 18:41:39 +02002271static void amd_iommu_remove_device(struct device *dev)
Joerg Roedel8638c492009-12-10 11:12:25 +01002272{
Joerg Roedelaafd8ba2015-05-28 18:41:39 +02002273 struct amd_iommu *iommu;
2274 u16 devid;
2275
2276 if (!check_device(dev))
2277 return;
2278
2279 devid = get_device_id(dev);
2280 iommu = amd_iommu_rlookup_table[devid];
2281
2282 iommu_uninit_device(dev);
2283 iommu_completion_wait(iommu);
Joerg Roedel8638c492009-12-10 11:12:25 +01002284}
2285
Joerg Roedel431b2a22008-07-11 17:14:22 +02002286/*****************************************************************************
2287 *
2288 * The next functions belong to the dma_ops mapping/unmapping code.
2289 *
2290 *****************************************************************************/
2291
2292/*
2293 * In the dma_ops path we only have the struct device. This function
2294 * finds the corresponding IOMMU, the protection domain and the
2295 * requestor id for a given device.
2296 * If the device is not yet associated with a domain this is also done
2297 * in this function.
2298 */
Joerg Roedel94f6d192009-11-24 16:40:02 +01002299static struct protection_domain *get_domain(struct device *dev)
Joerg Roedelb20ac0d2008-06-26 21:27:59 +02002300{
Joerg Roedel94f6d192009-11-24 16:40:02 +01002301 struct protection_domain *domain;
Joerg Roedel063071d2015-05-28 18:41:38 +02002302 struct iommu_domain *io_domain;
Joerg Roedelb20ac0d2008-06-26 21:27:59 +02002303
Joerg Roedelf99c0f12009-11-23 16:52:56 +01002304 if (!check_device(dev))
Joerg Roedel94f6d192009-11-24 16:40:02 +01002305 return ERR_PTR(-EINVAL);
Joerg Roedeldbcc1122008-09-04 15:04:26 +02002306
Joerg Roedel063071d2015-05-28 18:41:38 +02002307 io_domain = iommu_get_domain_for_dev(dev);
Joerg Roedel0bb6e242015-05-28 18:41:40 +02002308 if (!io_domain)
2309 return NULL;
Joerg Roedel063071d2015-05-28 18:41:38 +02002310
Joerg Roedel0bb6e242015-05-28 18:41:40 +02002311 domain = to_pdomain(io_domain);
2312 if (!dma_ops_domain(domain))
Joerg Roedel94f6d192009-11-24 16:40:02 +01002313 return ERR_PTR(-EBUSY);
Joerg Roedelf99c0f12009-11-23 16:52:56 +01002314
Joerg Roedel0bb6e242015-05-28 18:41:40 +02002315 return domain;
Joerg Roedelb20ac0d2008-06-26 21:27:59 +02002316}
2317
Joerg Roedel04bfdd82009-09-02 16:00:23 +02002318static void update_device_table(struct protection_domain *domain)
2319{
Joerg Roedel492667d2009-11-27 13:25:47 +01002320 struct iommu_dev_data *dev_data;
Joerg Roedel04bfdd82009-09-02 16:00:23 +02002321
Joerg Roedelea61cdd2011-06-09 12:56:30 +02002322 list_for_each_entry(dev_data, &domain->dev_list, list)
2323 set_dte_entry(dev_data->devid, domain, dev_data->ats.enabled);
Joerg Roedel04bfdd82009-09-02 16:00:23 +02002324}
2325
2326static void update_domain(struct protection_domain *domain)
2327{
2328 if (!domain->updated)
2329 return;
2330
2331 update_device_table(domain);
Joerg Roedel17b124b2011-04-06 18:01:35 +02002332
2333 domain_flush_devices(domain);
2334 domain_flush_tlb_pde(domain);
Joerg Roedel04bfdd82009-09-02 16:00:23 +02002335
2336 domain->updated = false;
2337}
2338
Joerg Roedel431b2a22008-07-11 17:14:22 +02002339/*
Joerg Roedel8bda3092009-05-12 12:02:46 +02002340 * This function fetches the PTE for a given address in the aperture
2341 */
2342static u64* dma_ops_get_pte(struct dma_ops_domain *dom,
2343 unsigned long address)
2344{
Joerg Roedel384de722009-05-15 12:30:05 +02002345 struct aperture_range *aperture;
Joerg Roedel8bda3092009-05-12 12:02:46 +02002346 u64 *pte, *pte_page;
2347
Joerg Roedel384de722009-05-15 12:30:05 +02002348 aperture = dom->aperture[APERTURE_RANGE_INDEX(address)];
2349 if (!aperture)
2350 return NULL;
2351
2352 pte = aperture->pte_pages[APERTURE_PAGE_INDEX(address)];
Joerg Roedel8bda3092009-05-12 12:02:46 +02002353 if (!pte) {
Joerg Roedelcbb9d722010-01-15 14:41:15 +01002354 pte = alloc_pte(&dom->domain, address, PAGE_SIZE, &pte_page,
Joerg Roedelabdc5eb2009-09-03 11:33:51 +02002355 GFP_ATOMIC);
Joerg Roedel384de722009-05-15 12:30:05 +02002356 aperture->pte_pages[APERTURE_PAGE_INDEX(address)] = pte_page;
2357 } else
Joerg Roedel8c8c1432009-09-02 17:30:00 +02002358 pte += PM_LEVEL_INDEX(0, address);
Joerg Roedel8bda3092009-05-12 12:02:46 +02002359
Joerg Roedel04bfdd82009-09-02 16:00:23 +02002360 update_domain(&dom->domain);
Joerg Roedel8bda3092009-05-12 12:02:46 +02002361
2362 return pte;
2363}
2364
2365/*
Joerg Roedel431b2a22008-07-11 17:14:22 +02002366 * This is the generic map function. It maps one 4kb page at paddr to
2367 * the given address in the DMA address space for the domain.
2368 */
Joerg Roedel680525e2009-11-23 18:44:42 +01002369static dma_addr_t dma_ops_domain_map(struct dma_ops_domain *dom,
Joerg Roedelcb76c322008-06-26 21:28:00 +02002370 unsigned long address,
2371 phys_addr_t paddr,
2372 int direction)
2373{
2374 u64 *pte, __pte;
2375
2376 WARN_ON(address > dom->aperture_size);
2377
2378 paddr &= PAGE_MASK;
2379
Joerg Roedel8bda3092009-05-12 12:02:46 +02002380 pte = dma_ops_get_pte(dom, address);
Joerg Roedel53812c12009-05-12 12:17:38 +02002381 if (!pte)
FUJITA Tomonori8fd524b2009-11-15 21:19:53 +09002382 return DMA_ERROR_CODE;
Joerg Roedelcb76c322008-06-26 21:28:00 +02002383
2384 __pte = paddr | IOMMU_PTE_P | IOMMU_PTE_FC;
2385
2386 if (direction == DMA_TO_DEVICE)
2387 __pte |= IOMMU_PTE_IR;
2388 else if (direction == DMA_FROM_DEVICE)
2389 __pte |= IOMMU_PTE_IW;
2390 else if (direction == DMA_BIDIRECTIONAL)
2391 __pte |= IOMMU_PTE_IR | IOMMU_PTE_IW;
2392
Joerg Roedela7fb6682015-12-21 12:50:54 +01002393 WARN_ON_ONCE(*pte);
Joerg Roedelcb76c322008-06-26 21:28:00 +02002394
2395 *pte = __pte;
2396
2397 return (dma_addr_t)address;
2398}
2399
Joerg Roedel431b2a22008-07-11 17:14:22 +02002400/*
2401 * The generic unmapping function for on page in the DMA address space.
2402 */
Joerg Roedel680525e2009-11-23 18:44:42 +01002403static void dma_ops_domain_unmap(struct dma_ops_domain *dom,
Joerg Roedelcb76c322008-06-26 21:28:00 +02002404 unsigned long address)
2405{
Joerg Roedel384de722009-05-15 12:30:05 +02002406 struct aperture_range *aperture;
Joerg Roedelcb76c322008-06-26 21:28:00 +02002407 u64 *pte;
2408
2409 if (address >= dom->aperture_size)
2410 return;
2411
Joerg Roedel384de722009-05-15 12:30:05 +02002412 aperture = dom->aperture[APERTURE_RANGE_INDEX(address)];
2413 if (!aperture)
2414 return;
Joerg Roedelcb76c322008-06-26 21:28:00 +02002415
Joerg Roedel384de722009-05-15 12:30:05 +02002416 pte = aperture->pte_pages[APERTURE_PAGE_INDEX(address)];
2417 if (!pte)
2418 return;
2419
Joerg Roedel8c8c1432009-09-02 17:30:00 +02002420 pte += PM_LEVEL_INDEX(0, address);
Joerg Roedelcb76c322008-06-26 21:28:00 +02002421
Joerg Roedela7fb6682015-12-21 12:50:54 +01002422 WARN_ON_ONCE(!*pte);
Joerg Roedelcb76c322008-06-26 21:28:00 +02002423
2424 *pte = 0ULL;
2425}
2426
Joerg Roedel431b2a22008-07-11 17:14:22 +02002427/*
2428 * This function contains common code for mapping of a physically
Joerg Roedel24f81162008-12-08 14:25:39 +01002429 * contiguous memory region into DMA address space. It is used by all
2430 * mapping functions provided with this IOMMU driver.
Joerg Roedel431b2a22008-07-11 17:14:22 +02002431 * Must be called with the domain lock held.
2432 */
Joerg Roedelcb76c322008-06-26 21:28:00 +02002433static dma_addr_t __map_single(struct device *dev,
Joerg Roedelcb76c322008-06-26 21:28:00 +02002434 struct dma_ops_domain *dma_dom,
2435 phys_addr_t paddr,
2436 size_t size,
Joerg Roedel6d4f3432008-09-04 19:18:02 +02002437 int dir,
Joerg Roedel832a90c2008-09-18 15:54:23 +02002438 bool align,
2439 u64 dma_mask)
Joerg Roedelcb76c322008-06-26 21:28:00 +02002440{
2441 dma_addr_t offset = paddr & ~PAGE_MASK;
Joerg Roedel53812c12009-05-12 12:17:38 +02002442 dma_addr_t address, start, ret;
Joerg Roedelcb76c322008-06-26 21:28:00 +02002443 unsigned int pages;
Joerg Roedel6d4f3432008-09-04 19:18:02 +02002444 unsigned long align_mask = 0;
Joerg Roedelcb76c322008-06-26 21:28:00 +02002445 int i;
2446
Joerg Roedele3c449f2008-10-15 22:02:11 -07002447 pages = iommu_num_pages(paddr, size, PAGE_SIZE);
Joerg Roedelcb76c322008-06-26 21:28:00 +02002448 paddr &= PAGE_MASK;
2449
Joerg Roedel8ecaf8f2008-12-12 16:13:04 +01002450 INC_STATS_COUNTER(total_map_requests);
2451
Joerg Roedelc1858972008-12-12 15:42:39 +01002452 if (pages > 1)
2453 INC_STATS_COUNTER(cross_page);
2454
Joerg Roedel6d4f3432008-09-04 19:18:02 +02002455 if (align)
2456 align_mask = (1UL << get_order(size)) - 1;
2457
Joerg Roedel11b83882009-05-19 10:23:15 +02002458retry:
Joerg Roedel832a90c2008-09-18 15:54:23 +02002459 address = dma_ops_alloc_addresses(dev, dma_dom, pages, align_mask,
2460 dma_mask);
FUJITA Tomonori8fd524b2009-11-15 21:19:53 +09002461 if (unlikely(address == DMA_ERROR_CODE)) {
Joerg Roedel11b83882009-05-19 10:23:15 +02002462 /*
2463 * setting next_address here will let the address
2464 * allocator only scan the new allocated range in the
2465 * first run. This is a small optimization.
2466 */
2467 dma_dom->next_address = dma_dom->aperture_size;
2468
Joerg Roedel576175c2009-11-23 19:08:46 +01002469 if (alloc_new_range(dma_dom, false, GFP_ATOMIC))
Joerg Roedel11b83882009-05-19 10:23:15 +02002470 goto out;
2471
2472 /*
André Goddard Rosaaf901ca2009-11-14 13:09:05 -02002473 * aperture was successfully enlarged by 128 MB, try
Joerg Roedel11b83882009-05-19 10:23:15 +02002474 * allocation again
2475 */
2476 goto retry;
2477 }
Joerg Roedelcb76c322008-06-26 21:28:00 +02002478
2479 start = address;
2480 for (i = 0; i < pages; ++i) {
Joerg Roedel680525e2009-11-23 18:44:42 +01002481 ret = dma_ops_domain_map(dma_dom, start, paddr, dir);
FUJITA Tomonori8fd524b2009-11-15 21:19:53 +09002482 if (ret == DMA_ERROR_CODE)
Joerg Roedel53812c12009-05-12 12:17:38 +02002483 goto out_unmap;
2484
Joerg Roedelcb76c322008-06-26 21:28:00 +02002485 paddr += PAGE_SIZE;
2486 start += PAGE_SIZE;
2487 }
2488 address += offset;
2489
Joerg Roedel5774f7c2008-12-12 15:57:30 +01002490 ADD_STATS_COUNTER(alloced_io_mem, size);
2491
FUJITA Tomonoriafa9fdc2008-09-20 01:23:30 +09002492 if (unlikely(dma_dom->need_flush && !amd_iommu_unmap_flush)) {
Joerg Roedel17b124b2011-04-06 18:01:35 +02002493 domain_flush_tlb(&dma_dom->domain);
Joerg Roedel1c655772008-09-04 18:40:05 +02002494 dma_dom->need_flush = false;
Joerg Roedel318afd42009-11-23 18:32:38 +01002495 } else if (unlikely(amd_iommu_np_cache))
Joerg Roedel17b124b2011-04-06 18:01:35 +02002496 domain_flush_pages(&dma_dom->domain, address, size);
Joerg Roedel270cab242008-09-04 15:49:46 +02002497
Joerg Roedelcb76c322008-06-26 21:28:00 +02002498out:
2499 return address;
Joerg Roedel53812c12009-05-12 12:17:38 +02002500
2501out_unmap:
2502
2503 for (--i; i >= 0; --i) {
2504 start -= PAGE_SIZE;
Joerg Roedel680525e2009-11-23 18:44:42 +01002505 dma_ops_domain_unmap(dma_dom, start);
Joerg Roedel53812c12009-05-12 12:17:38 +02002506 }
2507
Joerg Roedel53b3b652015-12-21 13:14:52 +01002508 domain_flush_pages(&dma_dom->domain, address, size);
2509
Joerg Roedel53812c12009-05-12 12:17:38 +02002510 dma_ops_free_addresses(dma_dom, address, pages);
2511
FUJITA Tomonori8fd524b2009-11-15 21:19:53 +09002512 return DMA_ERROR_CODE;
Joerg Roedelcb76c322008-06-26 21:28:00 +02002513}
2514
Joerg Roedel431b2a22008-07-11 17:14:22 +02002515/*
2516 * Does the reverse of the __map_single function. Must be called with
2517 * the domain lock held too
2518 */
Joerg Roedelcd8c82e2009-11-23 19:33:56 +01002519static void __unmap_single(struct dma_ops_domain *dma_dom,
Joerg Roedelcb76c322008-06-26 21:28:00 +02002520 dma_addr_t dma_addr,
2521 size_t size,
2522 int dir)
2523{
Joerg Roedel04e04632010-09-23 16:12:48 +02002524 dma_addr_t flush_addr;
Joerg Roedelcb76c322008-06-26 21:28:00 +02002525 dma_addr_t i, start;
2526 unsigned int pages;
2527
FUJITA Tomonori8fd524b2009-11-15 21:19:53 +09002528 if ((dma_addr == DMA_ERROR_CODE) ||
Joerg Roedelb8d99052008-12-08 14:40:26 +01002529 (dma_addr + size > dma_dom->aperture_size))
Joerg Roedelcb76c322008-06-26 21:28:00 +02002530 return;
2531
Joerg Roedel04e04632010-09-23 16:12:48 +02002532 flush_addr = dma_addr;
Joerg Roedele3c449f2008-10-15 22:02:11 -07002533 pages = iommu_num_pages(dma_addr, size, PAGE_SIZE);
Joerg Roedelcb76c322008-06-26 21:28:00 +02002534 dma_addr &= PAGE_MASK;
2535 start = dma_addr;
2536
2537 for (i = 0; i < pages; ++i) {
Joerg Roedel680525e2009-11-23 18:44:42 +01002538 dma_ops_domain_unmap(dma_dom, start);
Joerg Roedelcb76c322008-06-26 21:28:00 +02002539 start += PAGE_SIZE;
2540 }
2541
Joerg Roedel80be3082008-11-06 14:59:05 +01002542 if (amd_iommu_unmap_flush || dma_dom->need_flush) {
Joerg Roedel17b124b2011-04-06 18:01:35 +02002543 domain_flush_pages(&dma_dom->domain, flush_addr, size);
Joerg Roedel80be3082008-11-06 14:59:05 +01002544 dma_dom->need_flush = false;
2545 }
Joerg Roedel84b3a0b2015-12-21 13:23:59 +01002546
2547 SUB_STATS_COUNTER(alloced_io_mem, size);
2548
2549 dma_ops_free_addresses(dma_dom, dma_addr, pages);
Joerg Roedelcb76c322008-06-26 21:28:00 +02002550}
2551
Joerg Roedel431b2a22008-07-11 17:14:22 +02002552/*
2553 * The exported map_single function for dma_ops.
2554 */
FUJITA Tomonori51491362009-01-05 23:47:25 +09002555static dma_addr_t map_page(struct device *dev, struct page *page,
2556 unsigned long offset, size_t size,
2557 enum dma_data_direction dir,
2558 struct dma_attrs *attrs)
Joerg Roedel4da70b92008-06-26 21:28:01 +02002559{
2560 unsigned long flags;
Joerg Roedel4da70b92008-06-26 21:28:01 +02002561 struct protection_domain *domain;
Joerg Roedel4da70b92008-06-26 21:28:01 +02002562 dma_addr_t addr;
Joerg Roedel832a90c2008-09-18 15:54:23 +02002563 u64 dma_mask;
FUJITA Tomonori51491362009-01-05 23:47:25 +09002564 phys_addr_t paddr = page_to_phys(page) + offset;
Joerg Roedel4da70b92008-06-26 21:28:01 +02002565
Joerg Roedel0f2a86f2008-12-12 15:05:16 +01002566 INC_STATS_COUNTER(cnt_map_single);
2567
Joerg Roedel94f6d192009-11-24 16:40:02 +01002568 domain = get_domain(dev);
2569 if (PTR_ERR(domain) == -EINVAL)
Joerg Roedel4da70b92008-06-26 21:28:01 +02002570 return (dma_addr_t)paddr;
Joerg Roedel94f6d192009-11-24 16:40:02 +01002571 else if (IS_ERR(domain))
2572 return DMA_ERROR_CODE;
Joerg Roedel4da70b92008-06-26 21:28:01 +02002573
Joerg Roedelf99c0f12009-11-23 16:52:56 +01002574 dma_mask = *dev->dma_mask;
2575
Joerg Roedel4da70b92008-06-26 21:28:01 +02002576 spin_lock_irqsave(&domain->lock, flags);
Joerg Roedel94f6d192009-11-24 16:40:02 +01002577
Joerg Roedelcd8c82e2009-11-23 19:33:56 +01002578 addr = __map_single(dev, domain->priv, paddr, size, dir, false,
Joerg Roedel832a90c2008-09-18 15:54:23 +02002579 dma_mask);
FUJITA Tomonori8fd524b2009-11-15 21:19:53 +09002580 if (addr == DMA_ERROR_CODE)
Joerg Roedel4da70b92008-06-26 21:28:01 +02002581 goto out;
2582
Joerg Roedel17b124b2011-04-06 18:01:35 +02002583 domain_flush_complete(domain);
Joerg Roedel4da70b92008-06-26 21:28:01 +02002584
2585out:
2586 spin_unlock_irqrestore(&domain->lock, flags);
2587
2588 return addr;
2589}
2590
Joerg Roedel431b2a22008-07-11 17:14:22 +02002591/*
2592 * The exported unmap_single function for dma_ops.
2593 */
FUJITA Tomonori51491362009-01-05 23:47:25 +09002594static void unmap_page(struct device *dev, dma_addr_t dma_addr, size_t size,
2595 enum dma_data_direction dir, struct dma_attrs *attrs)
Joerg Roedel4da70b92008-06-26 21:28:01 +02002596{
2597 unsigned long flags;
Joerg Roedel4da70b92008-06-26 21:28:01 +02002598 struct protection_domain *domain;
Joerg Roedel4da70b92008-06-26 21:28:01 +02002599
Joerg Roedel146a6912008-12-12 15:07:12 +01002600 INC_STATS_COUNTER(cnt_unmap_single);
2601
Joerg Roedel94f6d192009-11-24 16:40:02 +01002602 domain = get_domain(dev);
2603 if (IS_ERR(domain))
Joerg Roedel5b28df62008-12-02 17:49:42 +01002604 return;
2605
Joerg Roedel4da70b92008-06-26 21:28:01 +02002606 spin_lock_irqsave(&domain->lock, flags);
2607
Joerg Roedelcd8c82e2009-11-23 19:33:56 +01002608 __unmap_single(domain->priv, dma_addr, size, dir);
Joerg Roedel4da70b92008-06-26 21:28:01 +02002609
Joerg Roedel17b124b2011-04-06 18:01:35 +02002610 domain_flush_complete(domain);
Joerg Roedel4da70b92008-06-26 21:28:01 +02002611
2612 spin_unlock_irqrestore(&domain->lock, flags);
2613}
2614
Joerg Roedel431b2a22008-07-11 17:14:22 +02002615/*
Joerg Roedel431b2a22008-07-11 17:14:22 +02002616 * The exported map_sg function for dma_ops (handles scatter-gather
2617 * lists).
2618 */
Joerg Roedel65b050a2008-06-26 21:28:02 +02002619static int map_sg(struct device *dev, struct scatterlist *sglist,
FUJITA Tomonori160c1d82009-01-05 23:59:02 +09002620 int nelems, enum dma_data_direction dir,
2621 struct dma_attrs *attrs)
Joerg Roedel65b050a2008-06-26 21:28:02 +02002622{
2623 unsigned long flags;
Joerg Roedel65b050a2008-06-26 21:28:02 +02002624 struct protection_domain *domain;
Joerg Roedel65b050a2008-06-26 21:28:02 +02002625 int i;
2626 struct scatterlist *s;
2627 phys_addr_t paddr;
2628 int mapped_elems = 0;
Joerg Roedel832a90c2008-09-18 15:54:23 +02002629 u64 dma_mask;
Joerg Roedel65b050a2008-06-26 21:28:02 +02002630
Joerg Roedeld03f0672008-12-12 15:09:48 +01002631 INC_STATS_COUNTER(cnt_map_sg);
2632
Joerg Roedel94f6d192009-11-24 16:40:02 +01002633 domain = get_domain(dev);
Joerg Roedela0e191b2013-04-09 15:04:36 +02002634 if (IS_ERR(domain))
Joerg Roedel94f6d192009-11-24 16:40:02 +01002635 return 0;
Joerg Roedeldbcc1122008-09-04 15:04:26 +02002636
Joerg Roedel832a90c2008-09-18 15:54:23 +02002637 dma_mask = *dev->dma_mask;
Joerg Roedel65b050a2008-06-26 21:28:02 +02002638
Joerg Roedel65b050a2008-06-26 21:28:02 +02002639 spin_lock_irqsave(&domain->lock, flags);
2640
2641 for_each_sg(sglist, s, nelems, i) {
2642 paddr = sg_phys(s);
2643
Joerg Roedelcd8c82e2009-11-23 19:33:56 +01002644 s->dma_address = __map_single(dev, domain->priv,
Joerg Roedel832a90c2008-09-18 15:54:23 +02002645 paddr, s->length, dir, false,
2646 dma_mask);
Joerg Roedel65b050a2008-06-26 21:28:02 +02002647
2648 if (s->dma_address) {
2649 s->dma_length = s->length;
2650 mapped_elems++;
2651 } else
2652 goto unmap;
Joerg Roedel65b050a2008-06-26 21:28:02 +02002653 }
2654
Joerg Roedel17b124b2011-04-06 18:01:35 +02002655 domain_flush_complete(domain);
Joerg Roedel65b050a2008-06-26 21:28:02 +02002656
2657out:
2658 spin_unlock_irqrestore(&domain->lock, flags);
2659
2660 return mapped_elems;
2661unmap:
2662 for_each_sg(sglist, s, mapped_elems, i) {
2663 if (s->dma_address)
Joerg Roedelcd8c82e2009-11-23 19:33:56 +01002664 __unmap_single(domain->priv, s->dma_address,
Joerg Roedel65b050a2008-06-26 21:28:02 +02002665 s->dma_length, dir);
2666 s->dma_address = s->dma_length = 0;
2667 }
2668
2669 mapped_elems = 0;
2670
2671 goto out;
2672}
2673
Joerg Roedel431b2a22008-07-11 17:14:22 +02002674/*
2675 * The exported map_sg function for dma_ops (handles scatter-gather
2676 * lists).
2677 */
Joerg Roedel65b050a2008-06-26 21:28:02 +02002678static void unmap_sg(struct device *dev, struct scatterlist *sglist,
FUJITA Tomonori160c1d82009-01-05 23:59:02 +09002679 int nelems, enum dma_data_direction dir,
2680 struct dma_attrs *attrs)
Joerg Roedel65b050a2008-06-26 21:28:02 +02002681{
2682 unsigned long flags;
Joerg Roedel65b050a2008-06-26 21:28:02 +02002683 struct protection_domain *domain;
2684 struct scatterlist *s;
Joerg Roedel65b050a2008-06-26 21:28:02 +02002685 int i;
2686
Joerg Roedel55877a62008-12-12 15:12:14 +01002687 INC_STATS_COUNTER(cnt_unmap_sg);
2688
Joerg Roedel94f6d192009-11-24 16:40:02 +01002689 domain = get_domain(dev);
2690 if (IS_ERR(domain))
Joerg Roedel5b28df62008-12-02 17:49:42 +01002691 return;
2692
Joerg Roedel65b050a2008-06-26 21:28:02 +02002693 spin_lock_irqsave(&domain->lock, flags);
2694
2695 for_each_sg(sglist, s, nelems, i) {
Joerg Roedelcd8c82e2009-11-23 19:33:56 +01002696 __unmap_single(domain->priv, s->dma_address,
Joerg Roedel65b050a2008-06-26 21:28:02 +02002697 s->dma_length, dir);
Joerg Roedel65b050a2008-06-26 21:28:02 +02002698 s->dma_address = s->dma_length = 0;
2699 }
2700
Joerg Roedel17b124b2011-04-06 18:01:35 +02002701 domain_flush_complete(domain);
Joerg Roedel65b050a2008-06-26 21:28:02 +02002702
2703 spin_unlock_irqrestore(&domain->lock, flags);
2704}
2705
Joerg Roedel431b2a22008-07-11 17:14:22 +02002706/*
2707 * The exported alloc_coherent function for dma_ops.
2708 */
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002709static void *alloc_coherent(struct device *dev, size_t size,
Andrzej Pietrasiewiczbaa676f2012-03-27 14:28:18 +02002710 dma_addr_t *dma_addr, gfp_t flag,
2711 struct dma_attrs *attrs)
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002712{
Joerg Roedel832a90c2008-09-18 15:54:23 +02002713 u64 dma_mask = dev->coherent_dma_mask;
Joerg Roedel3b839a52015-04-01 14:58:47 +02002714 struct protection_domain *domain;
2715 unsigned long flags;
2716 struct page *page;
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002717
Joerg Roedelc8f0fb32008-12-12 15:14:21 +01002718 INC_STATS_COUNTER(cnt_alloc_coherent);
2719
Joerg Roedel94f6d192009-11-24 16:40:02 +01002720 domain = get_domain(dev);
2721 if (PTR_ERR(domain) == -EINVAL) {
Joerg Roedel3b839a52015-04-01 14:58:47 +02002722 page = alloc_pages(flag, get_order(size));
2723 *dma_addr = page_to_phys(page);
2724 return page_address(page);
Joerg Roedel94f6d192009-11-24 16:40:02 +01002725 } else if (IS_ERR(domain))
2726 return NULL;
Joerg Roedeldbcc1122008-09-04 15:04:26 +02002727
Joerg Roedel3b839a52015-04-01 14:58:47 +02002728 size = PAGE_ALIGN(size);
Joerg Roedelf99c0f12009-11-23 16:52:56 +01002729 dma_mask = dev->coherent_dma_mask;
2730 flag &= ~(__GFP_DMA | __GFP_HIGHMEM | __GFP_DMA32);
Joerg Roedel2d0ec7a2015-06-01 17:30:57 +02002731 flag |= __GFP_ZERO;
FUJITA Tomonori13d9fea2008-09-10 20:19:40 +09002732
Joerg Roedel3b839a52015-04-01 14:58:47 +02002733 page = alloc_pages(flag | __GFP_NOWARN, get_order(size));
2734 if (!page) {
Mel Gormand0164ad2015-11-06 16:28:21 -08002735 if (!gfpflags_allow_blocking(flag))
Joerg Roedel3b839a52015-04-01 14:58:47 +02002736 return NULL;
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002737
Joerg Roedel3b839a52015-04-01 14:58:47 +02002738 page = dma_alloc_from_contiguous(dev, size >> PAGE_SHIFT,
2739 get_order(size));
2740 if (!page)
2741 return NULL;
2742 }
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002743
Joerg Roedel832a90c2008-09-18 15:54:23 +02002744 if (!dma_mask)
2745 dma_mask = *dev->dma_mask;
2746
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002747 spin_lock_irqsave(&domain->lock, flags);
2748
Joerg Roedel3b839a52015-04-01 14:58:47 +02002749 *dma_addr = __map_single(dev, domain->priv, page_to_phys(page),
Joerg Roedel832a90c2008-09-18 15:54:23 +02002750 size, DMA_BIDIRECTIONAL, true, dma_mask);
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002751
FUJITA Tomonori8fd524b2009-11-15 21:19:53 +09002752 if (*dma_addr == DMA_ERROR_CODE) {
Jiri Slaby367d04c2009-05-28 09:54:48 +02002753 spin_unlock_irqrestore(&domain->lock, flags);
Joerg Roedel5b28df62008-12-02 17:49:42 +01002754 goto out_free;
Jiri Slaby367d04c2009-05-28 09:54:48 +02002755 }
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002756
Joerg Roedel17b124b2011-04-06 18:01:35 +02002757 domain_flush_complete(domain);
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002758
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002759 spin_unlock_irqrestore(&domain->lock, flags);
2760
Joerg Roedel3b839a52015-04-01 14:58:47 +02002761 return page_address(page);
Joerg Roedel5b28df62008-12-02 17:49:42 +01002762
2763out_free:
2764
Joerg Roedel3b839a52015-04-01 14:58:47 +02002765 if (!dma_release_from_contiguous(dev, page, size >> PAGE_SHIFT))
2766 __free_pages(page, get_order(size));
Joerg Roedel5b28df62008-12-02 17:49:42 +01002767
2768 return NULL;
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002769}
2770
Joerg Roedel431b2a22008-07-11 17:14:22 +02002771/*
2772 * The exported free_coherent function for dma_ops.
Joerg Roedel431b2a22008-07-11 17:14:22 +02002773 */
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002774static void free_coherent(struct device *dev, size_t size,
Andrzej Pietrasiewiczbaa676f2012-03-27 14:28:18 +02002775 void *virt_addr, dma_addr_t dma_addr,
2776 struct dma_attrs *attrs)
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002777{
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002778 struct protection_domain *domain;
Joerg Roedel3b839a52015-04-01 14:58:47 +02002779 unsigned long flags;
2780 struct page *page;
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002781
Joerg Roedel5d31ee72008-12-12 15:16:38 +01002782 INC_STATS_COUNTER(cnt_free_coherent);
2783
Joerg Roedel3b839a52015-04-01 14:58:47 +02002784 page = virt_to_page(virt_addr);
2785 size = PAGE_ALIGN(size);
2786
Joerg Roedel94f6d192009-11-24 16:40:02 +01002787 domain = get_domain(dev);
2788 if (IS_ERR(domain))
Joerg Roedel5b28df62008-12-02 17:49:42 +01002789 goto free_mem;
2790
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002791 spin_lock_irqsave(&domain->lock, flags);
2792
Joerg Roedelcd8c82e2009-11-23 19:33:56 +01002793 __unmap_single(domain->priv, dma_addr, size, DMA_BIDIRECTIONAL);
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002794
Joerg Roedel17b124b2011-04-06 18:01:35 +02002795 domain_flush_complete(domain);
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002796
2797 spin_unlock_irqrestore(&domain->lock, flags);
2798
2799free_mem:
Joerg Roedel3b839a52015-04-01 14:58:47 +02002800 if (!dma_release_from_contiguous(dev, page, size >> PAGE_SHIFT))
2801 __free_pages(page, get_order(size));
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002802}
2803
Joerg Roedelc432f3d2008-06-26 21:28:04 +02002804/*
Joerg Roedelb39ba6a2008-09-09 18:40:46 +02002805 * This function is called by the DMA layer to find out if we can handle a
2806 * particular device. It is part of the dma_ops.
2807 */
2808static int amd_iommu_dma_supported(struct device *dev, u64 mask)
2809{
Joerg Roedel420aef82009-11-23 16:14:57 +01002810 return check_device(dev);
Joerg Roedelb39ba6a2008-09-09 18:40:46 +02002811}
2812
FUJITA Tomonori160c1d82009-01-05 23:59:02 +09002813static struct dma_map_ops amd_iommu_dma_ops = {
Andrzej Pietrasiewiczbaa676f2012-03-27 14:28:18 +02002814 .alloc = alloc_coherent,
2815 .free = free_coherent,
FUJITA Tomonori51491362009-01-05 23:47:25 +09002816 .map_page = map_page,
2817 .unmap_page = unmap_page,
Joerg Roedel6631ee92008-06-26 21:28:05 +02002818 .map_sg = map_sg,
2819 .unmap_sg = unmap_sg,
Joerg Roedelb39ba6a2008-09-09 18:40:46 +02002820 .dma_supported = amd_iommu_dma_supported,
Joerg Roedel6631ee92008-06-26 21:28:05 +02002821};
2822
Joerg Roedel3a18404c2015-05-28 18:41:45 +02002823int __init amd_iommu_init_api(void)
Joerg Roedel27c21272011-05-30 15:56:24 +02002824{
Joerg Roedel3a18404c2015-05-28 18:41:45 +02002825 return bus_set_iommu(&pci_bus_type, &amd_iommu_ops);
Joerg Roedelf5325092010-01-22 17:44:35 +01002826}
2827
Joerg Roedel6631ee92008-06-26 21:28:05 +02002828int __init amd_iommu_init_dma_ops(void)
2829{
Joerg Roedel32302322015-07-28 16:58:50 +02002830 swiotlb = iommu_pass_through ? 1 : 0;
Joerg Roedel6631ee92008-06-26 21:28:05 +02002831 iommu_detected = 1;
Joerg Roedel6631ee92008-06-26 21:28:05 +02002832
Joerg Roedel52717822015-07-28 16:58:51 +02002833 /*
2834 * In case we don't initialize SWIOTLB (actually the common case
2835 * when AMD IOMMU is enabled), make sure there are global
2836 * dma_ops set as a fall-back for devices not handled by this
2837 * driver (for example non-PCI devices).
2838 */
2839 if (!swiotlb)
2840 dma_ops = &nommu_dma_ops;
2841
Joerg Roedel7f265082008-12-12 13:50:21 +01002842 amd_iommu_stats_init();
2843
Joerg Roedel62410ee2012-06-12 16:42:43 +02002844 if (amd_iommu_unmap_flush)
2845 pr_info("AMD-Vi: IO/TLB flush on unmap enabled\n");
2846 else
2847 pr_info("AMD-Vi: Lazy IO/TLB flushing enabled\n");
2848
Joerg Roedel6631ee92008-06-26 21:28:05 +02002849 return 0;
Joerg Roedel6631ee92008-06-26 21:28:05 +02002850}
Joerg Roedel6d98cd82008-12-08 12:05:55 +01002851
2852/*****************************************************************************
2853 *
2854 * The following functions belong to the exported interface of AMD IOMMU
2855 *
2856 * This interface allows access to lower level functions of the IOMMU
2857 * like protection domain handling and assignement of devices to domains
2858 * which is not possible with the dma_ops interface.
2859 *
2860 *****************************************************************************/
2861
Joerg Roedel6d98cd82008-12-08 12:05:55 +01002862static void cleanup_domain(struct protection_domain *domain)
2863{
Joerg Roedel9b29d3c2014-08-05 17:50:15 +02002864 struct iommu_dev_data *entry;
Joerg Roedel6d98cd82008-12-08 12:05:55 +01002865 unsigned long flags;
Joerg Roedel6d98cd82008-12-08 12:05:55 +01002866
2867 write_lock_irqsave(&amd_iommu_devtable_lock, flags);
2868
Joerg Roedel9b29d3c2014-08-05 17:50:15 +02002869 while (!list_empty(&domain->dev_list)) {
2870 entry = list_first_entry(&domain->dev_list,
2871 struct iommu_dev_data, list);
2872 __detach_device(entry);
Joerg Roedel492667d2009-11-27 13:25:47 +01002873 }
Joerg Roedel6d98cd82008-12-08 12:05:55 +01002874
2875 write_unlock_irqrestore(&amd_iommu_devtable_lock, flags);
2876}
2877
Joerg Roedel26508152009-08-26 16:52:40 +02002878static void protection_domain_free(struct protection_domain *domain)
2879{
2880 if (!domain)
2881 return;
2882
Joerg Roedelaeb26f52009-11-20 16:44:01 +01002883 del_domain_from_list(domain);
2884
Joerg Roedel26508152009-08-26 16:52:40 +02002885 if (domain->id)
2886 domain_id_free(domain->id);
2887
2888 kfree(domain);
2889}
2890
Joerg Roedel7a5a5662015-06-30 08:56:11 +02002891static int protection_domain_init(struct protection_domain *domain)
2892{
2893 spin_lock_init(&domain->lock);
2894 mutex_init(&domain->api_lock);
2895 domain->id = domain_id_alloc();
2896 if (!domain->id)
2897 return -ENOMEM;
2898 INIT_LIST_HEAD(&domain->dev_list);
2899
2900 return 0;
2901}
2902
Joerg Roedel26508152009-08-26 16:52:40 +02002903static struct protection_domain *protection_domain_alloc(void)
Joerg Roedelc156e342008-12-02 18:13:27 +01002904{
2905 struct protection_domain *domain;
2906
2907 domain = kzalloc(sizeof(*domain), GFP_KERNEL);
2908 if (!domain)
Joerg Roedel26508152009-08-26 16:52:40 +02002909 return NULL;
Joerg Roedelc156e342008-12-02 18:13:27 +01002910
Joerg Roedel7a5a5662015-06-30 08:56:11 +02002911 if (protection_domain_init(domain))
Joerg Roedel26508152009-08-26 16:52:40 +02002912 goto out_err;
2913
Joerg Roedelaeb26f52009-11-20 16:44:01 +01002914 add_domain_to_list(domain);
2915
Joerg Roedel26508152009-08-26 16:52:40 +02002916 return domain;
2917
2918out_err:
2919 kfree(domain);
2920
2921 return NULL;
2922}
2923
Joerg Roedel3f4b87b2015-03-26 13:43:07 +01002924static struct iommu_domain *amd_iommu_domain_alloc(unsigned type)
2925{
2926 struct protection_domain *pdomain;
Joerg Roedel0bb6e242015-05-28 18:41:40 +02002927 struct dma_ops_domain *dma_domain;
Joerg Roedel3f4b87b2015-03-26 13:43:07 +01002928
Joerg Roedel0bb6e242015-05-28 18:41:40 +02002929 switch (type) {
2930 case IOMMU_DOMAIN_UNMANAGED:
2931 pdomain = protection_domain_alloc();
2932 if (!pdomain)
2933 return NULL;
2934
2935 pdomain->mode = PAGE_MODE_3_LEVEL;
2936 pdomain->pt_root = (void *)get_zeroed_page(GFP_KERNEL);
2937 if (!pdomain->pt_root) {
2938 protection_domain_free(pdomain);
2939 return NULL;
2940 }
2941
2942 pdomain->domain.geometry.aperture_start = 0;
2943 pdomain->domain.geometry.aperture_end = ~0ULL;
2944 pdomain->domain.geometry.force_aperture = true;
2945
2946 break;
2947 case IOMMU_DOMAIN_DMA:
2948 dma_domain = dma_ops_domain_alloc();
2949 if (!dma_domain) {
2950 pr_err("AMD-Vi: Failed to allocate\n");
2951 return NULL;
2952 }
2953 pdomain = &dma_domain->domain;
2954 break;
Joerg Roedel07f643a2015-05-28 18:41:41 +02002955 case IOMMU_DOMAIN_IDENTITY:
2956 pdomain = protection_domain_alloc();
2957 if (!pdomain)
2958 return NULL;
2959
2960 pdomain->mode = PAGE_MODE_NONE;
2961 break;
Joerg Roedel0bb6e242015-05-28 18:41:40 +02002962 default:
Joerg Roedel3f4b87b2015-03-26 13:43:07 +01002963 return NULL;
Joerg Roedel0bb6e242015-05-28 18:41:40 +02002964 }
Joerg Roedel3f4b87b2015-03-26 13:43:07 +01002965
2966 return &pdomain->domain;
Joerg Roedel3f4b87b2015-03-26 13:43:07 +01002967}
2968
2969static void amd_iommu_domain_free(struct iommu_domain *dom)
Joerg Roedel26508152009-08-26 16:52:40 +02002970{
2971 struct protection_domain *domain;
2972
Joerg Roedel3f4b87b2015-03-26 13:43:07 +01002973 if (!dom)
Joerg Roedel98383fc2008-12-02 18:34:12 +01002974 return;
2975
Joerg Roedel3f4b87b2015-03-26 13:43:07 +01002976 domain = to_pdomain(dom);
2977
Joerg Roedel98383fc2008-12-02 18:34:12 +01002978 if (domain->dev_cnt > 0)
2979 cleanup_domain(domain);
2980
2981 BUG_ON(domain->dev_cnt != 0);
2982
Joerg Roedel132bd682011-11-17 14:18:46 +01002983 if (domain->mode != PAGE_MODE_NONE)
2984 free_pagetable(domain);
Joerg Roedel98383fc2008-12-02 18:34:12 +01002985
Joerg Roedel52815b72011-11-17 17:24:28 +01002986 if (domain->flags & PD_IOMMUV2_MASK)
2987 free_gcr3_table(domain);
2988
Joerg Roedel8b408fe2010-03-08 14:20:07 +01002989 protection_domain_free(domain);
Joerg Roedel98383fc2008-12-02 18:34:12 +01002990}
2991
Joerg Roedel684f2882008-12-08 12:07:44 +01002992static void amd_iommu_detach_device(struct iommu_domain *dom,
2993 struct device *dev)
2994{
Joerg Roedel657cbb62009-11-23 15:26:46 +01002995 struct iommu_dev_data *dev_data = dev->archdata.iommu;
Joerg Roedel684f2882008-12-08 12:07:44 +01002996 struct amd_iommu *iommu;
Joerg Roedel684f2882008-12-08 12:07:44 +01002997 u16 devid;
2998
Joerg Roedel98fc5a62009-11-24 17:19:23 +01002999 if (!check_device(dev))
Joerg Roedel684f2882008-12-08 12:07:44 +01003000 return;
3001
Joerg Roedel98fc5a62009-11-24 17:19:23 +01003002 devid = get_device_id(dev);
Joerg Roedel684f2882008-12-08 12:07:44 +01003003
Joerg Roedel657cbb62009-11-23 15:26:46 +01003004 if (dev_data->domain != NULL)
Joerg Roedel15898bb2009-11-24 15:39:42 +01003005 detach_device(dev);
Joerg Roedel684f2882008-12-08 12:07:44 +01003006
3007 iommu = amd_iommu_rlookup_table[devid];
3008 if (!iommu)
3009 return;
3010
Joerg Roedel684f2882008-12-08 12:07:44 +01003011 iommu_completion_wait(iommu);
3012}
3013
Joerg Roedel01106062008-12-02 19:34:11 +01003014static int amd_iommu_attach_device(struct iommu_domain *dom,
3015 struct device *dev)
3016{
Joerg Roedel3f4b87b2015-03-26 13:43:07 +01003017 struct protection_domain *domain = to_pdomain(dom);
Joerg Roedel657cbb62009-11-23 15:26:46 +01003018 struct iommu_dev_data *dev_data;
Joerg Roedel01106062008-12-02 19:34:11 +01003019 struct amd_iommu *iommu;
Joerg Roedel15898bb2009-11-24 15:39:42 +01003020 int ret;
Joerg Roedel01106062008-12-02 19:34:11 +01003021
Joerg Roedel98fc5a62009-11-24 17:19:23 +01003022 if (!check_device(dev))
Joerg Roedel01106062008-12-02 19:34:11 +01003023 return -EINVAL;
3024
Joerg Roedel657cbb62009-11-23 15:26:46 +01003025 dev_data = dev->archdata.iommu;
3026
Joerg Roedelf62dda62011-06-09 12:55:35 +02003027 iommu = amd_iommu_rlookup_table[dev_data->devid];
Joerg Roedel01106062008-12-02 19:34:11 +01003028 if (!iommu)
3029 return -EINVAL;
3030
Joerg Roedel657cbb62009-11-23 15:26:46 +01003031 if (dev_data->domain)
Joerg Roedel15898bb2009-11-24 15:39:42 +01003032 detach_device(dev);
Joerg Roedel01106062008-12-02 19:34:11 +01003033
Joerg Roedel15898bb2009-11-24 15:39:42 +01003034 ret = attach_device(dev, domain);
Joerg Roedel01106062008-12-02 19:34:11 +01003035
3036 iommu_completion_wait(iommu);
3037
Joerg Roedel15898bb2009-11-24 15:39:42 +01003038 return ret;
Joerg Roedel01106062008-12-02 19:34:11 +01003039}
3040
Joerg Roedel468e2362010-01-21 16:37:36 +01003041static int amd_iommu_map(struct iommu_domain *dom, unsigned long iova,
Ohad Ben-Cohen50090652011-11-10 11:32:25 +02003042 phys_addr_t paddr, size_t page_size, int iommu_prot)
Joerg Roedelc6229ca2008-12-02 19:48:43 +01003043{
Joerg Roedel3f4b87b2015-03-26 13:43:07 +01003044 struct protection_domain *domain = to_pdomain(dom);
Joerg Roedelc6229ca2008-12-02 19:48:43 +01003045 int prot = 0;
3046 int ret;
3047
Joerg Roedel132bd682011-11-17 14:18:46 +01003048 if (domain->mode == PAGE_MODE_NONE)
3049 return -EINVAL;
3050
Joerg Roedelc6229ca2008-12-02 19:48:43 +01003051 if (iommu_prot & IOMMU_READ)
3052 prot |= IOMMU_PROT_IR;
3053 if (iommu_prot & IOMMU_WRITE)
3054 prot |= IOMMU_PROT_IW;
3055
Joerg Roedel5d214fe2010-02-08 14:44:49 +01003056 mutex_lock(&domain->api_lock);
Joerg Roedel795e74f72010-05-11 17:40:57 +02003057 ret = iommu_map_page(domain, iova, paddr, prot, page_size);
Joerg Roedel5d214fe2010-02-08 14:44:49 +01003058 mutex_unlock(&domain->api_lock);
3059
Joerg Roedel795e74f72010-05-11 17:40:57 +02003060 return ret;
Joerg Roedelc6229ca2008-12-02 19:48:43 +01003061}
3062
Ohad Ben-Cohen50090652011-11-10 11:32:25 +02003063static size_t amd_iommu_unmap(struct iommu_domain *dom, unsigned long iova,
3064 size_t page_size)
Joerg Roedeleb74ff62008-12-02 19:59:10 +01003065{
Joerg Roedel3f4b87b2015-03-26 13:43:07 +01003066 struct protection_domain *domain = to_pdomain(dom);
Ohad Ben-Cohen50090652011-11-10 11:32:25 +02003067 size_t unmap_size;
Joerg Roedeleb74ff62008-12-02 19:59:10 +01003068
Joerg Roedel132bd682011-11-17 14:18:46 +01003069 if (domain->mode == PAGE_MODE_NONE)
3070 return -EINVAL;
3071
Joerg Roedel5d214fe2010-02-08 14:44:49 +01003072 mutex_lock(&domain->api_lock);
Joerg Roedel468e2362010-01-21 16:37:36 +01003073 unmap_size = iommu_unmap_page(domain, iova, page_size);
Joerg Roedel795e74f72010-05-11 17:40:57 +02003074 mutex_unlock(&domain->api_lock);
Joerg Roedeleb74ff62008-12-02 19:59:10 +01003075
Joerg Roedel17b124b2011-04-06 18:01:35 +02003076 domain_flush_tlb_pde(domain);
Joerg Roedel5d214fe2010-02-08 14:44:49 +01003077
Ohad Ben-Cohen50090652011-11-10 11:32:25 +02003078 return unmap_size;
Joerg Roedeleb74ff62008-12-02 19:59:10 +01003079}
3080
Joerg Roedel645c4c82008-12-02 20:05:50 +01003081static phys_addr_t amd_iommu_iova_to_phys(struct iommu_domain *dom,
Varun Sethibb5547a2013-03-29 01:23:58 +05303082 dma_addr_t iova)
Joerg Roedel645c4c82008-12-02 20:05:50 +01003083{
Joerg Roedel3f4b87b2015-03-26 13:43:07 +01003084 struct protection_domain *domain = to_pdomain(dom);
Joerg Roedel3039ca12015-04-01 14:58:48 +02003085 unsigned long offset_mask, pte_pgsize;
Joerg Roedelf03152b2010-01-21 16:15:24 +01003086 u64 *pte, __pte;
Joerg Roedel645c4c82008-12-02 20:05:50 +01003087
Joerg Roedel132bd682011-11-17 14:18:46 +01003088 if (domain->mode == PAGE_MODE_NONE)
3089 return iova;
3090
Joerg Roedel3039ca12015-04-01 14:58:48 +02003091 pte = fetch_pte(domain, iova, &pte_pgsize);
Joerg Roedel645c4c82008-12-02 20:05:50 +01003092
Joerg Roedela6d41a42009-09-02 17:08:55 +02003093 if (!pte || !IOMMU_PTE_PRESENT(*pte))
Joerg Roedel645c4c82008-12-02 20:05:50 +01003094 return 0;
3095
Joerg Roedelb24b1b62015-04-01 14:58:51 +02003096 offset_mask = pte_pgsize - 1;
3097 __pte = *pte & PM_ADDR_MASK;
Joerg Roedelf03152b2010-01-21 16:15:24 +01003098
Joerg Roedelb24b1b62015-04-01 14:58:51 +02003099 return (__pte & ~offset_mask) | (iova & offset_mask);
Joerg Roedel645c4c82008-12-02 20:05:50 +01003100}
3101
Joerg Roedelab636482014-09-05 10:48:21 +02003102static bool amd_iommu_capable(enum iommu_cap cap)
Sheng Yangdbb9fd82009-03-18 15:33:06 +08003103{
Joerg Roedel80a506b2010-07-27 17:14:24 +02003104 switch (cap) {
3105 case IOMMU_CAP_CACHE_COHERENCY:
Joerg Roedelab636482014-09-05 10:48:21 +02003106 return true;
Joerg Roedelbdddadc2012-07-02 18:38:13 +02003107 case IOMMU_CAP_INTR_REMAP:
Joerg Roedelab636482014-09-05 10:48:21 +02003108 return (irq_remapping_enabled == 1);
Will Deaconcfdeec22014-10-27 11:24:48 +00003109 case IOMMU_CAP_NOEXEC:
3110 return false;
Joerg Roedel80a506b2010-07-27 17:14:24 +02003111 }
3112
Joerg Roedelab636482014-09-05 10:48:21 +02003113 return false;
Sheng Yangdbb9fd82009-03-18 15:33:06 +08003114}
3115
Joerg Roedel35cf2482015-05-28 18:41:37 +02003116static void amd_iommu_get_dm_regions(struct device *dev,
3117 struct list_head *head)
3118{
3119 struct unity_map_entry *entry;
3120 u16 devid;
3121
3122 devid = get_device_id(dev);
3123
3124 list_for_each_entry(entry, &amd_iommu_unity_map, list) {
3125 struct iommu_dm_region *region;
3126
3127 if (devid < entry->devid_start || devid > entry->devid_end)
3128 continue;
3129
3130 region = kzalloc(sizeof(*region), GFP_KERNEL);
3131 if (!region) {
3132 pr_err("Out of memory allocating dm-regions for %s\n",
3133 dev_name(dev));
3134 return;
3135 }
3136
3137 region->start = entry->address_start;
3138 region->length = entry->address_end - entry->address_start;
3139 if (entry->prot & IOMMU_PROT_IR)
3140 region->prot |= IOMMU_READ;
3141 if (entry->prot & IOMMU_PROT_IW)
3142 region->prot |= IOMMU_WRITE;
3143
3144 list_add_tail(&region->list, head);
3145 }
3146}
3147
3148static void amd_iommu_put_dm_regions(struct device *dev,
3149 struct list_head *head)
3150{
3151 struct iommu_dm_region *entry, *next;
3152
3153 list_for_each_entry_safe(entry, next, head, list)
3154 kfree(entry);
3155}
3156
Thierry Redingb22f6432014-06-27 09:03:12 +02003157static const struct iommu_ops amd_iommu_ops = {
Joerg Roedelab636482014-09-05 10:48:21 +02003158 .capable = amd_iommu_capable,
Joerg Roedel3f4b87b2015-03-26 13:43:07 +01003159 .domain_alloc = amd_iommu_domain_alloc,
3160 .domain_free = amd_iommu_domain_free,
Joerg Roedel26961ef2008-12-03 17:00:17 +01003161 .attach_dev = amd_iommu_attach_device,
3162 .detach_dev = amd_iommu_detach_device,
Joerg Roedel468e2362010-01-21 16:37:36 +01003163 .map = amd_iommu_map,
3164 .unmap = amd_iommu_unmap,
Olav Haugan315786e2014-10-25 09:55:16 -07003165 .map_sg = default_iommu_map_sg,
Joerg Roedel26961ef2008-12-03 17:00:17 +01003166 .iova_to_phys = amd_iommu_iova_to_phys,
Joerg Roedelaafd8ba2015-05-28 18:41:39 +02003167 .add_device = amd_iommu_add_device,
3168 .remove_device = amd_iommu_remove_device,
Joerg Roedela960fad2015-10-21 23:51:39 +02003169 .device_group = pci_device_group,
Joerg Roedel35cf2482015-05-28 18:41:37 +02003170 .get_dm_regions = amd_iommu_get_dm_regions,
3171 .put_dm_regions = amd_iommu_put_dm_regions,
Ohad Ben-Cohenaa3de9c2011-11-10 11:32:29 +02003172 .pgsize_bitmap = AMD_IOMMU_PGSIZES,
Joerg Roedel26961ef2008-12-03 17:00:17 +01003173};
3174
Joerg Roedel0feae532009-08-26 15:26:30 +02003175/*****************************************************************************
3176 *
3177 * The next functions do a basic initialization of IOMMU for pass through
3178 * mode
3179 *
3180 * In passthrough mode the IOMMU is initialized and enabled but not used for
3181 * DMA-API translation.
3182 *
3183 *****************************************************************************/
3184
Joerg Roedel72e1dcc2011-11-10 19:13:51 +01003185/* IOMMUv2 specific functions */
3186int amd_iommu_register_ppr_notifier(struct notifier_block *nb)
3187{
3188 return atomic_notifier_chain_register(&ppr_notifier, nb);
3189}
3190EXPORT_SYMBOL(amd_iommu_register_ppr_notifier);
3191
3192int amd_iommu_unregister_ppr_notifier(struct notifier_block *nb)
3193{
3194 return atomic_notifier_chain_unregister(&ppr_notifier, nb);
3195}
3196EXPORT_SYMBOL(amd_iommu_unregister_ppr_notifier);
Joerg Roedel132bd682011-11-17 14:18:46 +01003197
3198void amd_iommu_domain_direct_map(struct iommu_domain *dom)
3199{
Joerg Roedel3f4b87b2015-03-26 13:43:07 +01003200 struct protection_domain *domain = to_pdomain(dom);
Joerg Roedel132bd682011-11-17 14:18:46 +01003201 unsigned long flags;
3202
3203 spin_lock_irqsave(&domain->lock, flags);
3204
3205 /* Update data structure */
3206 domain->mode = PAGE_MODE_NONE;
3207 domain->updated = true;
3208
3209 /* Make changes visible to IOMMUs */
3210 update_domain(domain);
3211
3212 /* Page-table is not visible to IOMMU anymore, so free it */
3213 free_pagetable(domain);
3214
3215 spin_unlock_irqrestore(&domain->lock, flags);
3216}
3217EXPORT_SYMBOL(amd_iommu_domain_direct_map);
Joerg Roedel52815b72011-11-17 17:24:28 +01003218
3219int amd_iommu_domain_enable_v2(struct iommu_domain *dom, int pasids)
3220{
Joerg Roedel3f4b87b2015-03-26 13:43:07 +01003221 struct protection_domain *domain = to_pdomain(dom);
Joerg Roedel52815b72011-11-17 17:24:28 +01003222 unsigned long flags;
3223 int levels, ret;
3224
3225 if (pasids <= 0 || pasids > (PASID_MASK + 1))
3226 return -EINVAL;
3227
3228 /* Number of GCR3 table levels required */
3229 for (levels = 0; (pasids - 1) & ~0x1ff; pasids >>= 9)
3230 levels += 1;
3231
3232 if (levels > amd_iommu_max_glx_val)
3233 return -EINVAL;
3234
3235 spin_lock_irqsave(&domain->lock, flags);
3236
3237 /*
3238 * Save us all sanity checks whether devices already in the
3239 * domain support IOMMUv2. Just force that the domain has no
3240 * devices attached when it is switched into IOMMUv2 mode.
3241 */
3242 ret = -EBUSY;
3243 if (domain->dev_cnt > 0 || domain->flags & PD_IOMMUV2_MASK)
3244 goto out;
3245
3246 ret = -ENOMEM;
3247 domain->gcr3_tbl = (void *)get_zeroed_page(GFP_ATOMIC);
3248 if (domain->gcr3_tbl == NULL)
3249 goto out;
3250
3251 domain->glx = levels;
3252 domain->flags |= PD_IOMMUV2_MASK;
3253 domain->updated = true;
3254
3255 update_domain(domain);
3256
3257 ret = 0;
3258
3259out:
3260 spin_unlock_irqrestore(&domain->lock, flags);
3261
3262 return ret;
3263}
3264EXPORT_SYMBOL(amd_iommu_domain_enable_v2);
Joerg Roedel22e266c2011-11-21 15:59:08 +01003265
3266static int __flush_pasid(struct protection_domain *domain, int pasid,
3267 u64 address, bool size)
3268{
3269 struct iommu_dev_data *dev_data;
3270 struct iommu_cmd cmd;
3271 int i, ret;
3272
3273 if (!(domain->flags & PD_IOMMUV2_MASK))
3274 return -EINVAL;
3275
3276 build_inv_iommu_pasid(&cmd, domain->id, pasid, address, size);
3277
3278 /*
3279 * IOMMU TLB needs to be flushed before Device TLB to
3280 * prevent device TLB refill from IOMMU TLB
3281 */
3282 for (i = 0; i < amd_iommus_present; ++i) {
3283 if (domain->dev_iommu[i] == 0)
3284 continue;
3285
3286 ret = iommu_queue_command(amd_iommus[i], &cmd);
3287 if (ret != 0)
3288 goto out;
3289 }
3290
3291 /* Wait until IOMMU TLB flushes are complete */
3292 domain_flush_complete(domain);
3293
3294 /* Now flush device TLBs */
3295 list_for_each_entry(dev_data, &domain->dev_list, list) {
3296 struct amd_iommu *iommu;
3297 int qdep;
3298
Joerg Roedel1c1cc452015-07-30 11:24:45 +02003299 /*
3300 There might be non-IOMMUv2 capable devices in an IOMMUv2
3301 * domain.
3302 */
3303 if (!dev_data->ats.enabled)
3304 continue;
Joerg Roedel22e266c2011-11-21 15:59:08 +01003305
3306 qdep = dev_data->ats.qdep;
3307 iommu = amd_iommu_rlookup_table[dev_data->devid];
3308
3309 build_inv_iotlb_pasid(&cmd, dev_data->devid, pasid,
3310 qdep, address, size);
3311
3312 ret = iommu_queue_command(iommu, &cmd);
3313 if (ret != 0)
3314 goto out;
3315 }
3316
3317 /* Wait until all device TLBs are flushed */
3318 domain_flush_complete(domain);
3319
3320 ret = 0;
3321
3322out:
3323
3324 return ret;
3325}
3326
3327static int __amd_iommu_flush_page(struct protection_domain *domain, int pasid,
3328 u64 address)
3329{
Joerg Roedel399be2f2011-12-01 16:53:47 +01003330 INC_STATS_COUNTER(invalidate_iotlb);
3331
Joerg Roedel22e266c2011-11-21 15:59:08 +01003332 return __flush_pasid(domain, pasid, address, false);
3333}
3334
3335int amd_iommu_flush_page(struct iommu_domain *dom, int pasid,
3336 u64 address)
3337{
Joerg Roedel3f4b87b2015-03-26 13:43:07 +01003338 struct protection_domain *domain = to_pdomain(dom);
Joerg Roedel22e266c2011-11-21 15:59:08 +01003339 unsigned long flags;
3340 int ret;
3341
3342 spin_lock_irqsave(&domain->lock, flags);
3343 ret = __amd_iommu_flush_page(domain, pasid, address);
3344 spin_unlock_irqrestore(&domain->lock, flags);
3345
3346 return ret;
3347}
3348EXPORT_SYMBOL(amd_iommu_flush_page);
3349
3350static int __amd_iommu_flush_tlb(struct protection_domain *domain, int pasid)
3351{
Joerg Roedel399be2f2011-12-01 16:53:47 +01003352 INC_STATS_COUNTER(invalidate_iotlb_all);
3353
Joerg Roedel22e266c2011-11-21 15:59:08 +01003354 return __flush_pasid(domain, pasid, CMD_INV_IOMMU_ALL_PAGES_ADDRESS,
3355 true);
3356}
3357
3358int amd_iommu_flush_tlb(struct iommu_domain *dom, int pasid)
3359{
Joerg Roedel3f4b87b2015-03-26 13:43:07 +01003360 struct protection_domain *domain = to_pdomain(dom);
Joerg Roedel22e266c2011-11-21 15:59:08 +01003361 unsigned long flags;
3362 int ret;
3363
3364 spin_lock_irqsave(&domain->lock, flags);
3365 ret = __amd_iommu_flush_tlb(domain, pasid);
3366 spin_unlock_irqrestore(&domain->lock, flags);
3367
3368 return ret;
3369}
3370EXPORT_SYMBOL(amd_iommu_flush_tlb);
3371
Joerg Roedelb16137b2011-11-21 16:50:23 +01003372static u64 *__get_gcr3_pte(u64 *root, int level, int pasid, bool alloc)
3373{
3374 int index;
3375 u64 *pte;
3376
3377 while (true) {
3378
3379 index = (pasid >> (9 * level)) & 0x1ff;
3380 pte = &root[index];
3381
3382 if (level == 0)
3383 break;
3384
3385 if (!(*pte & GCR3_VALID)) {
3386 if (!alloc)
3387 return NULL;
3388
3389 root = (void *)get_zeroed_page(GFP_ATOMIC);
3390 if (root == NULL)
3391 return NULL;
3392
3393 *pte = __pa(root) | GCR3_VALID;
3394 }
3395
3396 root = __va(*pte & PAGE_MASK);
3397
3398 level -= 1;
3399 }
3400
3401 return pte;
3402}
3403
3404static int __set_gcr3(struct protection_domain *domain, int pasid,
3405 unsigned long cr3)
3406{
3407 u64 *pte;
3408
3409 if (domain->mode != PAGE_MODE_NONE)
3410 return -EINVAL;
3411
3412 pte = __get_gcr3_pte(domain->gcr3_tbl, domain->glx, pasid, true);
3413 if (pte == NULL)
3414 return -ENOMEM;
3415
3416 *pte = (cr3 & PAGE_MASK) | GCR3_VALID;
3417
3418 return __amd_iommu_flush_tlb(domain, pasid);
3419}
3420
3421static int __clear_gcr3(struct protection_domain *domain, int pasid)
3422{
3423 u64 *pte;
3424
3425 if (domain->mode != PAGE_MODE_NONE)
3426 return -EINVAL;
3427
3428 pte = __get_gcr3_pte(domain->gcr3_tbl, domain->glx, pasid, false);
3429 if (pte == NULL)
3430 return 0;
3431
3432 *pte = 0;
3433
3434 return __amd_iommu_flush_tlb(domain, pasid);
3435}
3436
3437int amd_iommu_domain_set_gcr3(struct iommu_domain *dom, int pasid,
3438 unsigned long cr3)
3439{
Joerg Roedel3f4b87b2015-03-26 13:43:07 +01003440 struct protection_domain *domain = to_pdomain(dom);
Joerg Roedelb16137b2011-11-21 16:50:23 +01003441 unsigned long flags;
3442 int ret;
3443
3444 spin_lock_irqsave(&domain->lock, flags);
3445 ret = __set_gcr3(domain, pasid, cr3);
3446 spin_unlock_irqrestore(&domain->lock, flags);
3447
3448 return ret;
3449}
3450EXPORT_SYMBOL(amd_iommu_domain_set_gcr3);
3451
3452int amd_iommu_domain_clear_gcr3(struct iommu_domain *dom, int pasid)
3453{
Joerg Roedel3f4b87b2015-03-26 13:43:07 +01003454 struct protection_domain *domain = to_pdomain(dom);
Joerg Roedelb16137b2011-11-21 16:50:23 +01003455 unsigned long flags;
3456 int ret;
3457
3458 spin_lock_irqsave(&domain->lock, flags);
3459 ret = __clear_gcr3(domain, pasid);
3460 spin_unlock_irqrestore(&domain->lock, flags);
3461
3462 return ret;
3463}
3464EXPORT_SYMBOL(amd_iommu_domain_clear_gcr3);
Joerg Roedelc99afa22011-11-21 18:19:25 +01003465
3466int amd_iommu_complete_ppr(struct pci_dev *pdev, int pasid,
3467 int status, int tag)
3468{
3469 struct iommu_dev_data *dev_data;
3470 struct amd_iommu *iommu;
3471 struct iommu_cmd cmd;
3472
Joerg Roedel399be2f2011-12-01 16:53:47 +01003473 INC_STATS_COUNTER(complete_ppr);
3474
Joerg Roedelc99afa22011-11-21 18:19:25 +01003475 dev_data = get_dev_data(&pdev->dev);
3476 iommu = amd_iommu_rlookup_table[dev_data->devid];
3477
3478 build_complete_ppr(&cmd, dev_data->devid, pasid, status,
3479 tag, dev_data->pri_tlp);
3480
3481 return iommu_queue_command(iommu, &cmd);
3482}
3483EXPORT_SYMBOL(amd_iommu_complete_ppr);
Joerg Roedelf3572db2011-11-23 12:36:25 +01003484
3485struct iommu_domain *amd_iommu_get_v2_domain(struct pci_dev *pdev)
3486{
Joerg Roedel3f4b87b2015-03-26 13:43:07 +01003487 struct protection_domain *pdomain;
Joerg Roedelf3572db2011-11-23 12:36:25 +01003488
Joerg Roedel3f4b87b2015-03-26 13:43:07 +01003489 pdomain = get_domain(&pdev->dev);
3490 if (IS_ERR(pdomain))
Joerg Roedelf3572db2011-11-23 12:36:25 +01003491 return NULL;
3492
3493 /* Only return IOMMUv2 domains */
Joerg Roedel3f4b87b2015-03-26 13:43:07 +01003494 if (!(pdomain->flags & PD_IOMMUV2_MASK))
Joerg Roedelf3572db2011-11-23 12:36:25 +01003495 return NULL;
3496
Joerg Roedel3f4b87b2015-03-26 13:43:07 +01003497 return &pdomain->domain;
Joerg Roedelf3572db2011-11-23 12:36:25 +01003498}
3499EXPORT_SYMBOL(amd_iommu_get_v2_domain);
Joerg Roedel6a113dd2011-12-01 12:04:58 +01003500
3501void amd_iommu_enable_device_erratum(struct pci_dev *pdev, u32 erratum)
3502{
3503 struct iommu_dev_data *dev_data;
3504
3505 if (!amd_iommu_v2_supported())
3506 return;
3507
3508 dev_data = get_dev_data(&pdev->dev);
3509 dev_data->errata |= (1 << erratum);
3510}
3511EXPORT_SYMBOL(amd_iommu_enable_device_erratum);
Joerg Roedel52efdb82011-12-07 12:01:36 +01003512
3513int amd_iommu_device_info(struct pci_dev *pdev,
3514 struct amd_iommu_device_info *info)
3515{
3516 int max_pasids;
3517 int pos;
3518
3519 if (pdev == NULL || info == NULL)
3520 return -EINVAL;
3521
3522 if (!amd_iommu_v2_supported())
3523 return -EINVAL;
3524
3525 memset(info, 0, sizeof(*info));
3526
3527 pos = pci_find_ext_capability(pdev, PCI_EXT_CAP_ID_ATS);
3528 if (pos)
3529 info->flags |= AMD_IOMMU_DEVICE_FLAG_ATS_SUP;
3530
3531 pos = pci_find_ext_capability(pdev, PCI_EXT_CAP_ID_PRI);
3532 if (pos)
3533 info->flags |= AMD_IOMMU_DEVICE_FLAG_PRI_SUP;
3534
3535 pos = pci_find_ext_capability(pdev, PCI_EXT_CAP_ID_PASID);
3536 if (pos) {
3537 int features;
3538
3539 max_pasids = 1 << (9 * (amd_iommu_max_glx_val + 1));
3540 max_pasids = min(max_pasids, (1 << 20));
3541
3542 info->flags |= AMD_IOMMU_DEVICE_FLAG_PASID_SUP;
3543 info->max_pasids = min(pci_max_pasids(pdev), max_pasids);
3544
3545 features = pci_pasid_features(pdev);
3546 if (features & PCI_PASID_CAP_EXEC)
3547 info->flags |= AMD_IOMMU_DEVICE_FLAG_EXEC_SUP;
3548 if (features & PCI_PASID_CAP_PRIV)
3549 info->flags |= AMD_IOMMU_DEVICE_FLAG_PRIV_SUP;
3550 }
3551
3552 return 0;
3553}
3554EXPORT_SYMBOL(amd_iommu_device_info);
Joerg Roedel2b324502012-06-21 16:29:10 +02003555
3556#ifdef CONFIG_IRQ_REMAP
3557
3558/*****************************************************************************
3559 *
3560 * Interrupt Remapping Implementation
3561 *
3562 *****************************************************************************/
3563
3564union irte {
3565 u32 val;
3566 struct {
3567 u32 valid : 1,
3568 no_fault : 1,
3569 int_type : 3,
3570 rq_eoi : 1,
3571 dm : 1,
3572 rsvd_1 : 1,
3573 destination : 8,
3574 vector : 8,
3575 rsvd_2 : 8;
3576 } fields;
3577};
3578
Jiang Liu9c724962015-04-14 10:29:52 +08003579struct irq_2_irte {
3580 u16 devid; /* Device ID for IRTE table */
3581 u16 index; /* Index into IRTE table*/
3582};
3583
Jiang Liu7c71d302015-04-13 14:11:33 +08003584struct amd_ir_data {
3585 struct irq_2_irte irq_2_irte;
3586 union irte irte_entry;
3587 union {
3588 struct msi_msg msi_entry;
3589 };
3590};
3591
3592static struct irq_chip amd_ir_chip;
3593
Joerg Roedel2b324502012-06-21 16:29:10 +02003594#define DTE_IRQ_PHYS_ADDR_MASK (((1ULL << 45)-1) << 6)
3595#define DTE_IRQ_REMAP_INTCTL (2ULL << 60)
3596#define DTE_IRQ_TABLE_LEN (8ULL << 1)
3597#define DTE_IRQ_REMAP_ENABLE 1ULL
3598
3599static void set_dte_irq_entry(u16 devid, struct irq_remap_table *table)
3600{
3601 u64 dte;
3602
3603 dte = amd_iommu_dev_table[devid].data[2];
3604 dte &= ~DTE_IRQ_PHYS_ADDR_MASK;
3605 dte |= virt_to_phys(table->table);
3606 dte |= DTE_IRQ_REMAP_INTCTL;
3607 dte |= DTE_IRQ_TABLE_LEN;
3608 dte |= DTE_IRQ_REMAP_ENABLE;
3609
3610 amd_iommu_dev_table[devid].data[2] = dte;
3611}
3612
3613#define IRTE_ALLOCATED (~1U)
3614
3615static struct irq_remap_table *get_irq_table(u16 devid, bool ioapic)
3616{
3617 struct irq_remap_table *table = NULL;
3618 struct amd_iommu *iommu;
3619 unsigned long flags;
3620 u16 alias;
3621
3622 write_lock_irqsave(&amd_iommu_devtable_lock, flags);
3623
3624 iommu = amd_iommu_rlookup_table[devid];
3625 if (!iommu)
3626 goto out_unlock;
3627
3628 table = irq_lookup_table[devid];
3629 if (table)
3630 goto out;
3631
3632 alias = amd_iommu_alias_table[devid];
3633 table = irq_lookup_table[alias];
3634 if (table) {
3635 irq_lookup_table[devid] = table;
3636 set_dte_irq_entry(devid, table);
3637 iommu_flush_dte(iommu, devid);
3638 goto out;
3639 }
3640
3641 /* Nothing there yet, allocate new irq remapping table */
3642 table = kzalloc(sizeof(*table), GFP_ATOMIC);
3643 if (!table)
3644 goto out;
3645
Joerg Roedel197887f2013-04-09 21:14:08 +02003646 /* Initialize table spin-lock */
3647 spin_lock_init(&table->lock);
3648
Joerg Roedel2b324502012-06-21 16:29:10 +02003649 if (ioapic)
3650 /* Keep the first 32 indexes free for IOAPIC interrupts */
3651 table->min_index = 32;
3652
3653 table->table = kmem_cache_alloc(amd_iommu_irq_cache, GFP_ATOMIC);
3654 if (!table->table) {
3655 kfree(table);
Dan Carpenter821f0f62012-10-02 11:34:40 +03003656 table = NULL;
Joerg Roedel2b324502012-06-21 16:29:10 +02003657 goto out;
3658 }
3659
3660 memset(table->table, 0, MAX_IRQS_PER_TABLE * sizeof(u32));
3661
3662 if (ioapic) {
3663 int i;
3664
3665 for (i = 0; i < 32; ++i)
3666 table->table[i] = IRTE_ALLOCATED;
3667 }
3668
3669 irq_lookup_table[devid] = table;
3670 set_dte_irq_entry(devid, table);
3671 iommu_flush_dte(iommu, devid);
3672 if (devid != alias) {
3673 irq_lookup_table[alias] = table;
Alex Williamsone028a9e2014-04-22 10:08:40 -06003674 set_dte_irq_entry(alias, table);
Joerg Roedel2b324502012-06-21 16:29:10 +02003675 iommu_flush_dte(iommu, alias);
3676 }
3677
3678out:
3679 iommu_completion_wait(iommu);
3680
3681out_unlock:
3682 write_unlock_irqrestore(&amd_iommu_devtable_lock, flags);
3683
3684 return table;
3685}
3686
Jiang Liu3c3d4f92015-04-13 14:11:38 +08003687static int alloc_irq_index(u16 devid, int count)
Joerg Roedel2b324502012-06-21 16:29:10 +02003688{
3689 struct irq_remap_table *table;
3690 unsigned long flags;
3691 int index, c;
3692
3693 table = get_irq_table(devid, false);
3694 if (!table)
3695 return -ENODEV;
3696
3697 spin_lock_irqsave(&table->lock, flags);
3698
3699 /* Scan table for free entries */
3700 for (c = 0, index = table->min_index;
3701 index < MAX_IRQS_PER_TABLE;
3702 ++index) {
3703 if (table->table[index] == 0)
3704 c += 1;
3705 else
3706 c = 0;
3707
3708 if (c == count) {
Joerg Roedel2b324502012-06-21 16:29:10 +02003709 for (; c != 0; --c)
3710 table->table[index - c + 1] = IRTE_ALLOCATED;
3711
3712 index -= count - 1;
Joerg Roedel2b324502012-06-21 16:29:10 +02003713 goto out;
3714 }
3715 }
3716
3717 index = -ENOSPC;
3718
3719out:
3720 spin_unlock_irqrestore(&table->lock, flags);
3721
3722 return index;
3723}
3724
Joerg Roedel2b324502012-06-21 16:29:10 +02003725static int modify_irte(u16 devid, int index, union irte irte)
3726{
3727 struct irq_remap_table *table;
3728 struct amd_iommu *iommu;
3729 unsigned long flags;
3730
3731 iommu = amd_iommu_rlookup_table[devid];
3732 if (iommu == NULL)
3733 return -EINVAL;
3734
3735 table = get_irq_table(devid, false);
3736 if (!table)
3737 return -ENOMEM;
3738
3739 spin_lock_irqsave(&table->lock, flags);
3740 table->table[index] = irte.val;
3741 spin_unlock_irqrestore(&table->lock, flags);
3742
3743 iommu_flush_irt(iommu, devid);
3744 iommu_completion_wait(iommu);
3745
3746 return 0;
3747}
3748
3749static void free_irte(u16 devid, int index)
3750{
3751 struct irq_remap_table *table;
3752 struct amd_iommu *iommu;
3753 unsigned long flags;
3754
3755 iommu = amd_iommu_rlookup_table[devid];
3756 if (iommu == NULL)
3757 return;
3758
3759 table = get_irq_table(devid, false);
3760 if (!table)
3761 return;
3762
3763 spin_lock_irqsave(&table->lock, flags);
3764 table->table[index] = 0;
3765 spin_unlock_irqrestore(&table->lock, flags);
3766
3767 iommu_flush_irt(iommu, devid);
3768 iommu_completion_wait(iommu);
3769}
3770
Jiang Liu7c71d302015-04-13 14:11:33 +08003771static int get_devid(struct irq_alloc_info *info)
Joerg Roedel5527de72012-06-26 11:17:32 +02003772{
Jiang Liu7c71d302015-04-13 14:11:33 +08003773 int devid = -1;
Joerg Roedel5527de72012-06-26 11:17:32 +02003774
Jiang Liu7c71d302015-04-13 14:11:33 +08003775 switch (info->type) {
3776 case X86_IRQ_ALLOC_TYPE_IOAPIC:
3777 devid = get_ioapic_devid(info->ioapic_id);
3778 break;
3779 case X86_IRQ_ALLOC_TYPE_HPET:
3780 devid = get_hpet_devid(info->hpet_id);
3781 break;
3782 case X86_IRQ_ALLOC_TYPE_MSI:
3783 case X86_IRQ_ALLOC_TYPE_MSIX:
3784 devid = get_device_id(&info->msi_dev->dev);
3785 break;
3786 default:
3787 BUG_ON(1);
3788 break;
Joerg Roedel5527de72012-06-26 11:17:32 +02003789 }
3790
Jiang Liu7c71d302015-04-13 14:11:33 +08003791 return devid;
Joerg Roedel5527de72012-06-26 11:17:32 +02003792}
3793
Jiang Liu7c71d302015-04-13 14:11:33 +08003794static struct irq_domain *get_ir_irq_domain(struct irq_alloc_info *info)
Joerg Roedel5527de72012-06-26 11:17:32 +02003795{
Jiang Liu7c71d302015-04-13 14:11:33 +08003796 struct amd_iommu *iommu;
3797 int devid;
Joerg Roedel5527de72012-06-26 11:17:32 +02003798
Jiang Liu7c71d302015-04-13 14:11:33 +08003799 if (!info)
3800 return NULL;
Joerg Roedel5527de72012-06-26 11:17:32 +02003801
Jiang Liu7c71d302015-04-13 14:11:33 +08003802 devid = get_devid(info);
3803 if (devid >= 0) {
3804 iommu = amd_iommu_rlookup_table[devid];
3805 if (iommu)
3806 return iommu->ir_domain;
3807 }
Joerg Roedel5527de72012-06-26 11:17:32 +02003808
Jiang Liu7c71d302015-04-13 14:11:33 +08003809 return NULL;
Joerg Roedel5527de72012-06-26 11:17:32 +02003810}
3811
Jiang Liu7c71d302015-04-13 14:11:33 +08003812static struct irq_domain *get_irq_domain(struct irq_alloc_info *info)
Joerg Roedel0b4d48c2012-06-26 14:54:17 +02003813{
Jiang Liu7c71d302015-04-13 14:11:33 +08003814 struct amd_iommu *iommu;
3815 int devid;
Joerg Roedel0b4d48c2012-06-26 14:54:17 +02003816
Jiang Liu7c71d302015-04-13 14:11:33 +08003817 if (!info)
3818 return NULL;
Joerg Roedel0b4d48c2012-06-26 14:54:17 +02003819
Jiang Liu7c71d302015-04-13 14:11:33 +08003820 switch (info->type) {
3821 case X86_IRQ_ALLOC_TYPE_MSI:
3822 case X86_IRQ_ALLOC_TYPE_MSIX:
3823 devid = get_device_id(&info->msi_dev->dev);
3824 if (devid >= 0) {
3825 iommu = amd_iommu_rlookup_table[devid];
3826 if (iommu)
3827 return iommu->msi_domain;
3828 }
3829 break;
3830 default:
3831 break;
3832 }
Joerg Roedel0b4d48c2012-06-26 14:54:17 +02003833
Jiang Liu7c71d302015-04-13 14:11:33 +08003834 return NULL;
Joerg Roedeld9761952012-06-26 16:00:08 +02003835}
3836
Joerg Roedel6b474b82012-06-26 16:46:04 +02003837struct irq_remap_ops amd_iommu_irq_ops = {
Joerg Roedel6b474b82012-06-26 16:46:04 +02003838 .prepare = amd_iommu_prepare,
3839 .enable = amd_iommu_enable,
3840 .disable = amd_iommu_disable,
3841 .reenable = amd_iommu_reenable,
3842 .enable_faulting = amd_iommu_enable_faulting,
Jiang Liu7c71d302015-04-13 14:11:33 +08003843 .get_ir_irq_domain = get_ir_irq_domain,
3844 .get_irq_domain = get_irq_domain,
Joerg Roedel6b474b82012-06-26 16:46:04 +02003845};
Jiang Liu7c71d302015-04-13 14:11:33 +08003846
3847static void irq_remapping_prepare_irte(struct amd_ir_data *data,
3848 struct irq_cfg *irq_cfg,
3849 struct irq_alloc_info *info,
3850 int devid, int index, int sub_handle)
3851{
3852 struct irq_2_irte *irte_info = &data->irq_2_irte;
3853 struct msi_msg *msg = &data->msi_entry;
3854 union irte *irte = &data->irte_entry;
3855 struct IO_APIC_route_entry *entry;
3856
Jiang Liu7c71d302015-04-13 14:11:33 +08003857 data->irq_2_irte.devid = devid;
3858 data->irq_2_irte.index = index + sub_handle;
3859
3860 /* Setup IRTE for IOMMU */
3861 irte->val = 0;
3862 irte->fields.vector = irq_cfg->vector;
3863 irte->fields.int_type = apic->irq_delivery_mode;
3864 irte->fields.destination = irq_cfg->dest_apicid;
3865 irte->fields.dm = apic->irq_dest_mode;
3866 irte->fields.valid = 1;
3867
3868 switch (info->type) {
3869 case X86_IRQ_ALLOC_TYPE_IOAPIC:
3870 /* Setup IOAPIC entry */
3871 entry = info->ioapic_entry;
3872 info->ioapic_entry = NULL;
3873 memset(entry, 0, sizeof(*entry));
3874 entry->vector = index;
3875 entry->mask = 0;
3876 entry->trigger = info->ioapic_trigger;
3877 entry->polarity = info->ioapic_polarity;
3878 /* Mask level triggered irqs. */
3879 if (info->ioapic_trigger)
3880 entry->mask = 1;
3881 break;
3882
3883 case X86_IRQ_ALLOC_TYPE_HPET:
3884 case X86_IRQ_ALLOC_TYPE_MSI:
3885 case X86_IRQ_ALLOC_TYPE_MSIX:
3886 msg->address_hi = MSI_ADDR_BASE_HI;
3887 msg->address_lo = MSI_ADDR_BASE_LO;
3888 msg->data = irte_info->index;
3889 break;
3890
3891 default:
3892 BUG_ON(1);
3893 break;
3894 }
3895}
3896
3897static int irq_remapping_alloc(struct irq_domain *domain, unsigned int virq,
3898 unsigned int nr_irqs, void *arg)
3899{
3900 struct irq_alloc_info *info = arg;
3901 struct irq_data *irq_data;
3902 struct amd_ir_data *data;
3903 struct irq_cfg *cfg;
3904 int i, ret, devid;
3905 int index = -1;
3906
3907 if (!info)
3908 return -EINVAL;
3909 if (nr_irqs > 1 && info->type != X86_IRQ_ALLOC_TYPE_MSI &&
3910 info->type != X86_IRQ_ALLOC_TYPE_MSIX)
3911 return -EINVAL;
3912
3913 /*
3914 * With IRQ remapping enabled, don't need contiguous CPU vectors
3915 * to support multiple MSI interrupts.
3916 */
3917 if (info->type == X86_IRQ_ALLOC_TYPE_MSI)
3918 info->flags &= ~X86_IRQ_ALLOC_CONTIGUOUS_VECTORS;
3919
3920 devid = get_devid(info);
3921 if (devid < 0)
3922 return -EINVAL;
3923
3924 ret = irq_domain_alloc_irqs_parent(domain, virq, nr_irqs, arg);
3925 if (ret < 0)
3926 return ret;
3927
Jiang Liu7c71d302015-04-13 14:11:33 +08003928 if (info->type == X86_IRQ_ALLOC_TYPE_IOAPIC) {
3929 if (get_irq_table(devid, true))
3930 index = info->ioapic_pin;
3931 else
3932 ret = -ENOMEM;
3933 } else {
Jiang Liu3c3d4f92015-04-13 14:11:38 +08003934 index = alloc_irq_index(devid, nr_irqs);
Jiang Liu7c71d302015-04-13 14:11:33 +08003935 }
3936 if (index < 0) {
3937 pr_warn("Failed to allocate IRTE\n");
Jiang Liu7c71d302015-04-13 14:11:33 +08003938 goto out_free_parent;
3939 }
3940
3941 for (i = 0; i < nr_irqs; i++) {
3942 irq_data = irq_domain_get_irq_data(domain, virq + i);
3943 cfg = irqd_cfg(irq_data);
3944 if (!irq_data || !cfg) {
3945 ret = -EINVAL;
3946 goto out_free_data;
3947 }
3948
Joerg Roedela130e692015-08-13 11:07:25 +02003949 ret = -ENOMEM;
3950 data = kzalloc(sizeof(*data), GFP_KERNEL);
3951 if (!data)
3952 goto out_free_data;
3953
Jiang Liu7c71d302015-04-13 14:11:33 +08003954 irq_data->hwirq = (devid << 16) + i;
3955 irq_data->chip_data = data;
3956 irq_data->chip = &amd_ir_chip;
3957 irq_remapping_prepare_irte(data, cfg, info, devid, index, i);
3958 irq_set_status_flags(virq + i, IRQ_MOVE_PCNTXT);
3959 }
Joerg Roedela130e692015-08-13 11:07:25 +02003960
Jiang Liu7c71d302015-04-13 14:11:33 +08003961 return 0;
3962
3963out_free_data:
3964 for (i--; i >= 0; i--) {
3965 irq_data = irq_domain_get_irq_data(domain, virq + i);
3966 if (irq_data)
3967 kfree(irq_data->chip_data);
3968 }
3969 for (i = 0; i < nr_irqs; i++)
3970 free_irte(devid, index + i);
3971out_free_parent:
3972 irq_domain_free_irqs_common(domain, virq, nr_irqs);
3973 return ret;
3974}
3975
3976static void irq_remapping_free(struct irq_domain *domain, unsigned int virq,
3977 unsigned int nr_irqs)
3978{
3979 struct irq_2_irte *irte_info;
3980 struct irq_data *irq_data;
3981 struct amd_ir_data *data;
3982 int i;
3983
3984 for (i = 0; i < nr_irqs; i++) {
3985 irq_data = irq_domain_get_irq_data(domain, virq + i);
3986 if (irq_data && irq_data->chip_data) {
3987 data = irq_data->chip_data;
3988 irte_info = &data->irq_2_irte;
3989 free_irte(irte_info->devid, irte_info->index);
3990 kfree(data);
3991 }
3992 }
3993 irq_domain_free_irqs_common(domain, virq, nr_irqs);
3994}
3995
3996static void irq_remapping_activate(struct irq_domain *domain,
3997 struct irq_data *irq_data)
3998{
3999 struct amd_ir_data *data = irq_data->chip_data;
4000 struct irq_2_irte *irte_info = &data->irq_2_irte;
4001
4002 modify_irte(irte_info->devid, irte_info->index, data->irte_entry);
4003}
4004
4005static void irq_remapping_deactivate(struct irq_domain *domain,
4006 struct irq_data *irq_data)
4007{
4008 struct amd_ir_data *data = irq_data->chip_data;
4009 struct irq_2_irte *irte_info = &data->irq_2_irte;
4010 union irte entry;
4011
4012 entry.val = 0;
4013 modify_irte(irte_info->devid, irte_info->index, data->irte_entry);
4014}
4015
4016static struct irq_domain_ops amd_ir_domain_ops = {
4017 .alloc = irq_remapping_alloc,
4018 .free = irq_remapping_free,
4019 .activate = irq_remapping_activate,
4020 .deactivate = irq_remapping_deactivate,
4021};
4022
4023static int amd_ir_set_affinity(struct irq_data *data,
4024 const struct cpumask *mask, bool force)
4025{
4026 struct amd_ir_data *ir_data = data->chip_data;
4027 struct irq_2_irte *irte_info = &ir_data->irq_2_irte;
4028 struct irq_cfg *cfg = irqd_cfg(data);
4029 struct irq_data *parent = data->parent_data;
4030 int ret;
4031
4032 ret = parent->chip->irq_set_affinity(parent, mask, force);
4033 if (ret < 0 || ret == IRQ_SET_MASK_OK_DONE)
4034 return ret;
4035
4036 /*
4037 * Atomically updates the IRTE with the new destination, vector
4038 * and flushes the interrupt entry cache.
4039 */
4040 ir_data->irte_entry.fields.vector = cfg->vector;
4041 ir_data->irte_entry.fields.destination = cfg->dest_apicid;
4042 modify_irte(irte_info->devid, irte_info->index, ir_data->irte_entry);
4043
4044 /*
4045 * After this point, all the interrupts will start arriving
4046 * at the new destination. So, time to cleanup the previous
4047 * vector allocation.
4048 */
Jiang Liuc6c20022015-04-14 10:30:02 +08004049 send_cleanup_vector(cfg);
Jiang Liu7c71d302015-04-13 14:11:33 +08004050
4051 return IRQ_SET_MASK_OK_DONE;
4052}
4053
4054static void ir_compose_msi_msg(struct irq_data *irq_data, struct msi_msg *msg)
4055{
4056 struct amd_ir_data *ir_data = irq_data->chip_data;
4057
4058 *msg = ir_data->msi_entry;
4059}
4060
4061static struct irq_chip amd_ir_chip = {
4062 .irq_ack = ir_ack_apic_edge,
4063 .irq_set_affinity = amd_ir_set_affinity,
4064 .irq_compose_msi_msg = ir_compose_msi_msg,
4065};
4066
4067int amd_iommu_create_irq_domain(struct amd_iommu *iommu)
4068{
4069 iommu->ir_domain = irq_domain_add_tree(NULL, &amd_ir_domain_ops, iommu);
4070 if (!iommu->ir_domain)
4071 return -ENOMEM;
4072
4073 iommu->ir_domain->parent = arch_get_ir_parent_domain();
4074 iommu->msi_domain = arch_create_msi_irq_domain(iommu->ir_domain);
4075
4076 return 0;
4077}
Joerg Roedel2b324502012-06-21 16:29:10 +02004078#endif