blob: 713e7ea062104a764daac9d975512755cfc54323 [file] [log] [blame]
Joerg Roedelb6c02712008-06-26 21:27:53 +02001/*
Joerg Roedel5d0d7152010-10-13 11:13:21 +02002 * Copyright (C) 2007-2010 Advanced Micro Devices, Inc.
Joerg Roedel63ce3ae2015-02-04 16:12:55 +01003 * Author: Joerg Roedel <jroedel@suse.de>
Joerg Roedelb6c02712008-06-26 21:27:53 +02004 * Leo Duran <leo.duran@amd.com>
5 *
6 * This program is free software; you can redistribute it and/or modify it
7 * under the terms of the GNU General Public License version 2 as published
8 * by the Free Software Foundation.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
18 */
19
Joerg Roedel72e1dcc2011-11-10 19:13:51 +010020#include <linux/ratelimit.h>
Joerg Roedelb6c02712008-06-26 21:27:53 +020021#include <linux/pci.h>
Wan Zongshun2bf9a0a2016-04-01 09:06:03 -040022#include <linux/acpi.h>
Joerg Roedelcb41ed82011-04-05 11:00:53 +020023#include <linux/pci-ats.h>
Akinobu Mitaa66022c2009-12-15 16:48:28 -080024#include <linux/bitmap.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090025#include <linux/slab.h>
Joerg Roedel7f265082008-12-12 13:50:21 +010026#include <linux/debugfs.h>
Joerg Roedelb6c02712008-06-26 21:27:53 +020027#include <linux/scatterlist.h>
FUJITA Tomonori51491362009-01-05 23:47:25 +090028#include <linux/dma-mapping.h>
Joerg Roedelb6c02712008-06-26 21:27:53 +020029#include <linux/iommu-helper.h>
Joerg Roedelc156e342008-12-02 18:13:27 +010030#include <linux/iommu.h>
Joerg Roedel815b33f2011-04-06 17:26:49 +020031#include <linux/delay.h>
Joerg Roedel403f81d2011-06-14 16:44:25 +020032#include <linux/amd-iommu.h>
Joerg Roedel72e1dcc2011-11-10 19:13:51 +010033#include <linux/notifier.h>
34#include <linux/export.h>
Joerg Roedel2b324502012-06-21 16:29:10 +020035#include <linux/irq.h>
36#include <linux/msi.h>
Joerg Roedel3b839a52015-04-01 14:58:47 +020037#include <linux/dma-contiguous.h>
Jiang Liu7c71d302015-04-13 14:11:33 +080038#include <linux/irqdomain.h>
Joerg Roedel5f6bed52015-12-22 13:34:22 +010039#include <linux/percpu.h>
Joerg Roedel2b324502012-06-21 16:29:10 +020040#include <asm/irq_remapping.h>
41#include <asm/io_apic.h>
42#include <asm/apic.h>
43#include <asm/hw_irq.h>
Joerg Roedel17f5b562011-07-06 17:14:44 +020044#include <asm/msidef.h>
Joerg Roedelb6c02712008-06-26 21:27:53 +020045#include <asm/proto.h>
FUJITA Tomonori46a7fa22008-07-11 10:23:42 +090046#include <asm/iommu.h>
Joerg Roedel1d9b16d2008-11-27 18:39:15 +010047#include <asm/gart.h>
Joerg Roedel27c21272011-05-30 15:56:24 +020048#include <asm/dma.h>
Joerg Roedel403f81d2011-06-14 16:44:25 +020049
50#include "amd_iommu_proto.h"
51#include "amd_iommu_types.h"
Joerg Roedel6b474b82012-06-26 16:46:04 +020052#include "irq_remapping.h"
Joerg Roedelb6c02712008-06-26 21:27:53 +020053
54#define CMD_SET_TYPE(cmd, t) ((cmd)->data[1] |= ((t) << 28))
55
Joerg Roedel815b33f2011-04-06 17:26:49 +020056#define LOOP_TIMEOUT 100000
Joerg Roedel136f78a2008-07-11 17:14:27 +020057
Ohad Ben-Cohenaa3de9c2011-11-10 11:32:29 +020058/*
59 * This bitmap is used to advertise the page sizes our hardware support
60 * to the IOMMU core, which will then use this information to split
61 * physically contiguous memory regions it is mapping into page sizes
62 * that we support.
63 *
Joerg Roedel954e3dd2012-12-02 15:35:37 +010064 * 512GB Pages are not supported due to a hardware bug
Ohad Ben-Cohenaa3de9c2011-11-10 11:32:29 +020065 */
Joerg Roedel954e3dd2012-12-02 15:35:37 +010066#define AMD_IOMMU_PGSIZES ((~0xFFFUL) & ~(2ULL << 38))
Ohad Ben-Cohenaa3de9c2011-11-10 11:32:29 +020067
Joerg Roedelb6c02712008-06-26 21:27:53 +020068static DEFINE_RWLOCK(amd_iommu_devtable_lock);
69
Joerg Roedel8fa5f802011-06-09 12:24:45 +020070/* List of all available dev_data structures */
71static LIST_HEAD(dev_data_list);
72static DEFINE_SPINLOCK(dev_data_list_lock);
73
Joerg Roedel6efed632012-06-14 15:52:58 +020074LIST_HEAD(ioapic_map);
75LIST_HEAD(hpet_map);
Wan Zongshun2a0cb4e2016-04-01 09:06:00 -040076LIST_HEAD(acpihid_map);
Joerg Roedel6efed632012-06-14 15:52:58 +020077
Joerg Roedel0feae532009-08-26 15:26:30 +020078/*
79 * Domain for untranslated devices - only allocated
80 * if iommu=pt passed on kernel cmd line.
81 */
Thierry Redingb22f6432014-06-27 09:03:12 +020082static const struct iommu_ops amd_iommu_ops;
Joerg Roedel26961ef2008-12-03 17:00:17 +010083
Joerg Roedel72e1dcc2011-11-10 19:13:51 +010084static ATOMIC_NOTIFIER_HEAD(ppr_notifier);
Joerg Roedel52815b72011-11-17 17:24:28 +010085int amd_iommu_max_glx_val = -1;
Joerg Roedel72e1dcc2011-11-10 19:13:51 +010086
Joerg Roedelac1534a2012-06-21 14:52:40 +020087static struct dma_map_ops amd_iommu_dma_ops;
88
Joerg Roedel431b2a22008-07-11 17:14:22 +020089/*
Joerg Roedel50917e22014-08-05 16:38:38 +020090 * This struct contains device specific data for the IOMMU
91 */
92struct iommu_dev_data {
93 struct list_head list; /* For domain->dev_list */
94 struct list_head dev_data_list; /* For global dev_data_list */
Joerg Roedel50917e22014-08-05 16:38:38 +020095 struct protection_domain *domain; /* Domain the device is bound to */
Joerg Roedel50917e22014-08-05 16:38:38 +020096 u16 devid; /* PCI Device ID */
97 bool iommu_v2; /* Device can make use of IOMMUv2 */
Joerg Roedel1e6a7b02015-07-28 16:58:48 +020098 bool passthrough; /* Device is identity mapped */
Joerg Roedel50917e22014-08-05 16:38:38 +020099 struct {
100 bool enabled;
101 int qdep;
102 } ats; /* ATS state */
103 bool pri_tlp; /* PASID TLB required for
104 PPR completions */
105 u32 errata; /* Bitmap for errata to apply */
106};
107
108/*
Joerg Roedel431b2a22008-07-11 17:14:22 +0200109 * general struct to manage commands send to an IOMMU
110 */
Joerg Roedeld6449532008-07-11 17:14:28 +0200111struct iommu_cmd {
Joerg Roedelb6c02712008-06-26 21:27:53 +0200112 u32 data[4];
113};
114
Joerg Roedel05152a02012-06-15 16:53:51 +0200115struct kmem_cache *amd_iommu_irq_cache;
116
Joerg Roedel04bfdd82009-09-02 16:00:23 +0200117static void update_domain(struct protection_domain *domain);
Joerg Roedel7a5a5662015-06-30 08:56:11 +0200118static int protection_domain_init(struct protection_domain *domain);
Joerg Roedelb6809ee2016-02-26 16:48:59 +0100119static void detach_device(struct device *dev);
Chris Wrightc1eee672009-05-21 00:56:58 -0700120
Joerg Roedel007b74b2015-12-21 12:53:54 +0100121/*
122 * For dynamic growth the aperture size is split into ranges of 128MB of
123 * DMA address space each. This struct represents one such range.
124 */
125struct aperture_range {
126
Joerg Roedel08c5fb92015-12-21 13:04:49 +0100127 spinlock_t bitmap_lock;
128
Joerg Roedel007b74b2015-12-21 12:53:54 +0100129 /* address allocation bitmap */
130 unsigned long *bitmap;
Joerg Roedelae62d492015-12-21 16:28:45 +0100131 unsigned long offset;
Joerg Roedel60e6a7c2015-12-21 16:53:17 +0100132 unsigned long next_bit;
Joerg Roedel007b74b2015-12-21 12:53:54 +0100133
134 /*
135 * Array of PTE pages for the aperture. In this array we save all the
136 * leaf pages of the domain page table used for the aperture. This way
137 * we don't need to walk the page table to find a specific PTE. We can
138 * just calculate its address in constant time.
139 */
140 u64 *pte_pages[64];
Joerg Roedel007b74b2015-12-21 12:53:54 +0100141};
142
143/*
144 * Data container for a dma_ops specific protection domain
145 */
146struct dma_ops_domain {
147 /* generic protection domain information */
148 struct protection_domain domain;
149
150 /* size of the aperture for the mappings */
151 unsigned long aperture_size;
152
Joerg Roedelebaecb42015-12-21 18:11:32 +0100153 /* aperture index we start searching for free addresses */
Joerg Roedel5f6bed52015-12-22 13:34:22 +0100154 u32 __percpu *next_index;
Joerg Roedel007b74b2015-12-21 12:53:54 +0100155
156 /* address space relevant data */
157 struct aperture_range *aperture[APERTURE_MAX_RANGES];
Joerg Roedel007b74b2015-12-21 12:53:54 +0100158};
159
Joerg Roedel15898bb2009-11-24 15:39:42 +0100160/****************************************************************************
161 *
162 * Helper functions
163 *
164 ****************************************************************************/
165
Joerg Roedel3f4b87b2015-03-26 13:43:07 +0100166static struct protection_domain *to_pdomain(struct iommu_domain *dom)
167{
168 return container_of(dom, struct protection_domain, domain);
169}
170
Joerg Roedelf62dda62011-06-09 12:55:35 +0200171static struct iommu_dev_data *alloc_dev_data(u16 devid)
Joerg Roedel8fa5f802011-06-09 12:24:45 +0200172{
173 struct iommu_dev_data *dev_data;
174 unsigned long flags;
175
176 dev_data = kzalloc(sizeof(*dev_data), GFP_KERNEL);
177 if (!dev_data)
178 return NULL;
179
Joerg Roedelf62dda62011-06-09 12:55:35 +0200180 dev_data->devid = devid;
Joerg Roedel8fa5f802011-06-09 12:24:45 +0200181
182 spin_lock_irqsave(&dev_data_list_lock, flags);
183 list_add_tail(&dev_data->dev_data_list, &dev_data_list);
184 spin_unlock_irqrestore(&dev_data_list_lock, flags);
185
186 return dev_data;
187}
188
Joerg Roedel3b03bb72011-06-09 18:53:25 +0200189static struct iommu_dev_data *search_dev_data(u16 devid)
190{
191 struct iommu_dev_data *dev_data;
192 unsigned long flags;
193
194 spin_lock_irqsave(&dev_data_list_lock, flags);
195 list_for_each_entry(dev_data, &dev_data_list, dev_data_list) {
196 if (dev_data->devid == devid)
197 goto out_unlock;
198 }
199
200 dev_data = NULL;
201
202out_unlock:
203 spin_unlock_irqrestore(&dev_data_list_lock, flags);
204
205 return dev_data;
206}
207
208static struct iommu_dev_data *find_dev_data(u16 devid)
209{
210 struct iommu_dev_data *dev_data;
211
212 dev_data = search_dev_data(devid);
213
214 if (dev_data == NULL)
215 dev_data = alloc_dev_data(devid);
216
217 return dev_data;
218}
219
Wan Zongshun2bf9a0a2016-04-01 09:06:03 -0400220static inline int match_hid_uid(struct device *dev,
221 struct acpihid_map_entry *entry)
222{
223 const char *hid, *uid;
224
225 hid = acpi_device_hid(ACPI_COMPANION(dev));
226 uid = acpi_device_uid(ACPI_COMPANION(dev));
227
228 if (!hid || !(*hid))
229 return -ENODEV;
230
231 if (!uid || !(*uid))
232 return strcmp(hid, entry->hid);
233
234 if (!(*entry->uid))
235 return strcmp(hid, entry->hid);
236
237 return (strcmp(hid, entry->hid) || strcmp(uid, entry->uid));
238}
239
240static inline u16 get_pci_device_id(struct device *dev)
Joerg Roedel15898bb2009-11-24 15:39:42 +0100241{
242 struct pci_dev *pdev = to_pci_dev(dev);
243
Shuah Khan6f2729b2013-02-27 17:07:30 -0700244 return PCI_DEVID(pdev->bus->number, pdev->devfn);
Joerg Roedel15898bb2009-11-24 15:39:42 +0100245}
246
Wan Zongshun2bf9a0a2016-04-01 09:06:03 -0400247static inline int get_acpihid_device_id(struct device *dev,
248 struct acpihid_map_entry **entry)
249{
250 struct acpihid_map_entry *p;
251
252 list_for_each_entry(p, &acpihid_map, list) {
253 if (!match_hid_uid(dev, p)) {
254 if (entry)
255 *entry = p;
256 return p->devid;
257 }
258 }
259 return -EINVAL;
260}
261
262static inline int get_device_id(struct device *dev)
263{
264 int devid;
265
266 if (dev_is_pci(dev))
267 devid = get_pci_device_id(dev);
268 else
269 devid = get_acpihid_device_id(dev, NULL);
270
271 return devid;
272}
273
Joerg Roedel657cbb62009-11-23 15:26:46 +0100274static struct iommu_dev_data *get_dev_data(struct device *dev)
275{
276 return dev->archdata.iommu;
277}
278
Wan Zongshunb097d112016-04-01 09:06:04 -0400279/*
280* Find or create an IOMMU group for a acpihid device.
281*/
282static struct iommu_group *acpihid_device_group(struct device *dev)
283{
284 struct acpihid_map_entry *p, *entry = NULL;
285 u16 devid;
286
287 devid = get_acpihid_device_id(dev, &entry);
288 if (devid < 0)
289 return ERR_PTR(devid);
290
291 list_for_each_entry(p, &acpihid_map, list) {
292 if ((devid == p->devid) && p->group)
293 entry->group = p->group;
294 }
295
296 if (!entry->group)
297 entry->group = generic_device_group(dev);
298
299 return entry->group;
300}
301
Joerg Roedel5abcdba2011-12-01 15:49:45 +0100302static bool pci_iommuv2_capable(struct pci_dev *pdev)
303{
304 static const int caps[] = {
305 PCI_EXT_CAP_ID_ATS,
Joerg Roedel46277b72011-12-07 14:34:02 +0100306 PCI_EXT_CAP_ID_PRI,
307 PCI_EXT_CAP_ID_PASID,
Joerg Roedel5abcdba2011-12-01 15:49:45 +0100308 };
309 int i, pos;
310
311 for (i = 0; i < 3; ++i) {
312 pos = pci_find_ext_capability(pdev, caps[i]);
313 if (pos == 0)
314 return false;
315 }
316
317 return true;
318}
319
Joerg Roedel6a113dd2011-12-01 12:04:58 +0100320static bool pdev_pri_erratum(struct pci_dev *pdev, u32 erratum)
321{
322 struct iommu_dev_data *dev_data;
323
324 dev_data = get_dev_data(&pdev->dev);
325
326 return dev_data->errata & (1 << erratum) ? true : false;
327}
328
Joerg Roedel71c70982009-11-24 16:43:06 +0100329/*
Joerg Roedel0bb6e242015-05-28 18:41:40 +0200330 * This function actually applies the mapping to the page table of the
331 * dma_ops domain.
Joerg Roedel71c70982009-11-24 16:43:06 +0100332 */
Joerg Roedel0bb6e242015-05-28 18:41:40 +0200333static void alloc_unity_mapping(struct dma_ops_domain *dma_dom,
334 struct unity_map_entry *e)
Joerg Roedel71c70982009-11-24 16:43:06 +0100335{
Joerg Roedel0bb6e242015-05-28 18:41:40 +0200336 u64 addr;
Joerg Roedel71c70982009-11-24 16:43:06 +0100337
Joerg Roedel0bb6e242015-05-28 18:41:40 +0200338 for (addr = e->address_start; addr < e->address_end;
339 addr += PAGE_SIZE) {
340 if (addr < dma_dom->aperture_size)
341 __set_bit(addr >> PAGE_SHIFT,
342 dma_dom->aperture[0]->bitmap);
Joerg Roedel71c70982009-11-24 16:43:06 +0100343 }
Joerg Roedel0bb6e242015-05-28 18:41:40 +0200344}
Joerg Roedel71c70982009-11-24 16:43:06 +0100345
Joerg Roedel0bb6e242015-05-28 18:41:40 +0200346/*
347 * Inits the unity mappings required for a specific device
348 */
349static void init_unity_mappings_for_device(struct device *dev,
350 struct dma_ops_domain *dma_dom)
351{
352 struct unity_map_entry *e;
Wan Zongshun7aba6cb2016-04-01 09:06:02 -0400353 int devid;
Joerg Roedel71c70982009-11-24 16:43:06 +0100354
Joerg Roedel0bb6e242015-05-28 18:41:40 +0200355 devid = get_device_id(dev);
Wan Zongshun7aba6cb2016-04-01 09:06:02 -0400356 if (IS_ERR_VALUE(devid))
357 return;
Joerg Roedel0bb6e242015-05-28 18:41:40 +0200358
359 list_for_each_entry(e, &amd_iommu_unity_map, list) {
360 if (!(devid >= e->devid_start && devid <= e->devid_end))
361 continue;
362 alloc_unity_mapping(dma_dom, e);
363 }
Joerg Roedel71c70982009-11-24 16:43:06 +0100364}
365
Joerg Roedel98fc5a62009-11-24 17:19:23 +0100366/*
367 * This function checks if the driver got a valid device from the caller to
368 * avoid dereferencing invalid pointers.
369 */
370static bool check_device(struct device *dev)
371{
Wan Zongshun7aba6cb2016-04-01 09:06:02 -0400372 int devid;
Joerg Roedel98fc5a62009-11-24 17:19:23 +0100373
374 if (!dev || !dev->dma_mask)
375 return false;
376
Joerg Roedel98fc5a62009-11-24 17:19:23 +0100377 devid = get_device_id(dev);
Wan Zongshun7aba6cb2016-04-01 09:06:02 -0400378 if (IS_ERR_VALUE(devid))
379 return false;
Joerg Roedel98fc5a62009-11-24 17:19:23 +0100380
381 /* Out of our scope? */
382 if (devid > amd_iommu_last_bdf)
383 return false;
384
385 if (amd_iommu_rlookup_table[devid] == NULL)
386 return false;
387
388 return true;
389}
390
Alex Williamson25b11ce2014-09-19 10:03:13 -0600391static void init_iommu_group(struct device *dev)
Alex Williamson2851db22012-10-08 22:49:41 -0600392{
Joerg Roedel0bb6e242015-05-28 18:41:40 +0200393 struct dma_ops_domain *dma_domain;
394 struct iommu_domain *domain;
Alex Williamson2851db22012-10-08 22:49:41 -0600395 struct iommu_group *group;
Alex Williamson2851db22012-10-08 22:49:41 -0600396
Alex Williamson65d53522014-07-03 09:51:30 -0600397 group = iommu_group_get_for_dev(dev);
Joerg Roedel0bb6e242015-05-28 18:41:40 +0200398 if (IS_ERR(group))
399 return;
400
401 domain = iommu_group_default_domain(group);
402 if (!domain)
403 goto out;
404
405 dma_domain = to_pdomain(domain)->priv;
406
407 init_unity_mappings_for_device(dev, dma_domain);
408out:
409 iommu_group_put(group);
Alex Williamsoneb9c9522012-10-08 22:49:35 -0600410}
411
412static int iommu_init_device(struct device *dev)
413{
Alex Williamsoneb9c9522012-10-08 22:49:35 -0600414 struct iommu_dev_data *dev_data;
Wan Zongshun7aba6cb2016-04-01 09:06:02 -0400415 int devid;
Alex Williamsoneb9c9522012-10-08 22:49:35 -0600416
417 if (dev->archdata.iommu)
418 return 0;
419
Wan Zongshun7aba6cb2016-04-01 09:06:02 -0400420 devid = get_device_id(dev);
421 if (IS_ERR_VALUE(devid))
422 return devid;
423
424 dev_data = find_dev_data(devid);
Alex Williamsoneb9c9522012-10-08 22:49:35 -0600425 if (!dev_data)
426 return -ENOMEM;
427
Wan Zongshun2bf9a0a2016-04-01 09:06:03 -0400428 if (dev_is_pci(dev) && pci_iommuv2_capable(to_pci_dev(dev))) {
Joerg Roedel5abcdba2011-12-01 15:49:45 +0100429 struct amd_iommu *iommu;
430
Wan Zongshun2bf9a0a2016-04-01 09:06:03 -0400431 iommu = amd_iommu_rlookup_table[dev_data->devid];
Joerg Roedel5abcdba2011-12-01 15:49:45 +0100432 dev_data->iommu_v2 = iommu->is_iommu_v2;
433 }
434
Joerg Roedel657cbb62009-11-23 15:26:46 +0100435 dev->archdata.iommu = dev_data;
436
Alex Williamson066f2e92014-06-12 16:12:37 -0600437 iommu_device_link(amd_iommu_rlookup_table[dev_data->devid]->iommu_dev,
438 dev);
439
Joerg Roedel657cbb62009-11-23 15:26:46 +0100440 return 0;
441}
442
Joerg Roedel26018872011-06-06 16:50:14 +0200443static void iommu_ignore_device(struct device *dev)
444{
Wan Zongshun7aba6cb2016-04-01 09:06:02 -0400445 u16 alias;
446 int devid;
Joerg Roedel26018872011-06-06 16:50:14 +0200447
448 devid = get_device_id(dev);
Wan Zongshun7aba6cb2016-04-01 09:06:02 -0400449 if (IS_ERR_VALUE(devid))
450 return;
451
Joerg Roedel26018872011-06-06 16:50:14 +0200452 alias = amd_iommu_alias_table[devid];
453
454 memset(&amd_iommu_dev_table[devid], 0, sizeof(struct dev_table_entry));
455 memset(&amd_iommu_dev_table[alias], 0, sizeof(struct dev_table_entry));
456
457 amd_iommu_rlookup_table[devid] = NULL;
458 amd_iommu_rlookup_table[alias] = NULL;
459}
460
Joerg Roedel657cbb62009-11-23 15:26:46 +0100461static void iommu_uninit_device(struct device *dev)
462{
Wan Zongshun7aba6cb2016-04-01 09:06:02 -0400463 int devid;
464 struct iommu_dev_data *dev_data;
Alex Williamsonc1931092014-07-03 09:51:24 -0600465
Wan Zongshun7aba6cb2016-04-01 09:06:02 -0400466 devid = get_device_id(dev);
467 if (IS_ERR_VALUE(devid))
468 return;
469
470 dev_data = search_dev_data(devid);
Alex Williamsonc1931092014-07-03 09:51:24 -0600471 if (!dev_data)
472 return;
473
Joerg Roedelb6809ee2016-02-26 16:48:59 +0100474 if (dev_data->domain)
475 detach_device(dev);
476
Alex Williamson066f2e92014-06-12 16:12:37 -0600477 iommu_device_unlink(amd_iommu_rlookup_table[dev_data->devid]->iommu_dev,
478 dev);
479
Alex Williamson9dcd6132012-05-30 14:19:07 -0600480 iommu_group_remove_device(dev);
481
Joerg Roedelaafd8ba2015-05-28 18:41:39 +0200482 /* Remove dma-ops */
483 dev->archdata.dma_ops = NULL;
484
Joerg Roedel8fa5f802011-06-09 12:24:45 +0200485 /*
Alex Williamsonc1931092014-07-03 09:51:24 -0600486 * We keep dev_data around for unplugged devices and reuse it when the
487 * device is re-plugged - not doing so would introduce a ton of races.
Joerg Roedel8fa5f802011-06-09 12:24:45 +0200488 */
Joerg Roedel657cbb62009-11-23 15:26:46 +0100489}
Joerg Roedelb7cc9552009-12-10 11:03:39 +0100490
Joerg Roedel7f265082008-12-12 13:50:21 +0100491#ifdef CONFIG_AMD_IOMMU_STATS
492
493/*
494 * Initialization code for statistics collection
495 */
496
Joerg Roedelda49f6d2008-12-12 14:59:58 +0100497DECLARE_STATS_COUNTER(compl_wait);
Joerg Roedel0f2a86f2008-12-12 15:05:16 +0100498DECLARE_STATS_COUNTER(cnt_map_single);
Joerg Roedel146a6912008-12-12 15:07:12 +0100499DECLARE_STATS_COUNTER(cnt_unmap_single);
Joerg Roedeld03f0672008-12-12 15:09:48 +0100500DECLARE_STATS_COUNTER(cnt_map_sg);
Joerg Roedel55877a62008-12-12 15:12:14 +0100501DECLARE_STATS_COUNTER(cnt_unmap_sg);
Joerg Roedelc8f0fb32008-12-12 15:14:21 +0100502DECLARE_STATS_COUNTER(cnt_alloc_coherent);
Joerg Roedel5d31ee72008-12-12 15:16:38 +0100503DECLARE_STATS_COUNTER(cnt_free_coherent);
Joerg Roedelc1858972008-12-12 15:42:39 +0100504DECLARE_STATS_COUNTER(cross_page);
Joerg Roedelf57d98a2008-12-12 15:46:29 +0100505DECLARE_STATS_COUNTER(domain_flush_single);
Joerg Roedel18811f52008-12-12 15:48:28 +0100506DECLARE_STATS_COUNTER(domain_flush_all);
Joerg Roedel5774f7c2008-12-12 15:57:30 +0100507DECLARE_STATS_COUNTER(alloced_io_mem);
Joerg Roedel8ecaf8f2008-12-12 16:13:04 +0100508DECLARE_STATS_COUNTER(total_map_requests);
Joerg Roedel399be2f2011-12-01 16:53:47 +0100509DECLARE_STATS_COUNTER(complete_ppr);
510DECLARE_STATS_COUNTER(invalidate_iotlb);
511DECLARE_STATS_COUNTER(invalidate_iotlb_all);
512DECLARE_STATS_COUNTER(pri_requests);
513
Joerg Roedel7f265082008-12-12 13:50:21 +0100514static struct dentry *stats_dir;
Joerg Roedel7f265082008-12-12 13:50:21 +0100515static struct dentry *de_fflush;
516
517static void amd_iommu_stats_add(struct __iommu_counter *cnt)
518{
519 if (stats_dir == NULL)
520 return;
521
522 cnt->dent = debugfs_create_u64(cnt->name, 0444, stats_dir,
523 &cnt->value);
524}
525
526static void amd_iommu_stats_init(void)
527{
528 stats_dir = debugfs_create_dir("amd-iommu", NULL);
529 if (stats_dir == NULL)
530 return;
531
Joerg Roedel7f265082008-12-12 13:50:21 +0100532 de_fflush = debugfs_create_bool("fullflush", 0444, stats_dir,
Dan Carpenter3775d482012-06-27 12:09:18 +0300533 &amd_iommu_unmap_flush);
Joerg Roedelda49f6d2008-12-12 14:59:58 +0100534
535 amd_iommu_stats_add(&compl_wait);
Joerg Roedel0f2a86f2008-12-12 15:05:16 +0100536 amd_iommu_stats_add(&cnt_map_single);
Joerg Roedel146a6912008-12-12 15:07:12 +0100537 amd_iommu_stats_add(&cnt_unmap_single);
Joerg Roedeld03f0672008-12-12 15:09:48 +0100538 amd_iommu_stats_add(&cnt_map_sg);
Joerg Roedel55877a62008-12-12 15:12:14 +0100539 amd_iommu_stats_add(&cnt_unmap_sg);
Joerg Roedelc8f0fb32008-12-12 15:14:21 +0100540 amd_iommu_stats_add(&cnt_alloc_coherent);
Joerg Roedel5d31ee72008-12-12 15:16:38 +0100541 amd_iommu_stats_add(&cnt_free_coherent);
Joerg Roedelc1858972008-12-12 15:42:39 +0100542 amd_iommu_stats_add(&cross_page);
Joerg Roedelf57d98a2008-12-12 15:46:29 +0100543 amd_iommu_stats_add(&domain_flush_single);
Joerg Roedel18811f52008-12-12 15:48:28 +0100544 amd_iommu_stats_add(&domain_flush_all);
Joerg Roedel5774f7c2008-12-12 15:57:30 +0100545 amd_iommu_stats_add(&alloced_io_mem);
Joerg Roedel8ecaf8f2008-12-12 16:13:04 +0100546 amd_iommu_stats_add(&total_map_requests);
Joerg Roedel399be2f2011-12-01 16:53:47 +0100547 amd_iommu_stats_add(&complete_ppr);
548 amd_iommu_stats_add(&invalidate_iotlb);
549 amd_iommu_stats_add(&invalidate_iotlb_all);
550 amd_iommu_stats_add(&pri_requests);
Joerg Roedel7f265082008-12-12 13:50:21 +0100551}
552
553#endif
554
Joerg Roedel431b2a22008-07-11 17:14:22 +0200555/****************************************************************************
556 *
Joerg Roedela80dc3e2008-09-11 16:51:41 +0200557 * Interrupt handling functions
558 *
559 ****************************************************************************/
560
Joerg Roedele3e59872009-09-03 14:02:10 +0200561static void dump_dte_entry(u16 devid)
562{
563 int i;
564
Joerg Roedelee6c2862011-11-09 12:06:03 +0100565 for (i = 0; i < 4; ++i)
566 pr_err("AMD-Vi: DTE[%d]: %016llx\n", i,
Joerg Roedele3e59872009-09-03 14:02:10 +0200567 amd_iommu_dev_table[devid].data[i]);
568}
569
Joerg Roedel945b4ac2009-09-03 14:25:02 +0200570static void dump_command(unsigned long phys_addr)
571{
572 struct iommu_cmd *cmd = phys_to_virt(phys_addr);
573 int i;
574
575 for (i = 0; i < 4; ++i)
576 pr_err("AMD-Vi: CMD[%d]: %08x\n", i, cmd->data[i]);
577}
578
Joerg Roedela345b232009-09-03 15:01:43 +0200579static void iommu_print_event(struct amd_iommu *iommu, void *__evt)
Joerg Roedel90008ee2008-09-09 16:41:05 +0200580{
Joerg Roedel3d06fca2012-04-12 14:12:00 +0200581 int type, devid, domid, flags;
582 volatile u32 *event = __evt;
583 int count = 0;
584 u64 address;
585
586retry:
587 type = (event[1] >> EVENT_TYPE_SHIFT) & EVENT_TYPE_MASK;
588 devid = (event[0] >> EVENT_DEVID_SHIFT) & EVENT_DEVID_MASK;
589 domid = (event[1] >> EVENT_DOMID_SHIFT) & EVENT_DOMID_MASK;
590 flags = (event[1] >> EVENT_FLAGS_SHIFT) & EVENT_FLAGS_MASK;
591 address = (u64)(((u64)event[3]) << 32) | event[2];
592
593 if (type == 0) {
594 /* Did we hit the erratum? */
595 if (++count == LOOP_TIMEOUT) {
596 pr_err("AMD-Vi: No event written to event log\n");
597 return;
598 }
599 udelay(1);
600 goto retry;
601 }
Joerg Roedel90008ee2008-09-09 16:41:05 +0200602
Joerg Roedel4c6f40d2009-09-01 16:43:58 +0200603 printk(KERN_ERR "AMD-Vi: Event logged [");
Joerg Roedel90008ee2008-09-09 16:41:05 +0200604
605 switch (type) {
606 case EVENT_TYPE_ILL_DEV:
607 printk("ILLEGAL_DEV_TABLE_ENTRY device=%02x:%02x.%x "
608 "address=0x%016llx flags=0x%04x]\n",
Shuah Khanc5081cd2013-02-27 17:07:19 -0700609 PCI_BUS_NUM(devid), PCI_SLOT(devid), PCI_FUNC(devid),
Joerg Roedel90008ee2008-09-09 16:41:05 +0200610 address, flags);
Joerg Roedele3e59872009-09-03 14:02:10 +0200611 dump_dte_entry(devid);
Joerg Roedel90008ee2008-09-09 16:41:05 +0200612 break;
613 case EVENT_TYPE_IO_FAULT:
614 printk("IO_PAGE_FAULT device=%02x:%02x.%x "
615 "domain=0x%04x address=0x%016llx flags=0x%04x]\n",
Shuah Khanc5081cd2013-02-27 17:07:19 -0700616 PCI_BUS_NUM(devid), PCI_SLOT(devid), PCI_FUNC(devid),
Joerg Roedel90008ee2008-09-09 16:41:05 +0200617 domid, address, flags);
618 break;
619 case EVENT_TYPE_DEV_TAB_ERR:
620 printk("DEV_TAB_HARDWARE_ERROR device=%02x:%02x.%x "
621 "address=0x%016llx flags=0x%04x]\n",
Shuah Khanc5081cd2013-02-27 17:07:19 -0700622 PCI_BUS_NUM(devid), PCI_SLOT(devid), PCI_FUNC(devid),
Joerg Roedel90008ee2008-09-09 16:41:05 +0200623 address, flags);
624 break;
625 case EVENT_TYPE_PAGE_TAB_ERR:
626 printk("PAGE_TAB_HARDWARE_ERROR device=%02x:%02x.%x "
627 "domain=0x%04x address=0x%016llx flags=0x%04x]\n",
Shuah Khanc5081cd2013-02-27 17:07:19 -0700628 PCI_BUS_NUM(devid), PCI_SLOT(devid), PCI_FUNC(devid),
Joerg Roedel90008ee2008-09-09 16:41:05 +0200629 domid, address, flags);
630 break;
631 case EVENT_TYPE_ILL_CMD:
632 printk("ILLEGAL_COMMAND_ERROR address=0x%016llx]\n", address);
Joerg Roedel945b4ac2009-09-03 14:25:02 +0200633 dump_command(address);
Joerg Roedel90008ee2008-09-09 16:41:05 +0200634 break;
635 case EVENT_TYPE_CMD_HARD_ERR:
636 printk("COMMAND_HARDWARE_ERROR address=0x%016llx "
637 "flags=0x%04x]\n", address, flags);
638 break;
639 case EVENT_TYPE_IOTLB_INV_TO:
640 printk("IOTLB_INV_TIMEOUT device=%02x:%02x.%x "
641 "address=0x%016llx]\n",
Shuah Khanc5081cd2013-02-27 17:07:19 -0700642 PCI_BUS_NUM(devid), PCI_SLOT(devid), PCI_FUNC(devid),
Joerg Roedel90008ee2008-09-09 16:41:05 +0200643 address);
644 break;
645 case EVENT_TYPE_INV_DEV_REQ:
646 printk("INVALID_DEVICE_REQUEST device=%02x:%02x.%x "
647 "address=0x%016llx flags=0x%04x]\n",
Shuah Khanc5081cd2013-02-27 17:07:19 -0700648 PCI_BUS_NUM(devid), PCI_SLOT(devid), PCI_FUNC(devid),
Joerg Roedel90008ee2008-09-09 16:41:05 +0200649 address, flags);
650 break;
651 default:
652 printk(KERN_ERR "UNKNOWN type=0x%02x]\n", type);
653 }
Joerg Roedel3d06fca2012-04-12 14:12:00 +0200654
655 memset(__evt, 0, 4 * sizeof(u32));
Joerg Roedel90008ee2008-09-09 16:41:05 +0200656}
657
658static void iommu_poll_events(struct amd_iommu *iommu)
659{
660 u32 head, tail;
Joerg Roedel90008ee2008-09-09 16:41:05 +0200661
662 head = readl(iommu->mmio_base + MMIO_EVT_HEAD_OFFSET);
663 tail = readl(iommu->mmio_base + MMIO_EVT_TAIL_OFFSET);
664
665 while (head != tail) {
Joerg Roedela345b232009-09-03 15:01:43 +0200666 iommu_print_event(iommu, iommu->evt_buf + head);
Joerg Roedeldeba4bc2015-10-20 17:33:41 +0200667 head = (head + EVENT_ENTRY_SIZE) % EVT_BUFFER_SIZE;
Joerg Roedel90008ee2008-09-09 16:41:05 +0200668 }
669
670 writel(head, iommu->mmio_base + MMIO_EVT_HEAD_OFFSET);
Joerg Roedel90008ee2008-09-09 16:41:05 +0200671}
672
Joerg Roedeleee53532012-06-01 15:20:23 +0200673static void iommu_handle_ppr_entry(struct amd_iommu *iommu, u64 *raw)
Joerg Roedel72e1dcc2011-11-10 19:13:51 +0100674{
675 struct amd_iommu_fault fault;
Joerg Roedel72e1dcc2011-11-10 19:13:51 +0100676
Joerg Roedel399be2f2011-12-01 16:53:47 +0100677 INC_STATS_COUNTER(pri_requests);
678
Joerg Roedel72e1dcc2011-11-10 19:13:51 +0100679 if (PPR_REQ_TYPE(raw[0]) != PPR_REQ_FAULT) {
680 pr_err_ratelimited("AMD-Vi: Unknown PPR request received\n");
681 return;
682 }
683
684 fault.address = raw[1];
685 fault.pasid = PPR_PASID(raw[0]);
686 fault.device_id = PPR_DEVID(raw[0]);
687 fault.tag = PPR_TAG(raw[0]);
688 fault.flags = PPR_FLAGS(raw[0]);
689
Joerg Roedel72e1dcc2011-11-10 19:13:51 +0100690 atomic_notifier_call_chain(&ppr_notifier, 0, &fault);
691}
692
693static void iommu_poll_ppr_log(struct amd_iommu *iommu)
694{
Joerg Roedel72e1dcc2011-11-10 19:13:51 +0100695 u32 head, tail;
696
697 if (iommu->ppr_log == NULL)
698 return;
699
Joerg Roedel72e1dcc2011-11-10 19:13:51 +0100700 head = readl(iommu->mmio_base + MMIO_PPR_HEAD_OFFSET);
701 tail = readl(iommu->mmio_base + MMIO_PPR_TAIL_OFFSET);
702
703 while (head != tail) {
Joerg Roedeleee53532012-06-01 15:20:23 +0200704 volatile u64 *raw;
705 u64 entry[2];
706 int i;
Joerg Roedel72e1dcc2011-11-10 19:13:51 +0100707
Joerg Roedeleee53532012-06-01 15:20:23 +0200708 raw = (u64 *)(iommu->ppr_log + head);
Joerg Roedel72e1dcc2011-11-10 19:13:51 +0100709
Joerg Roedeleee53532012-06-01 15:20:23 +0200710 /*
711 * Hardware bug: Interrupt may arrive before the entry is
712 * written to memory. If this happens we need to wait for the
713 * entry to arrive.
714 */
715 for (i = 0; i < LOOP_TIMEOUT; ++i) {
716 if (PPR_REQ_TYPE(raw[0]) != 0)
717 break;
718 udelay(1);
719 }
720
721 /* Avoid memcpy function-call overhead */
722 entry[0] = raw[0];
723 entry[1] = raw[1];
724
725 /*
726 * To detect the hardware bug we need to clear the entry
727 * back to zero.
728 */
729 raw[0] = raw[1] = 0UL;
730
731 /* Update head pointer of hardware ring-buffer */
Joerg Roedel72e1dcc2011-11-10 19:13:51 +0100732 head = (head + PPR_ENTRY_SIZE) % PPR_LOG_SIZE;
733 writel(head, iommu->mmio_base + MMIO_PPR_HEAD_OFFSET);
Joerg Roedeleee53532012-06-01 15:20:23 +0200734
Joerg Roedeleee53532012-06-01 15:20:23 +0200735 /* Handle PPR entry */
736 iommu_handle_ppr_entry(iommu, entry);
737
Joerg Roedeleee53532012-06-01 15:20:23 +0200738 /* Refresh ring-buffer information */
739 head = readl(iommu->mmio_base + MMIO_PPR_HEAD_OFFSET);
Joerg Roedel72e1dcc2011-11-10 19:13:51 +0100740 tail = readl(iommu->mmio_base + MMIO_PPR_TAIL_OFFSET);
741 }
Joerg Roedel72e1dcc2011-11-10 19:13:51 +0100742}
743
Joerg Roedel72fe00f2011-05-10 10:50:42 +0200744irqreturn_t amd_iommu_int_thread(int irq, void *data)
Joerg Roedela80dc3e2008-09-11 16:51:41 +0200745{
Suravee Suthikulpanit3f398bc2013-04-22 16:32:34 -0500746 struct amd_iommu *iommu = (struct amd_iommu *) data;
747 u32 status = readl(iommu->mmio_base + MMIO_STATUS_OFFSET);
Joerg Roedel90008ee2008-09-09 16:41:05 +0200748
Suravee Suthikulpanit3f398bc2013-04-22 16:32:34 -0500749 while (status & (MMIO_STATUS_EVT_INT_MASK | MMIO_STATUS_PPR_INT_MASK)) {
750 /* Enable EVT and PPR interrupts again */
751 writel((MMIO_STATUS_EVT_INT_MASK | MMIO_STATUS_PPR_INT_MASK),
752 iommu->mmio_base + MMIO_STATUS_OFFSET);
753
754 if (status & MMIO_STATUS_EVT_INT_MASK) {
755 pr_devel("AMD-Vi: Processing IOMMU Event Log\n");
756 iommu_poll_events(iommu);
757 }
758
759 if (status & MMIO_STATUS_PPR_INT_MASK) {
760 pr_devel("AMD-Vi: Processing IOMMU PPR Log\n");
761 iommu_poll_ppr_log(iommu);
762 }
763
764 /*
765 * Hardware bug: ERBT1312
766 * When re-enabling interrupt (by writing 1
767 * to clear the bit), the hardware might also try to set
768 * the interrupt bit in the event status register.
769 * In this scenario, the bit will be set, and disable
770 * subsequent interrupts.
771 *
772 * Workaround: The IOMMU driver should read back the
773 * status register and check if the interrupt bits are cleared.
774 * If not, driver will need to go through the interrupt handler
775 * again and re-clear the bits
776 */
777 status = readl(iommu->mmio_base + MMIO_STATUS_OFFSET);
Joerg Roedel72e1dcc2011-11-10 19:13:51 +0100778 }
Joerg Roedel90008ee2008-09-09 16:41:05 +0200779 return IRQ_HANDLED;
Joerg Roedela80dc3e2008-09-11 16:51:41 +0200780}
781
Joerg Roedel72fe00f2011-05-10 10:50:42 +0200782irqreturn_t amd_iommu_int_handler(int irq, void *data)
783{
784 return IRQ_WAKE_THREAD;
785}
786
Joerg Roedela80dc3e2008-09-11 16:51:41 +0200787/****************************************************************************
788 *
Joerg Roedel431b2a22008-07-11 17:14:22 +0200789 * IOMMU command queuing functions
790 *
791 ****************************************************************************/
792
Joerg Roedelac0ea6e2011-04-06 18:38:20 +0200793static int wait_on_sem(volatile u64 *sem)
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200794{
Joerg Roedelac0ea6e2011-04-06 18:38:20 +0200795 int i = 0;
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200796
Joerg Roedelac0ea6e2011-04-06 18:38:20 +0200797 while (*sem == 0 && i < LOOP_TIMEOUT) {
798 udelay(1);
799 i += 1;
800 }
801
802 if (i == LOOP_TIMEOUT) {
803 pr_alert("AMD-Vi: Completion-Wait loop timed out\n");
804 return -EIO;
805 }
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200806
807 return 0;
808}
809
Joerg Roedelac0ea6e2011-04-06 18:38:20 +0200810static void copy_cmd_to_buffer(struct amd_iommu *iommu,
811 struct iommu_cmd *cmd,
812 u32 tail)
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200813{
Joerg Roedelac0ea6e2011-04-06 18:38:20 +0200814 u8 *target;
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200815
Joerg Roedelac0ea6e2011-04-06 18:38:20 +0200816 target = iommu->cmd_buf + tail;
Joerg Roedeldeba4bc2015-10-20 17:33:41 +0200817 tail = (tail + sizeof(*cmd)) % CMD_BUFFER_SIZE;
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200818
Joerg Roedelac0ea6e2011-04-06 18:38:20 +0200819 /* Copy command to buffer */
820 memcpy(target, cmd, sizeof(*cmd));
821
822 /* Tell the IOMMU about it */
823 writel(tail, iommu->mmio_base + MMIO_CMD_TAIL_OFFSET);
824}
825
Joerg Roedel815b33f2011-04-06 17:26:49 +0200826static void build_completion_wait(struct iommu_cmd *cmd, u64 address)
Joerg Roedelded46732011-04-06 10:53:48 +0200827{
Joerg Roedel815b33f2011-04-06 17:26:49 +0200828 WARN_ON(address & 0x7ULL);
829
Joerg Roedelded46732011-04-06 10:53:48 +0200830 memset(cmd, 0, sizeof(*cmd));
Joerg Roedel815b33f2011-04-06 17:26:49 +0200831 cmd->data[0] = lower_32_bits(__pa(address)) | CMD_COMPL_WAIT_STORE_MASK;
832 cmd->data[1] = upper_32_bits(__pa(address));
833 cmd->data[2] = 1;
Joerg Roedelded46732011-04-06 10:53:48 +0200834 CMD_SET_TYPE(cmd, CMD_COMPL_WAIT);
835}
836
Joerg Roedel94fe79e2011-04-06 11:07:21 +0200837static void build_inv_dte(struct iommu_cmd *cmd, u16 devid)
838{
839 memset(cmd, 0, sizeof(*cmd));
840 cmd->data[0] = devid;
841 CMD_SET_TYPE(cmd, CMD_INV_DEV_ENTRY);
842}
843
Joerg Roedel11b64022011-04-06 11:49:28 +0200844static void build_inv_iommu_pages(struct iommu_cmd *cmd, u64 address,
845 size_t size, u16 domid, int pde)
846{
847 u64 pages;
Quentin Lambertae0cbbb2015-02-04 11:40:07 +0100848 bool s;
Joerg Roedel11b64022011-04-06 11:49:28 +0200849
850 pages = iommu_num_pages(address, size, PAGE_SIZE);
Quentin Lambertae0cbbb2015-02-04 11:40:07 +0100851 s = false;
Joerg Roedel11b64022011-04-06 11:49:28 +0200852
853 if (pages > 1) {
854 /*
855 * If we have to flush more than one page, flush all
856 * TLB entries for this domain
857 */
858 address = CMD_INV_IOMMU_ALL_PAGES_ADDRESS;
Quentin Lambertae0cbbb2015-02-04 11:40:07 +0100859 s = true;
Joerg Roedel11b64022011-04-06 11:49:28 +0200860 }
861
862 address &= PAGE_MASK;
863
864 memset(cmd, 0, sizeof(*cmd));
865 cmd->data[1] |= domid;
866 cmd->data[2] = lower_32_bits(address);
867 cmd->data[3] = upper_32_bits(address);
868 CMD_SET_TYPE(cmd, CMD_INV_IOMMU_PAGES);
869 if (s) /* size bit - we flush more than one 4kb page */
870 cmd->data[2] |= CMD_INV_IOMMU_PAGES_SIZE_MASK;
Frank Arnolddf805ab2012-08-27 19:21:04 +0200871 if (pde) /* PDE bit - we want to flush everything, not only the PTEs */
Joerg Roedel11b64022011-04-06 11:49:28 +0200872 cmd->data[2] |= CMD_INV_IOMMU_PAGES_PDE_MASK;
873}
874
Joerg Roedelcb41ed82011-04-05 11:00:53 +0200875static void build_inv_iotlb_pages(struct iommu_cmd *cmd, u16 devid, int qdep,
876 u64 address, size_t size)
877{
878 u64 pages;
Quentin Lambertae0cbbb2015-02-04 11:40:07 +0100879 bool s;
Joerg Roedelcb41ed82011-04-05 11:00:53 +0200880
881 pages = iommu_num_pages(address, size, PAGE_SIZE);
Quentin Lambertae0cbbb2015-02-04 11:40:07 +0100882 s = false;
Joerg Roedelcb41ed82011-04-05 11:00:53 +0200883
884 if (pages > 1) {
885 /*
886 * If we have to flush more than one page, flush all
887 * TLB entries for this domain
888 */
889 address = CMD_INV_IOMMU_ALL_PAGES_ADDRESS;
Quentin Lambertae0cbbb2015-02-04 11:40:07 +0100890 s = true;
Joerg Roedelcb41ed82011-04-05 11:00:53 +0200891 }
892
893 address &= PAGE_MASK;
894
895 memset(cmd, 0, sizeof(*cmd));
896 cmd->data[0] = devid;
897 cmd->data[0] |= (qdep & 0xff) << 24;
898 cmd->data[1] = devid;
899 cmd->data[2] = lower_32_bits(address);
900 cmd->data[3] = upper_32_bits(address);
901 CMD_SET_TYPE(cmd, CMD_INV_IOTLB_PAGES);
902 if (s)
903 cmd->data[2] |= CMD_INV_IOMMU_PAGES_SIZE_MASK;
904}
905
Joerg Roedel22e266c2011-11-21 15:59:08 +0100906static void build_inv_iommu_pasid(struct iommu_cmd *cmd, u16 domid, int pasid,
907 u64 address, bool size)
908{
909 memset(cmd, 0, sizeof(*cmd));
910
911 address &= ~(0xfffULL);
912
Suravee Suthikulpanita919a012014-03-05 18:54:18 -0600913 cmd->data[0] = pasid;
Joerg Roedel22e266c2011-11-21 15:59:08 +0100914 cmd->data[1] = domid;
915 cmd->data[2] = lower_32_bits(address);
916 cmd->data[3] = upper_32_bits(address);
917 cmd->data[2] |= CMD_INV_IOMMU_PAGES_PDE_MASK;
918 cmd->data[2] |= CMD_INV_IOMMU_PAGES_GN_MASK;
919 if (size)
920 cmd->data[2] |= CMD_INV_IOMMU_PAGES_SIZE_MASK;
921 CMD_SET_TYPE(cmd, CMD_INV_IOMMU_PAGES);
922}
923
924static void build_inv_iotlb_pasid(struct iommu_cmd *cmd, u16 devid, int pasid,
925 int qdep, u64 address, bool size)
926{
927 memset(cmd, 0, sizeof(*cmd));
928
929 address &= ~(0xfffULL);
930
931 cmd->data[0] = devid;
Jay Cornwalle8d2d822014-02-26 15:49:31 -0600932 cmd->data[0] |= ((pasid >> 8) & 0xff) << 16;
Joerg Roedel22e266c2011-11-21 15:59:08 +0100933 cmd->data[0] |= (qdep & 0xff) << 24;
934 cmd->data[1] = devid;
Jay Cornwalle8d2d822014-02-26 15:49:31 -0600935 cmd->data[1] |= (pasid & 0xff) << 16;
Joerg Roedel22e266c2011-11-21 15:59:08 +0100936 cmd->data[2] = lower_32_bits(address);
937 cmd->data[2] |= CMD_INV_IOMMU_PAGES_GN_MASK;
938 cmd->data[3] = upper_32_bits(address);
939 if (size)
940 cmd->data[2] |= CMD_INV_IOMMU_PAGES_SIZE_MASK;
941 CMD_SET_TYPE(cmd, CMD_INV_IOTLB_PAGES);
942}
943
Joerg Roedelc99afa22011-11-21 18:19:25 +0100944static void build_complete_ppr(struct iommu_cmd *cmd, u16 devid, int pasid,
945 int status, int tag, bool gn)
946{
947 memset(cmd, 0, sizeof(*cmd));
948
949 cmd->data[0] = devid;
950 if (gn) {
Suravee Suthikulpanita919a012014-03-05 18:54:18 -0600951 cmd->data[1] = pasid;
Joerg Roedelc99afa22011-11-21 18:19:25 +0100952 cmd->data[2] = CMD_INV_IOMMU_PAGES_GN_MASK;
953 }
954 cmd->data[3] = tag & 0x1ff;
955 cmd->data[3] |= (status & PPR_STATUS_MASK) << PPR_STATUS_SHIFT;
956
957 CMD_SET_TYPE(cmd, CMD_COMPLETE_PPR);
958}
959
Joerg Roedel58fc7f12011-04-11 11:13:24 +0200960static void build_inv_all(struct iommu_cmd *cmd)
961{
962 memset(cmd, 0, sizeof(*cmd));
963 CMD_SET_TYPE(cmd, CMD_INV_ALL);
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200964}
965
Joerg Roedel7ef27982012-06-21 16:46:04 +0200966static void build_inv_irt(struct iommu_cmd *cmd, u16 devid)
967{
968 memset(cmd, 0, sizeof(*cmd));
969 cmd->data[0] = devid;
970 CMD_SET_TYPE(cmd, CMD_INV_IRT);
971}
972
Joerg Roedel431b2a22008-07-11 17:14:22 +0200973/*
Joerg Roedelb6c02712008-06-26 21:27:53 +0200974 * Writes the command to the IOMMUs command buffer and informs the
Joerg Roedelac0ea6e2011-04-06 18:38:20 +0200975 * hardware about the new command.
Joerg Roedel431b2a22008-07-11 17:14:22 +0200976 */
Joerg Roedelf1ca1512011-09-02 14:10:32 +0200977static int iommu_queue_command_sync(struct amd_iommu *iommu,
978 struct iommu_cmd *cmd,
979 bool sync)
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200980{
Joerg Roedelac0ea6e2011-04-06 18:38:20 +0200981 u32 left, tail, head, next_tail;
Joerg Roedel815b33f2011-04-06 17:26:49 +0200982 unsigned long flags;
Joerg Roedela19ae1e2008-06-26 21:27:55 +0200983
Joerg Roedelac0ea6e2011-04-06 18:38:20 +0200984again:
Joerg Roedel815b33f2011-04-06 17:26:49 +0200985 spin_lock_irqsave(&iommu->lock, flags);
Joerg Roedelac0ea6e2011-04-06 18:38:20 +0200986
987 head = readl(iommu->mmio_base + MMIO_CMD_HEAD_OFFSET);
988 tail = readl(iommu->mmio_base + MMIO_CMD_TAIL_OFFSET);
Joerg Roedeldeba4bc2015-10-20 17:33:41 +0200989 next_tail = (tail + sizeof(*cmd)) % CMD_BUFFER_SIZE;
990 left = (head - next_tail) % CMD_BUFFER_SIZE;
Joerg Roedelac0ea6e2011-04-06 18:38:20 +0200991
992 if (left <= 2) {
993 struct iommu_cmd sync_cmd;
994 volatile u64 sem = 0;
995 int ret;
996
997 build_completion_wait(&sync_cmd, (u64)&sem);
998 copy_cmd_to_buffer(iommu, &sync_cmd, tail);
999
1000 spin_unlock_irqrestore(&iommu->lock, flags);
1001
1002 if ((ret = wait_on_sem(&sem)) != 0)
1003 return ret;
1004
1005 goto again;
Joerg Roedel136f78a2008-07-11 17:14:27 +02001006 }
1007
Joerg Roedelac0ea6e2011-04-06 18:38:20 +02001008 copy_cmd_to_buffer(iommu, cmd, tail);
Joerg Roedel519c31b2008-08-14 19:55:15 +02001009
Joerg Roedelac0ea6e2011-04-06 18:38:20 +02001010 /* We need to sync now to make sure all commands are processed */
Joerg Roedelf1ca1512011-09-02 14:10:32 +02001011 iommu->need_sync = sync;
Joerg Roedelac0ea6e2011-04-06 18:38:20 +02001012
Joerg Roedela19ae1e2008-06-26 21:27:55 +02001013 spin_unlock_irqrestore(&iommu->lock, flags);
1014
Joerg Roedel815b33f2011-04-06 17:26:49 +02001015 return 0;
Joerg Roedel8d201962008-12-02 20:34:41 +01001016}
1017
Joerg Roedelf1ca1512011-09-02 14:10:32 +02001018static int iommu_queue_command(struct amd_iommu *iommu, struct iommu_cmd *cmd)
1019{
1020 return iommu_queue_command_sync(iommu, cmd, true);
1021}
1022
Joerg Roedel8d201962008-12-02 20:34:41 +01001023/*
1024 * This function queues a completion wait command into the command
1025 * buffer of an IOMMU
1026 */
Joerg Roedel8d201962008-12-02 20:34:41 +01001027static int iommu_completion_wait(struct amd_iommu *iommu)
1028{
Joerg Roedel815b33f2011-04-06 17:26:49 +02001029 struct iommu_cmd cmd;
1030 volatile u64 sem = 0;
Joerg Roedelac0ea6e2011-04-06 18:38:20 +02001031 int ret;
Joerg Roedel8d201962008-12-02 20:34:41 +01001032
1033 if (!iommu->need_sync)
Joerg Roedel815b33f2011-04-06 17:26:49 +02001034 return 0;
Joerg Roedel8d201962008-12-02 20:34:41 +01001035
Joerg Roedel815b33f2011-04-06 17:26:49 +02001036 build_completion_wait(&cmd, (u64)&sem);
Joerg Roedel8d201962008-12-02 20:34:41 +01001037
Joerg Roedelf1ca1512011-09-02 14:10:32 +02001038 ret = iommu_queue_command_sync(iommu, &cmd, false);
Joerg Roedel8d201962008-12-02 20:34:41 +01001039 if (ret)
Joerg Roedel815b33f2011-04-06 17:26:49 +02001040 return ret;
Joerg Roedel8d201962008-12-02 20:34:41 +01001041
Joerg Roedelac0ea6e2011-04-06 18:38:20 +02001042 return wait_on_sem(&sem);
Joerg Roedela19ae1e2008-06-26 21:27:55 +02001043}
1044
Joerg Roedeld8c13082011-04-06 18:51:26 +02001045static int iommu_flush_dte(struct amd_iommu *iommu, u16 devid)
Joerg Roedela19ae1e2008-06-26 21:27:55 +02001046{
1047 struct iommu_cmd cmd;
1048
Joerg Roedeld8c13082011-04-06 18:51:26 +02001049 build_inv_dte(&cmd, devid);
Joerg Roedela19ae1e2008-06-26 21:27:55 +02001050
Joerg Roedeld8c13082011-04-06 18:51:26 +02001051 return iommu_queue_command(iommu, &cmd);
1052}
1053
Joerg Roedel7d0c5cc2011-04-07 08:16:10 +02001054static void iommu_flush_dte_all(struct amd_iommu *iommu)
1055{
1056 u32 devid;
1057
1058 for (devid = 0; devid <= 0xffff; ++devid)
1059 iommu_flush_dte(iommu, devid);
1060
1061 iommu_completion_wait(iommu);
Joerg Roedela19ae1e2008-06-26 21:27:55 +02001062}
1063
1064/*
Joerg Roedel7d0c5cc2011-04-07 08:16:10 +02001065 * This function uses heavy locking and may disable irqs for some time. But
1066 * this is no issue because it is only called during resume.
Joerg Roedela19ae1e2008-06-26 21:27:55 +02001067 */
Joerg Roedel7d0c5cc2011-04-07 08:16:10 +02001068static void iommu_flush_tlb_all(struct amd_iommu *iommu)
Joerg Roedela19ae1e2008-06-26 21:27:55 +02001069{
Joerg Roedel7d0c5cc2011-04-07 08:16:10 +02001070 u32 dom_id;
Joerg Roedela19ae1e2008-06-26 21:27:55 +02001071
Joerg Roedel7d0c5cc2011-04-07 08:16:10 +02001072 for (dom_id = 0; dom_id <= 0xffff; ++dom_id) {
1073 struct iommu_cmd cmd;
1074 build_inv_iommu_pages(&cmd, 0, CMD_INV_IOMMU_ALL_PAGES_ADDRESS,
1075 dom_id, 1);
1076 iommu_queue_command(iommu, &cmd);
1077 }
Joerg Roedel431b2a22008-07-11 17:14:22 +02001078
Joerg Roedel7d0c5cc2011-04-07 08:16:10 +02001079 iommu_completion_wait(iommu);
Joerg Roedela19ae1e2008-06-26 21:27:55 +02001080}
1081
Joerg Roedel58fc7f12011-04-11 11:13:24 +02001082static void iommu_flush_all(struct amd_iommu *iommu)
1083{
1084 struct iommu_cmd cmd;
1085
1086 build_inv_all(&cmd);
1087
1088 iommu_queue_command(iommu, &cmd);
1089 iommu_completion_wait(iommu);
1090}
1091
Joerg Roedel7ef27982012-06-21 16:46:04 +02001092static void iommu_flush_irt(struct amd_iommu *iommu, u16 devid)
1093{
1094 struct iommu_cmd cmd;
1095
1096 build_inv_irt(&cmd, devid);
1097
1098 iommu_queue_command(iommu, &cmd);
1099}
1100
1101static void iommu_flush_irt_all(struct amd_iommu *iommu)
1102{
1103 u32 devid;
1104
1105 for (devid = 0; devid <= MAX_DEV_TABLE_ENTRIES; devid++)
1106 iommu_flush_irt(iommu, devid);
1107
1108 iommu_completion_wait(iommu);
1109}
1110
Joerg Roedel7d0c5cc2011-04-07 08:16:10 +02001111void iommu_flush_all_caches(struct amd_iommu *iommu)
1112{
Joerg Roedel58fc7f12011-04-11 11:13:24 +02001113 if (iommu_feature(iommu, FEATURE_IA)) {
1114 iommu_flush_all(iommu);
1115 } else {
1116 iommu_flush_dte_all(iommu);
Joerg Roedel7ef27982012-06-21 16:46:04 +02001117 iommu_flush_irt_all(iommu);
Joerg Roedel58fc7f12011-04-11 11:13:24 +02001118 iommu_flush_tlb_all(iommu);
1119 }
Joerg Roedel7d0c5cc2011-04-07 08:16:10 +02001120}
1121
Joerg Roedel431b2a22008-07-11 17:14:22 +02001122/*
Joerg Roedelcb41ed82011-04-05 11:00:53 +02001123 * Command send function for flushing on-device TLB
1124 */
Joerg Roedel6c542042011-06-09 17:07:31 +02001125static int device_flush_iotlb(struct iommu_dev_data *dev_data,
1126 u64 address, size_t size)
Joerg Roedelcb41ed82011-04-05 11:00:53 +02001127{
Joerg Roedelcb41ed82011-04-05 11:00:53 +02001128 struct amd_iommu *iommu;
1129 struct iommu_cmd cmd;
Joerg Roedelcb41ed82011-04-05 11:00:53 +02001130 int qdep;
1131
Joerg Roedelea61cdd2011-06-09 12:56:30 +02001132 qdep = dev_data->ats.qdep;
1133 iommu = amd_iommu_rlookup_table[dev_data->devid];
Joerg Roedelcb41ed82011-04-05 11:00:53 +02001134
Joerg Roedelea61cdd2011-06-09 12:56:30 +02001135 build_inv_iotlb_pages(&cmd, dev_data->devid, qdep, address, size);
Joerg Roedelcb41ed82011-04-05 11:00:53 +02001136
1137 return iommu_queue_command(iommu, &cmd);
1138}
1139
1140/*
Joerg Roedel431b2a22008-07-11 17:14:22 +02001141 * Command send function for invalidating a device table entry
1142 */
Joerg Roedel6c542042011-06-09 17:07:31 +02001143static int device_flush_dte(struct iommu_dev_data *dev_data)
Joerg Roedel3fa43652009-11-26 15:04:38 +01001144{
1145 struct amd_iommu *iommu;
Joerg Roedele25bfb52015-10-20 17:33:38 +02001146 u16 alias;
Joerg Roedelcb41ed82011-04-05 11:00:53 +02001147 int ret;
Joerg Roedel3fa43652009-11-26 15:04:38 +01001148
Joerg Roedel6c542042011-06-09 17:07:31 +02001149 iommu = amd_iommu_rlookup_table[dev_data->devid];
Joerg Roedele25bfb52015-10-20 17:33:38 +02001150 alias = amd_iommu_alias_table[dev_data->devid];
Joerg Roedel3fa43652009-11-26 15:04:38 +01001151
Joerg Roedelf62dda62011-06-09 12:55:35 +02001152 ret = iommu_flush_dte(iommu, dev_data->devid);
Joerg Roedele25bfb52015-10-20 17:33:38 +02001153 if (!ret && alias != dev_data->devid)
1154 ret = iommu_flush_dte(iommu, alias);
Joerg Roedelcb41ed82011-04-05 11:00:53 +02001155 if (ret)
1156 return ret;
1157
Joerg Roedelea61cdd2011-06-09 12:56:30 +02001158 if (dev_data->ats.enabled)
Joerg Roedel6c542042011-06-09 17:07:31 +02001159 ret = device_flush_iotlb(dev_data, 0, ~0UL);
Joerg Roedelcb41ed82011-04-05 11:00:53 +02001160
1161 return ret;
Joerg Roedel3fa43652009-11-26 15:04:38 +01001162}
1163
Joerg Roedel431b2a22008-07-11 17:14:22 +02001164/*
1165 * TLB invalidation function which is called from the mapping functions.
1166 * It invalidates a single PTE if the range to flush is within a single
1167 * page. Otherwise it flushes the whole TLB of the IOMMU.
1168 */
Joerg Roedel17b124b2011-04-06 18:01:35 +02001169static void __domain_flush_pages(struct protection_domain *domain,
1170 u64 address, size_t size, int pde)
Joerg Roedela19ae1e2008-06-26 21:27:55 +02001171{
Joerg Roedelcb41ed82011-04-05 11:00:53 +02001172 struct iommu_dev_data *dev_data;
Joerg Roedel11b64022011-04-06 11:49:28 +02001173 struct iommu_cmd cmd;
1174 int ret = 0, i;
Joerg Roedela19ae1e2008-06-26 21:27:55 +02001175
Joerg Roedel11b64022011-04-06 11:49:28 +02001176 build_inv_iommu_pages(&cmd, address, size, domain->id, pde);
Joerg Roedel999ba412008-07-03 19:35:08 +02001177
Joerg Roedel6de8ad92009-11-23 18:30:32 +01001178 for (i = 0; i < amd_iommus_present; ++i) {
1179 if (!domain->dev_iommu[i])
1180 continue;
1181
1182 /*
1183 * Devices of this domain are behind this IOMMU
1184 * We need a TLB flush
1185 */
Joerg Roedel11b64022011-04-06 11:49:28 +02001186 ret |= iommu_queue_command(amd_iommus[i], &cmd);
Joerg Roedel6de8ad92009-11-23 18:30:32 +01001187 }
1188
Joerg Roedelcb41ed82011-04-05 11:00:53 +02001189 list_for_each_entry(dev_data, &domain->dev_list, list) {
Joerg Roedelcb41ed82011-04-05 11:00:53 +02001190
Joerg Roedelea61cdd2011-06-09 12:56:30 +02001191 if (!dev_data->ats.enabled)
Joerg Roedelcb41ed82011-04-05 11:00:53 +02001192 continue;
1193
Joerg Roedel6c542042011-06-09 17:07:31 +02001194 ret |= device_flush_iotlb(dev_data, address, size);
Joerg Roedelcb41ed82011-04-05 11:00:53 +02001195 }
1196
Joerg Roedel11b64022011-04-06 11:49:28 +02001197 WARN_ON(ret);
Joerg Roedel6de8ad92009-11-23 18:30:32 +01001198}
1199
Joerg Roedel17b124b2011-04-06 18:01:35 +02001200static void domain_flush_pages(struct protection_domain *domain,
1201 u64 address, size_t size)
Joerg Roedel6de8ad92009-11-23 18:30:32 +01001202{
Joerg Roedel17b124b2011-04-06 18:01:35 +02001203 __domain_flush_pages(domain, address, size, 0);
Joerg Roedela19ae1e2008-06-26 21:27:55 +02001204}
Joerg Roedelb6c02712008-06-26 21:27:53 +02001205
Joerg Roedel1c655772008-09-04 18:40:05 +02001206/* Flush the whole IO/TLB for a given protection domain */
Joerg Roedel17b124b2011-04-06 18:01:35 +02001207static void domain_flush_tlb(struct protection_domain *domain)
Joerg Roedel1c655772008-09-04 18:40:05 +02001208{
Joerg Roedel17b124b2011-04-06 18:01:35 +02001209 __domain_flush_pages(domain, 0, CMD_INV_IOMMU_ALL_PAGES_ADDRESS, 0);
Joerg Roedel1c655772008-09-04 18:40:05 +02001210}
1211
Chris Wright42a49f92009-06-15 15:42:00 +02001212/* Flush the whole IO/TLB for a given protection domain - including PDE */
Joerg Roedel17b124b2011-04-06 18:01:35 +02001213static void domain_flush_tlb_pde(struct protection_domain *domain)
Chris Wright42a49f92009-06-15 15:42:00 +02001214{
Joerg Roedel17b124b2011-04-06 18:01:35 +02001215 __domain_flush_pages(domain, 0, CMD_INV_IOMMU_ALL_PAGES_ADDRESS, 1);
1216}
1217
1218static void domain_flush_complete(struct protection_domain *domain)
Joerg Roedelb6c02712008-06-26 21:27:53 +02001219{
1220 int i;
1221
1222 for (i = 0; i < amd_iommus_present; ++i) {
1223 if (!domain->dev_iommu[i])
1224 continue;
1225
1226 /*
1227 * Devices of this domain are behind this IOMMU
1228 * We need to wait for completion of all commands.
1229 */
1230 iommu_completion_wait(amd_iommus[i]);
1231 }
1232}
1233
Joerg Roedelb00d3bc2009-11-26 15:35:33 +01001234
Joerg Roedel43f49602008-12-02 21:01:12 +01001235/*
Joerg Roedelb00d3bc2009-11-26 15:35:33 +01001236 * This function flushes the DTEs for all devices in domain
Joerg Roedel43f49602008-12-02 21:01:12 +01001237 */
Joerg Roedel17b124b2011-04-06 18:01:35 +02001238static void domain_flush_devices(struct protection_domain *domain)
Joerg Roedelbfd1be12009-05-05 15:33:57 +02001239{
Joerg Roedelb00d3bc2009-11-26 15:35:33 +01001240 struct iommu_dev_data *dev_data;
Joerg Roedelb00d3bc2009-11-26 15:35:33 +01001241
1242 list_for_each_entry(dev_data, &domain->dev_list, list)
Joerg Roedel6c542042011-06-09 17:07:31 +02001243 device_flush_dte(dev_data);
Joerg Roedelb00d3bc2009-11-26 15:35:33 +01001244}
1245
Joerg Roedel431b2a22008-07-11 17:14:22 +02001246/****************************************************************************
1247 *
1248 * The functions below are used the create the page table mappings for
1249 * unity mapped regions.
1250 *
1251 ****************************************************************************/
1252
1253/*
Joerg Roedel308973d2009-11-24 17:43:32 +01001254 * This function is used to add another level to an IO page table. Adding
1255 * another level increases the size of the address space by 9 bits to a size up
1256 * to 64 bits.
1257 */
1258static bool increase_address_space(struct protection_domain *domain,
1259 gfp_t gfp)
1260{
1261 u64 *pte;
1262
1263 if (domain->mode == PAGE_MODE_6_LEVEL)
1264 /* address space already 64 bit large */
1265 return false;
1266
1267 pte = (void *)get_zeroed_page(gfp);
1268 if (!pte)
1269 return false;
1270
1271 *pte = PM_LEVEL_PDE(domain->mode,
1272 virt_to_phys(domain->pt_root));
1273 domain->pt_root = pte;
1274 domain->mode += 1;
1275 domain->updated = true;
1276
1277 return true;
1278}
1279
1280static u64 *alloc_pte(struct protection_domain *domain,
1281 unsigned long address,
Joerg Roedelcbb9d722010-01-15 14:41:15 +01001282 unsigned long page_size,
Joerg Roedel308973d2009-11-24 17:43:32 +01001283 u64 **pte_page,
1284 gfp_t gfp)
1285{
Joerg Roedelcbb9d722010-01-15 14:41:15 +01001286 int level, end_lvl;
Joerg Roedel308973d2009-11-24 17:43:32 +01001287 u64 *pte, *page;
Joerg Roedelcbb9d722010-01-15 14:41:15 +01001288
1289 BUG_ON(!is_power_of_2(page_size));
Joerg Roedel308973d2009-11-24 17:43:32 +01001290
1291 while (address > PM_LEVEL_SIZE(domain->mode))
1292 increase_address_space(domain, gfp);
1293
Joerg Roedelcbb9d722010-01-15 14:41:15 +01001294 level = domain->mode - 1;
1295 pte = &domain->pt_root[PM_LEVEL_INDEX(level, address)];
1296 address = PAGE_SIZE_ALIGN(address, page_size);
1297 end_lvl = PAGE_SIZE_LEVEL(page_size);
Joerg Roedel308973d2009-11-24 17:43:32 +01001298
1299 while (level > end_lvl) {
Joerg Roedel7bfa5bd2015-12-21 19:07:50 +01001300 u64 __pte, __npte;
1301
1302 __pte = *pte;
1303
1304 if (!IOMMU_PTE_PRESENT(__pte)) {
Joerg Roedel308973d2009-11-24 17:43:32 +01001305 page = (u64 *)get_zeroed_page(gfp);
1306 if (!page)
1307 return NULL;
Joerg Roedel7bfa5bd2015-12-21 19:07:50 +01001308
1309 __npte = PM_LEVEL_PDE(level, virt_to_phys(page));
1310
1311 if (cmpxchg64(pte, __pte, __npte)) {
1312 free_page((unsigned long)page);
1313 continue;
1314 }
Joerg Roedel308973d2009-11-24 17:43:32 +01001315 }
1316
Joerg Roedelcbb9d722010-01-15 14:41:15 +01001317 /* No level skipping support yet */
1318 if (PM_PTE_LEVEL(*pte) != level)
1319 return NULL;
1320
Joerg Roedel308973d2009-11-24 17:43:32 +01001321 level -= 1;
1322
1323 pte = IOMMU_PTE_PAGE(*pte);
1324
1325 if (pte_page && level == end_lvl)
1326 *pte_page = pte;
1327
1328 pte = &pte[PM_LEVEL_INDEX(level, address)];
1329 }
1330
1331 return pte;
1332}
1333
1334/*
1335 * This function checks if there is a PTE for a given dma address. If
1336 * there is one, it returns the pointer to it.
1337 */
Joerg Roedel3039ca12015-04-01 14:58:48 +02001338static u64 *fetch_pte(struct protection_domain *domain,
1339 unsigned long address,
1340 unsigned long *page_size)
Joerg Roedel308973d2009-11-24 17:43:32 +01001341{
1342 int level;
1343 u64 *pte;
1344
Joerg Roedel24cd7722010-01-19 17:27:39 +01001345 if (address > PM_LEVEL_SIZE(domain->mode))
1346 return NULL;
Joerg Roedel308973d2009-11-24 17:43:32 +01001347
Joerg Roedel3039ca12015-04-01 14:58:48 +02001348 level = domain->mode - 1;
1349 pte = &domain->pt_root[PM_LEVEL_INDEX(level, address)];
1350 *page_size = PTE_LEVEL_PAGE_SIZE(level);
Joerg Roedel24cd7722010-01-19 17:27:39 +01001351
1352 while (level > 0) {
1353
1354 /* Not Present */
Joerg Roedel308973d2009-11-24 17:43:32 +01001355 if (!IOMMU_PTE_PRESENT(*pte))
1356 return NULL;
1357
Joerg Roedel24cd7722010-01-19 17:27:39 +01001358 /* Large PTE */
Joerg Roedel3039ca12015-04-01 14:58:48 +02001359 if (PM_PTE_LEVEL(*pte) == 7 ||
1360 PM_PTE_LEVEL(*pte) == 0)
1361 break;
Joerg Roedel24cd7722010-01-19 17:27:39 +01001362
1363 /* No level skipping support yet */
1364 if (PM_PTE_LEVEL(*pte) != level)
1365 return NULL;
1366
Joerg Roedel308973d2009-11-24 17:43:32 +01001367 level -= 1;
1368
Joerg Roedel24cd7722010-01-19 17:27:39 +01001369 /* Walk to the next level */
Joerg Roedel3039ca12015-04-01 14:58:48 +02001370 pte = IOMMU_PTE_PAGE(*pte);
1371 pte = &pte[PM_LEVEL_INDEX(level, address)];
1372 *page_size = PTE_LEVEL_PAGE_SIZE(level);
1373 }
1374
1375 if (PM_PTE_LEVEL(*pte) == 0x07) {
1376 unsigned long pte_mask;
1377
1378 /*
1379 * If we have a series of large PTEs, make
1380 * sure to return a pointer to the first one.
1381 */
1382 *page_size = pte_mask = PTE_PAGE_SIZE(*pte);
1383 pte_mask = ~((PAGE_SIZE_PTE_COUNT(pte_mask) << 3) - 1);
1384 pte = (u64 *)(((unsigned long)pte) & pte_mask);
Joerg Roedel308973d2009-11-24 17:43:32 +01001385 }
1386
1387 return pte;
1388}
1389
1390/*
Joerg Roedel431b2a22008-07-11 17:14:22 +02001391 * Generic mapping functions. It maps a physical address into a DMA
1392 * address space. It allocates the page table pages if necessary.
1393 * In the future it can be extended to a generic mapping function
1394 * supporting all features of AMD IOMMU page tables like level skipping
1395 * and full 64 bit address spaces.
1396 */
Joerg Roedel38e817f2008-12-02 17:27:52 +01001397static int iommu_map_page(struct protection_domain *dom,
1398 unsigned long bus_addr,
1399 unsigned long phys_addr,
Joerg Roedelabdc5eb2009-09-03 11:33:51 +02001400 int prot,
Joerg Roedelcbb9d722010-01-15 14:41:15 +01001401 unsigned long page_size)
Joerg Roedelbd0e5212008-06-26 21:27:56 +02001402{
Joerg Roedel8bda3092009-05-12 12:02:46 +02001403 u64 __pte, *pte;
Joerg Roedelcbb9d722010-01-15 14:41:15 +01001404 int i, count;
Joerg Roedelabdc5eb2009-09-03 11:33:51 +02001405
Joerg Roedeld4b03662015-04-01 14:58:52 +02001406 BUG_ON(!IS_ALIGNED(bus_addr, page_size));
1407 BUG_ON(!IS_ALIGNED(phys_addr, page_size));
1408
Joerg Roedelbad1cac2009-09-02 16:52:23 +02001409 if (!(prot & IOMMU_PROT_MASK))
Joerg Roedelbd0e5212008-06-26 21:27:56 +02001410 return -EINVAL;
1411
Joerg Roedeld4b03662015-04-01 14:58:52 +02001412 count = PAGE_SIZE_PTE_COUNT(page_size);
1413 pte = alloc_pte(dom, bus_addr, page_size, NULL, GFP_KERNEL);
Joerg Roedelbd0e5212008-06-26 21:27:56 +02001414
Maurizio Lombardi63eaa752014-09-11 12:28:03 +02001415 if (!pte)
1416 return -ENOMEM;
1417
Joerg Roedelcbb9d722010-01-15 14:41:15 +01001418 for (i = 0; i < count; ++i)
1419 if (IOMMU_PTE_PRESENT(pte[i]))
1420 return -EBUSY;
Joerg Roedelbd0e5212008-06-26 21:27:56 +02001421
Joerg Roedeld4b03662015-04-01 14:58:52 +02001422 if (count > 1) {
Joerg Roedelcbb9d722010-01-15 14:41:15 +01001423 __pte = PAGE_SIZE_PTE(phys_addr, page_size);
1424 __pte |= PM_LEVEL_ENC(7) | IOMMU_PTE_P | IOMMU_PTE_FC;
1425 } else
1426 __pte = phys_addr | IOMMU_PTE_P | IOMMU_PTE_FC;
1427
Joerg Roedelbd0e5212008-06-26 21:27:56 +02001428 if (prot & IOMMU_PROT_IR)
1429 __pte |= IOMMU_PTE_IR;
1430 if (prot & IOMMU_PROT_IW)
1431 __pte |= IOMMU_PTE_IW;
1432
Joerg Roedelcbb9d722010-01-15 14:41:15 +01001433 for (i = 0; i < count; ++i)
1434 pte[i] = __pte;
Joerg Roedelbd0e5212008-06-26 21:27:56 +02001435
Joerg Roedel04bfdd82009-09-02 16:00:23 +02001436 update_domain(dom);
1437
Joerg Roedelbd0e5212008-06-26 21:27:56 +02001438 return 0;
1439}
1440
Joerg Roedel24cd7722010-01-19 17:27:39 +01001441static unsigned long iommu_unmap_page(struct protection_domain *dom,
1442 unsigned long bus_addr,
1443 unsigned long page_size)
Joerg Roedeleb74ff62008-12-02 19:59:10 +01001444{
Joerg Roedel71b390e2015-04-01 14:58:49 +02001445 unsigned long long unmapped;
1446 unsigned long unmap_size;
Joerg Roedel24cd7722010-01-19 17:27:39 +01001447 u64 *pte;
Joerg Roedeleb74ff62008-12-02 19:59:10 +01001448
Joerg Roedel24cd7722010-01-19 17:27:39 +01001449 BUG_ON(!is_power_of_2(page_size));
1450
1451 unmapped = 0;
1452
1453 while (unmapped < page_size) {
1454
Joerg Roedel71b390e2015-04-01 14:58:49 +02001455 pte = fetch_pte(dom, bus_addr, &unmap_size);
Joerg Roedel24cd7722010-01-19 17:27:39 +01001456
Joerg Roedel71b390e2015-04-01 14:58:49 +02001457 if (pte) {
1458 int i, count;
Joerg Roedel24cd7722010-01-19 17:27:39 +01001459
Joerg Roedel71b390e2015-04-01 14:58:49 +02001460 count = PAGE_SIZE_PTE_COUNT(unmap_size);
Joerg Roedel24cd7722010-01-19 17:27:39 +01001461 for (i = 0; i < count; i++)
1462 pte[i] = 0ULL;
1463 }
1464
1465 bus_addr = (bus_addr & ~(unmap_size - 1)) + unmap_size;
1466 unmapped += unmap_size;
1467 }
1468
Alex Williamson60d0ca32013-06-21 14:33:19 -06001469 BUG_ON(unmapped && !is_power_of_2(unmapped));
Joerg Roedel24cd7722010-01-19 17:27:39 +01001470
1471 return unmapped;
Joerg Roedeleb74ff62008-12-02 19:59:10 +01001472}
Joerg Roedeleb74ff62008-12-02 19:59:10 +01001473
Joerg Roedel431b2a22008-07-11 17:14:22 +02001474/****************************************************************************
1475 *
1476 * The next functions belong to the address allocator for the dma_ops
1477 * interface functions. They work like the allocators in the other IOMMU
1478 * drivers. Its basically a bitmap which marks the allocated pages in
1479 * the aperture. Maybe it could be enhanced in the future to a more
1480 * efficient allocator.
1481 *
1482 ****************************************************************************/
Joerg Roedeld3086442008-06-26 21:27:57 +02001483
Joerg Roedel431b2a22008-07-11 17:14:22 +02001484/*
Joerg Roedel384de722009-05-15 12:30:05 +02001485 * The address allocator core functions.
Joerg Roedel431b2a22008-07-11 17:14:22 +02001486 *
1487 * called with domain->lock held
1488 */
Joerg Roedel384de722009-05-15 12:30:05 +02001489
Joerg Roedel9cabe892009-05-18 16:38:55 +02001490/*
Joerg Roedel171e7b32009-11-24 17:47:56 +01001491 * Used to reserve address ranges in the aperture (e.g. for exclusion
1492 * ranges.
1493 */
1494static void dma_ops_reserve_addresses(struct dma_ops_domain *dom,
1495 unsigned long start_page,
1496 unsigned int pages)
1497{
1498 unsigned int i, last_page = dom->aperture_size >> PAGE_SHIFT;
1499
1500 if (start_page + pages > last_page)
1501 pages = last_page - start_page;
1502
1503 for (i = start_page; i < start_page + pages; ++i) {
1504 int index = i / APERTURE_RANGE_PAGES;
1505 int page = i % APERTURE_RANGE_PAGES;
1506 __set_bit(page, dom->aperture[index]->bitmap);
1507 }
1508}
1509
1510/*
Joerg Roedel9cabe892009-05-18 16:38:55 +02001511 * This function is used to add a new aperture range to an existing
1512 * aperture in case of dma_ops domain allocation or address allocation
1513 * failure.
1514 */
Joerg Roedel576175c2009-11-23 19:08:46 +01001515static int alloc_new_range(struct dma_ops_domain *dma_dom,
Joerg Roedel9cabe892009-05-18 16:38:55 +02001516 bool populate, gfp_t gfp)
1517{
1518 int index = dma_dom->aperture_size >> APERTURE_RANGE_SHIFT;
Joerg Roedel5d7c94c2015-04-01 14:58:50 +02001519 unsigned long i, old_size, pte_pgsize;
Joerg Roedela73c1562015-12-21 19:25:56 +01001520 struct aperture_range *range;
1521 struct amd_iommu *iommu;
1522 unsigned long flags;
Joerg Roedel9cabe892009-05-18 16:38:55 +02001523
Joerg Roedelf5e97052009-05-22 12:31:53 +02001524#ifdef CONFIG_IOMMU_STRESS
1525 populate = false;
1526#endif
1527
Joerg Roedel9cabe892009-05-18 16:38:55 +02001528 if (index >= APERTURE_MAX_RANGES)
1529 return -ENOMEM;
1530
Joerg Roedela73c1562015-12-21 19:25:56 +01001531 range = kzalloc(sizeof(struct aperture_range), gfp);
1532 if (!range)
Joerg Roedel9cabe892009-05-18 16:38:55 +02001533 return -ENOMEM;
1534
Joerg Roedela73c1562015-12-21 19:25:56 +01001535 range->bitmap = (void *)get_zeroed_page(gfp);
1536 if (!range->bitmap)
Joerg Roedel9cabe892009-05-18 16:38:55 +02001537 goto out_free;
1538
Joerg Roedela73c1562015-12-21 19:25:56 +01001539 range->offset = dma_dom->aperture_size;
Joerg Roedel9cabe892009-05-18 16:38:55 +02001540
Joerg Roedela73c1562015-12-21 19:25:56 +01001541 spin_lock_init(&range->bitmap_lock);
Joerg Roedel08c5fb92015-12-21 13:04:49 +01001542
Joerg Roedel9cabe892009-05-18 16:38:55 +02001543 if (populate) {
1544 unsigned long address = dma_dom->aperture_size;
1545 int i, num_ptes = APERTURE_RANGE_PAGES / 512;
1546 u64 *pte, *pte_page;
1547
1548 for (i = 0; i < num_ptes; ++i) {
Joerg Roedelcbb9d722010-01-15 14:41:15 +01001549 pte = alloc_pte(&dma_dom->domain, address, PAGE_SIZE,
Joerg Roedel9cabe892009-05-18 16:38:55 +02001550 &pte_page, gfp);
1551 if (!pte)
1552 goto out_free;
1553
Joerg Roedela73c1562015-12-21 19:25:56 +01001554 range->pte_pages[i] = pte_page;
Joerg Roedel9cabe892009-05-18 16:38:55 +02001555
1556 address += APERTURE_RANGE_SIZE / 64;
1557 }
1558 }
1559
Joerg Roedel92d420e2015-12-21 19:31:33 +01001560 spin_lock_irqsave(&dma_dom->domain.lock, flags);
1561
Joerg Roedela73c1562015-12-21 19:25:56 +01001562 /* First take the bitmap_lock and then publish the range */
Joerg Roedel92d420e2015-12-21 19:31:33 +01001563 spin_lock(&range->bitmap_lock);
Joerg Roedela73c1562015-12-21 19:25:56 +01001564
1565 old_size = dma_dom->aperture_size;
1566 dma_dom->aperture[index] = range;
1567 dma_dom->aperture_size += APERTURE_RANGE_SIZE;
Joerg Roedel9cabe892009-05-18 16:38:55 +02001568
Joerg Roedel17f5b562011-07-06 17:14:44 +02001569 /* Reserve address range used for MSI messages */
1570 if (old_size < MSI_ADDR_BASE_LO &&
1571 dma_dom->aperture_size > MSI_ADDR_BASE_LO) {
1572 unsigned long spage;
1573 int pages;
1574
1575 pages = iommu_num_pages(MSI_ADDR_BASE_LO, 0x10000, PAGE_SIZE);
1576 spage = MSI_ADDR_BASE_LO >> PAGE_SHIFT;
1577
1578 dma_ops_reserve_addresses(dma_dom, spage, pages);
1579 }
1580
Uwe Kleine-Königb5950762010-11-01 15:38:34 -04001581 /* Initialize the exclusion range if necessary */
Joerg Roedel576175c2009-11-23 19:08:46 +01001582 for_each_iommu(iommu) {
1583 if (iommu->exclusion_start &&
1584 iommu->exclusion_start >= dma_dom->aperture[index]->offset
1585 && iommu->exclusion_start < dma_dom->aperture_size) {
1586 unsigned long startpage;
1587 int pages = iommu_num_pages(iommu->exclusion_start,
1588 iommu->exclusion_length,
1589 PAGE_SIZE);
1590 startpage = iommu->exclusion_start >> PAGE_SHIFT;
1591 dma_ops_reserve_addresses(dma_dom, startpage, pages);
1592 }
Joerg Roedel00cd1222009-05-19 09:52:40 +02001593 }
1594
1595 /*
1596 * Check for areas already mapped as present in the new aperture
1597 * range and mark those pages as reserved in the allocator. Such
1598 * mappings may already exist as a result of requested unity
1599 * mappings for devices.
1600 */
1601 for (i = dma_dom->aperture[index]->offset;
1602 i < dma_dom->aperture_size;
Joerg Roedel5d7c94c2015-04-01 14:58:50 +02001603 i += pte_pgsize) {
Joerg Roedel3039ca12015-04-01 14:58:48 +02001604 u64 *pte = fetch_pte(&dma_dom->domain, i, &pte_pgsize);
Joerg Roedel00cd1222009-05-19 09:52:40 +02001605 if (!pte || !IOMMU_PTE_PRESENT(*pte))
1606 continue;
1607
Joerg Roedel5d7c94c2015-04-01 14:58:50 +02001608 dma_ops_reserve_addresses(dma_dom, i >> PAGE_SHIFT,
1609 pte_pgsize >> 12);
Joerg Roedel00cd1222009-05-19 09:52:40 +02001610 }
1611
Joerg Roedel04bfdd82009-09-02 16:00:23 +02001612 update_domain(&dma_dom->domain);
1613
Joerg Roedel92d420e2015-12-21 19:31:33 +01001614 spin_unlock(&range->bitmap_lock);
1615
1616 spin_unlock_irqrestore(&dma_dom->domain.lock, flags);
Joerg Roedela73c1562015-12-21 19:25:56 +01001617
Joerg Roedel9cabe892009-05-18 16:38:55 +02001618 return 0;
1619
1620out_free:
Joerg Roedel04bfdd82009-09-02 16:00:23 +02001621 update_domain(&dma_dom->domain);
1622
Joerg Roedela73c1562015-12-21 19:25:56 +01001623 free_page((unsigned long)range->bitmap);
Joerg Roedel9cabe892009-05-18 16:38:55 +02001624
Joerg Roedela73c1562015-12-21 19:25:56 +01001625 kfree(range);
Joerg Roedel9cabe892009-05-18 16:38:55 +02001626
1627 return -ENOMEM;
1628}
1629
Joerg Roedelccb50e02015-12-21 17:49:34 +01001630static dma_addr_t dma_ops_aperture_alloc(struct dma_ops_domain *dom,
1631 struct aperture_range *range,
Joerg Roedela0f51442015-12-21 16:20:09 +01001632 unsigned long pages,
Joerg Roedela0f51442015-12-21 16:20:09 +01001633 unsigned long dma_mask,
1634 unsigned long boundary_size,
Joerg Roedel7b5e25b2015-12-22 13:38:12 +01001635 unsigned long align_mask,
1636 bool trylock)
Joerg Roedela0f51442015-12-21 16:20:09 +01001637{
1638 unsigned long offset, limit, flags;
1639 dma_addr_t address;
Joerg Roedelccb50e02015-12-21 17:49:34 +01001640 bool flush = false;
Joerg Roedela0f51442015-12-21 16:20:09 +01001641
1642 offset = range->offset >> PAGE_SHIFT;
1643 limit = iommu_device_max_index(APERTURE_RANGE_PAGES, offset,
1644 dma_mask >> PAGE_SHIFT);
1645
Joerg Roedel7b5e25b2015-12-22 13:38:12 +01001646 if (trylock) {
1647 if (!spin_trylock_irqsave(&range->bitmap_lock, flags))
1648 return -1;
1649 } else {
1650 spin_lock_irqsave(&range->bitmap_lock, flags);
1651 }
1652
Joerg Roedel60e6a7c2015-12-21 16:53:17 +01001653 address = iommu_area_alloc(range->bitmap, limit, range->next_bit,
1654 pages, offset, boundary_size, align_mask);
Joerg Roedelccb50e02015-12-21 17:49:34 +01001655 if (address == -1) {
Joerg Roedel60e6a7c2015-12-21 16:53:17 +01001656 /* Nothing found, retry one time */
1657 address = iommu_area_alloc(range->bitmap, limit,
1658 0, pages, offset, boundary_size,
1659 align_mask);
Joerg Roedelccb50e02015-12-21 17:49:34 +01001660 flush = true;
1661 }
Joerg Roedel60e6a7c2015-12-21 16:53:17 +01001662
1663 if (address != -1)
1664 range->next_bit = address + pages;
1665
Joerg Roedela0f51442015-12-21 16:20:09 +01001666 spin_unlock_irqrestore(&range->bitmap_lock, flags);
1667
Joerg Roedelccb50e02015-12-21 17:49:34 +01001668 if (flush) {
1669 domain_flush_tlb(&dom->domain);
1670 domain_flush_complete(&dom->domain);
1671 }
1672
Joerg Roedela0f51442015-12-21 16:20:09 +01001673 return address;
1674}
1675
Joerg Roedel384de722009-05-15 12:30:05 +02001676static unsigned long dma_ops_area_alloc(struct device *dev,
1677 struct dma_ops_domain *dom,
1678 unsigned int pages,
1679 unsigned long align_mask,
Joerg Roedel05ab49e2015-12-21 17:58:26 +01001680 u64 dma_mask)
Joerg Roedel384de722009-05-15 12:30:05 +02001681{
Joerg Roedelab7032b2015-12-21 18:47:11 +01001682 unsigned long boundary_size, mask;
Joerg Roedel384de722009-05-15 12:30:05 +02001683 unsigned long address = -1;
Joerg Roedel7b5e25b2015-12-22 13:38:12 +01001684 bool first = true;
Joerg Roedel5f6bed52015-12-22 13:34:22 +01001685 u32 start, i;
1686
1687 preempt_disable();
Joerg Roedel384de722009-05-15 12:30:05 +02001688
Joerg Roedele6aabee2015-05-27 09:26:09 +02001689 mask = dma_get_seg_boundary(dev);
1690
Joerg Roedel7b5e25b2015-12-22 13:38:12 +01001691again:
Joerg Roedel5f6bed52015-12-22 13:34:22 +01001692 start = this_cpu_read(*dom->next_index);
1693
1694 /* Sanity check - is it really necessary? */
1695 if (unlikely(start > APERTURE_MAX_RANGES)) {
1696 start = 0;
1697 this_cpu_write(*dom->next_index, 0);
1698 }
1699
Joerg Roedele6aabee2015-05-27 09:26:09 +02001700 boundary_size = mask + 1 ? ALIGN(mask + 1, PAGE_SIZE) >> PAGE_SHIFT :
1701 1UL << (BITS_PER_LONG - PAGE_SHIFT);
Joerg Roedel384de722009-05-15 12:30:05 +02001702
Joerg Roedel2a874422015-12-21 18:34:47 +01001703 for (i = 0; i < APERTURE_MAX_RANGES; ++i) {
1704 struct aperture_range *range;
Joerg Roedel5f6bed52015-12-22 13:34:22 +01001705 int index;
Joerg Roedelccb50e02015-12-21 17:49:34 +01001706
Joerg Roedel5f6bed52015-12-22 13:34:22 +01001707 index = (start + i) % APERTURE_MAX_RANGES;
1708
1709 range = dom->aperture[index];
Joerg Roedel2a874422015-12-21 18:34:47 +01001710
1711 if (!range || range->offset >= dma_mask)
1712 continue;
Joerg Roedel384de722009-05-15 12:30:05 +02001713
Joerg Roedel2a874422015-12-21 18:34:47 +01001714 address = dma_ops_aperture_alloc(dom, range, pages,
Joerg Roedel60e6a7c2015-12-21 16:53:17 +01001715 dma_mask, boundary_size,
Joerg Roedel7b5e25b2015-12-22 13:38:12 +01001716 align_mask, first);
Joerg Roedel384de722009-05-15 12:30:05 +02001717 if (address != -1) {
Joerg Roedel2a874422015-12-21 18:34:47 +01001718 address = range->offset + (address << PAGE_SHIFT);
Joerg Roedel5f6bed52015-12-22 13:34:22 +01001719 this_cpu_write(*dom->next_index, index);
Joerg Roedel384de722009-05-15 12:30:05 +02001720 break;
1721 }
Joerg Roedel384de722009-05-15 12:30:05 +02001722 }
1723
Joerg Roedel7b5e25b2015-12-22 13:38:12 +01001724 if (address == -1 && first) {
1725 first = false;
1726 goto again;
1727 }
1728
Joerg Roedel5f6bed52015-12-22 13:34:22 +01001729 preempt_enable();
1730
Joerg Roedel384de722009-05-15 12:30:05 +02001731 return address;
1732}
1733
Joerg Roedeld3086442008-06-26 21:27:57 +02001734static unsigned long dma_ops_alloc_addresses(struct device *dev,
1735 struct dma_ops_domain *dom,
Joerg Roedel6d4f3432008-09-04 19:18:02 +02001736 unsigned int pages,
Joerg Roedel832a90c2008-09-18 15:54:23 +02001737 unsigned long align_mask,
1738 u64 dma_mask)
Joerg Roedeld3086442008-06-26 21:27:57 +02001739{
Joerg Roedel266a3bd2015-12-21 18:54:24 +01001740 unsigned long address = -1;
Joerg Roedeld3086442008-06-26 21:27:57 +02001741
Joerg Roedel266a3bd2015-12-21 18:54:24 +01001742 while (address == -1) {
1743 address = dma_ops_area_alloc(dev, dom, pages,
1744 align_mask, dma_mask);
1745
Joerg Roedel7bfa5bd2015-12-21 19:07:50 +01001746 if (address == -1 && alloc_new_range(dom, false, GFP_ATOMIC))
Joerg Roedel266a3bd2015-12-21 18:54:24 +01001747 break;
1748 }
Joerg Roedeld3086442008-06-26 21:27:57 +02001749
Joerg Roedel384de722009-05-15 12:30:05 +02001750 if (unlikely(address == -1))
FUJITA Tomonori8fd524b2009-11-15 21:19:53 +09001751 address = DMA_ERROR_CODE;
Joerg Roedeld3086442008-06-26 21:27:57 +02001752
1753 WARN_ON((address + (PAGE_SIZE*pages)) > dom->aperture_size);
1754
1755 return address;
1756}
1757
Joerg Roedel431b2a22008-07-11 17:14:22 +02001758/*
1759 * The address free function.
1760 *
1761 * called with domain->lock held
1762 */
Joerg Roedeld3086442008-06-26 21:27:57 +02001763static void dma_ops_free_addresses(struct dma_ops_domain *dom,
1764 unsigned long address,
1765 unsigned int pages)
1766{
Joerg Roedel384de722009-05-15 12:30:05 +02001767 unsigned i = address >> APERTURE_RANGE_SHIFT;
1768 struct aperture_range *range = dom->aperture[i];
Joerg Roedel08c5fb92015-12-21 13:04:49 +01001769 unsigned long flags;
Joerg Roedel80be3082008-11-06 14:59:05 +01001770
Joerg Roedel384de722009-05-15 12:30:05 +02001771 BUG_ON(i >= APERTURE_MAX_RANGES || range == NULL);
1772
Joerg Roedel47bccd62009-05-22 12:40:54 +02001773#ifdef CONFIG_IOMMU_STRESS
1774 if (i < 4)
1775 return;
1776#endif
1777
Joerg Roedel4eeca8c2015-12-22 12:15:35 +01001778 if (amd_iommu_unmap_flush) {
Joerg Roedeld41ab092015-12-21 18:20:03 +01001779 domain_flush_tlb(&dom->domain);
1780 domain_flush_complete(&dom->domain);
1781 }
Joerg Roedel384de722009-05-15 12:30:05 +02001782
1783 address = (address % APERTURE_RANGE_SIZE) >> PAGE_SHIFT;
Joerg Roedel803b8cb2009-05-18 15:32:48 +02001784
Joerg Roedel08c5fb92015-12-21 13:04:49 +01001785 spin_lock_irqsave(&range->bitmap_lock, flags);
Joerg Roedel4eeca8c2015-12-22 12:15:35 +01001786 if (address + pages > range->next_bit)
1787 range->next_bit = address + pages;
Akinobu Mitaa66022c2009-12-15 16:48:28 -08001788 bitmap_clear(range->bitmap, address, pages);
Joerg Roedel08c5fb92015-12-21 13:04:49 +01001789 spin_unlock_irqrestore(&range->bitmap_lock, flags);
Joerg Roedel384de722009-05-15 12:30:05 +02001790
Joerg Roedeld3086442008-06-26 21:27:57 +02001791}
1792
Joerg Roedel431b2a22008-07-11 17:14:22 +02001793/****************************************************************************
1794 *
1795 * The next functions belong to the domain allocation. A domain is
1796 * allocated for every IOMMU as the default domain. If device isolation
1797 * is enabled, every device get its own domain. The most important thing
1798 * about domains is the page table mapping the DMA address space they
1799 * contain.
1800 *
1801 ****************************************************************************/
1802
Joerg Roedelaeb26f52009-11-20 16:44:01 +01001803/*
1804 * This function adds a protection domain to the global protection domain list
1805 */
1806static void add_domain_to_list(struct protection_domain *domain)
1807{
1808 unsigned long flags;
1809
1810 spin_lock_irqsave(&amd_iommu_pd_lock, flags);
1811 list_add(&domain->list, &amd_iommu_pd_list);
1812 spin_unlock_irqrestore(&amd_iommu_pd_lock, flags);
1813}
1814
1815/*
1816 * This function removes a protection domain to the global
1817 * protection domain list
1818 */
1819static void del_domain_from_list(struct protection_domain *domain)
1820{
1821 unsigned long flags;
1822
1823 spin_lock_irqsave(&amd_iommu_pd_lock, flags);
1824 list_del(&domain->list);
1825 spin_unlock_irqrestore(&amd_iommu_pd_lock, flags);
1826}
1827
Joerg Roedelec487d12008-06-26 21:27:58 +02001828static u16 domain_id_alloc(void)
1829{
1830 unsigned long flags;
1831 int id;
1832
1833 write_lock_irqsave(&amd_iommu_devtable_lock, flags);
1834 id = find_first_zero_bit(amd_iommu_pd_alloc_bitmap, MAX_DOMAIN_ID);
1835 BUG_ON(id == 0);
1836 if (id > 0 && id < MAX_DOMAIN_ID)
1837 __set_bit(id, amd_iommu_pd_alloc_bitmap);
1838 else
1839 id = 0;
1840 write_unlock_irqrestore(&amd_iommu_devtable_lock, flags);
1841
1842 return id;
1843}
1844
Joerg Roedela2acfb72008-12-02 18:28:53 +01001845static void domain_id_free(int id)
1846{
1847 unsigned long flags;
1848
1849 write_lock_irqsave(&amd_iommu_devtable_lock, flags);
1850 if (id > 0 && id < MAX_DOMAIN_ID)
1851 __clear_bit(id, amd_iommu_pd_alloc_bitmap);
1852 write_unlock_irqrestore(&amd_iommu_devtable_lock, flags);
1853}
Joerg Roedela2acfb72008-12-02 18:28:53 +01001854
Joerg Roedel5c34c402013-06-20 20:22:58 +02001855#define DEFINE_FREE_PT_FN(LVL, FN) \
1856static void free_pt_##LVL (unsigned long __pt) \
1857{ \
1858 unsigned long p; \
1859 u64 *pt; \
1860 int i; \
1861 \
1862 pt = (u64 *)__pt; \
1863 \
1864 for (i = 0; i < 512; ++i) { \
Joerg Roedel0b3fff52015-06-18 10:48:34 +02001865 /* PTE present? */ \
Joerg Roedel5c34c402013-06-20 20:22:58 +02001866 if (!IOMMU_PTE_PRESENT(pt[i])) \
1867 continue; \
1868 \
Joerg Roedel0b3fff52015-06-18 10:48:34 +02001869 /* Large PTE? */ \
1870 if (PM_PTE_LEVEL(pt[i]) == 0 || \
1871 PM_PTE_LEVEL(pt[i]) == 7) \
1872 continue; \
1873 \
Joerg Roedel5c34c402013-06-20 20:22:58 +02001874 p = (unsigned long)IOMMU_PTE_PAGE(pt[i]); \
1875 FN(p); \
1876 } \
1877 free_page((unsigned long)pt); \
1878}
1879
1880DEFINE_FREE_PT_FN(l2, free_page)
1881DEFINE_FREE_PT_FN(l3, free_pt_l2)
1882DEFINE_FREE_PT_FN(l4, free_pt_l3)
1883DEFINE_FREE_PT_FN(l5, free_pt_l4)
1884DEFINE_FREE_PT_FN(l6, free_pt_l5)
1885
Joerg Roedel86db2e52008-12-02 18:20:21 +01001886static void free_pagetable(struct protection_domain *domain)
Joerg Roedelec487d12008-06-26 21:27:58 +02001887{
Joerg Roedel5c34c402013-06-20 20:22:58 +02001888 unsigned long root = (unsigned long)domain->pt_root;
Joerg Roedelec487d12008-06-26 21:27:58 +02001889
Joerg Roedel5c34c402013-06-20 20:22:58 +02001890 switch (domain->mode) {
1891 case PAGE_MODE_NONE:
1892 break;
1893 case PAGE_MODE_1_LEVEL:
1894 free_page(root);
1895 break;
1896 case PAGE_MODE_2_LEVEL:
1897 free_pt_l2(root);
1898 break;
1899 case PAGE_MODE_3_LEVEL:
1900 free_pt_l3(root);
1901 break;
1902 case PAGE_MODE_4_LEVEL:
1903 free_pt_l4(root);
1904 break;
1905 case PAGE_MODE_5_LEVEL:
1906 free_pt_l5(root);
1907 break;
1908 case PAGE_MODE_6_LEVEL:
1909 free_pt_l6(root);
1910 break;
1911 default:
1912 BUG();
Joerg Roedelec487d12008-06-26 21:27:58 +02001913 }
Joerg Roedelec487d12008-06-26 21:27:58 +02001914}
1915
Joerg Roedelb16137b2011-11-21 16:50:23 +01001916static void free_gcr3_tbl_level1(u64 *tbl)
1917{
1918 u64 *ptr;
1919 int i;
1920
1921 for (i = 0; i < 512; ++i) {
1922 if (!(tbl[i] & GCR3_VALID))
1923 continue;
1924
1925 ptr = __va(tbl[i] & PAGE_MASK);
1926
1927 free_page((unsigned long)ptr);
1928 }
1929}
1930
1931static void free_gcr3_tbl_level2(u64 *tbl)
1932{
1933 u64 *ptr;
1934 int i;
1935
1936 for (i = 0; i < 512; ++i) {
1937 if (!(tbl[i] & GCR3_VALID))
1938 continue;
1939
1940 ptr = __va(tbl[i] & PAGE_MASK);
1941
1942 free_gcr3_tbl_level1(ptr);
1943 }
1944}
1945
Joerg Roedel52815b72011-11-17 17:24:28 +01001946static void free_gcr3_table(struct protection_domain *domain)
1947{
Joerg Roedelb16137b2011-11-21 16:50:23 +01001948 if (domain->glx == 2)
1949 free_gcr3_tbl_level2(domain->gcr3_tbl);
1950 else if (domain->glx == 1)
1951 free_gcr3_tbl_level1(domain->gcr3_tbl);
Joerg Roedel23d3a982015-08-13 11:15:13 +02001952 else
1953 BUG_ON(domain->glx != 0);
Joerg Roedelb16137b2011-11-21 16:50:23 +01001954
Joerg Roedel52815b72011-11-17 17:24:28 +01001955 free_page((unsigned long)domain->gcr3_tbl);
1956}
1957
Joerg Roedel431b2a22008-07-11 17:14:22 +02001958/*
1959 * Free a domain, only used if something went wrong in the
1960 * allocation path and we need to free an already allocated page table
1961 */
Joerg Roedelec487d12008-06-26 21:27:58 +02001962static void dma_ops_domain_free(struct dma_ops_domain *dom)
1963{
Joerg Roedel384de722009-05-15 12:30:05 +02001964 int i;
1965
Joerg Roedelec487d12008-06-26 21:27:58 +02001966 if (!dom)
1967 return;
1968
Joerg Roedel5f6bed52015-12-22 13:34:22 +01001969 free_percpu(dom->next_index);
1970
Joerg Roedelaeb26f52009-11-20 16:44:01 +01001971 del_domain_from_list(&dom->domain);
1972
Joerg Roedel86db2e52008-12-02 18:20:21 +01001973 free_pagetable(&dom->domain);
Joerg Roedelec487d12008-06-26 21:27:58 +02001974
Joerg Roedel384de722009-05-15 12:30:05 +02001975 for (i = 0; i < APERTURE_MAX_RANGES; ++i) {
1976 if (!dom->aperture[i])
1977 continue;
1978 free_page((unsigned long)dom->aperture[i]->bitmap);
1979 kfree(dom->aperture[i]);
1980 }
Joerg Roedelec487d12008-06-26 21:27:58 +02001981
1982 kfree(dom);
1983}
1984
Joerg Roedela639a8e2015-12-22 16:06:49 +01001985static int dma_ops_domain_alloc_apertures(struct dma_ops_domain *dma_dom,
1986 int max_apertures)
1987{
1988 int ret, i, apertures;
1989
1990 apertures = dma_dom->aperture_size >> APERTURE_RANGE_SHIFT;
1991 ret = 0;
1992
1993 for (i = apertures; i < max_apertures; ++i) {
1994 ret = alloc_new_range(dma_dom, false, GFP_KERNEL);
1995 if (ret)
1996 break;
1997 }
1998
1999 return ret;
2000}
2001
Joerg Roedel431b2a22008-07-11 17:14:22 +02002002/*
2003 * Allocates a new protection domain usable for the dma_ops functions.
Uwe Kleine-Königb5950762010-11-01 15:38:34 -04002004 * It also initializes the page table and the address allocator data
Joerg Roedel431b2a22008-07-11 17:14:22 +02002005 * structures required for the dma_ops interface
2006 */
Joerg Roedel87a64d52009-11-24 17:26:43 +01002007static struct dma_ops_domain *dma_ops_domain_alloc(void)
Joerg Roedelec487d12008-06-26 21:27:58 +02002008{
2009 struct dma_ops_domain *dma_dom;
Joerg Roedel5f6bed52015-12-22 13:34:22 +01002010 int cpu;
Joerg Roedelec487d12008-06-26 21:27:58 +02002011
2012 dma_dom = kzalloc(sizeof(struct dma_ops_domain), GFP_KERNEL);
2013 if (!dma_dom)
2014 return NULL;
2015
Joerg Roedel7a5a5662015-06-30 08:56:11 +02002016 if (protection_domain_init(&dma_dom->domain))
Joerg Roedelec487d12008-06-26 21:27:58 +02002017 goto free_dma_dom;
Joerg Roedel7a5a5662015-06-30 08:56:11 +02002018
Joerg Roedel5f6bed52015-12-22 13:34:22 +01002019 dma_dom->next_index = alloc_percpu(u32);
2020 if (!dma_dom->next_index)
2021 goto free_dma_dom;
2022
Joerg Roedel8f7a0172009-09-02 16:55:24 +02002023 dma_dom->domain.mode = PAGE_MODE_2_LEVEL;
Joerg Roedelec487d12008-06-26 21:27:58 +02002024 dma_dom->domain.pt_root = (void *)get_zeroed_page(GFP_KERNEL);
Joerg Roedel9fdb19d2008-12-02 17:46:25 +01002025 dma_dom->domain.flags = PD_DMA_OPS_MASK;
Joerg Roedelec487d12008-06-26 21:27:58 +02002026 dma_dom->domain.priv = dma_dom;
2027 if (!dma_dom->domain.pt_root)
2028 goto free_dma_dom;
Joerg Roedelec487d12008-06-26 21:27:58 +02002029
Joerg Roedelaeb26f52009-11-20 16:44:01 +01002030 add_domain_to_list(&dma_dom->domain);
2031
Joerg Roedel576175c2009-11-23 19:08:46 +01002032 if (alloc_new_range(dma_dom, true, GFP_KERNEL))
Joerg Roedelec487d12008-06-26 21:27:58 +02002033 goto free_dma_dom;
Joerg Roedelec487d12008-06-26 21:27:58 +02002034
Joerg Roedel431b2a22008-07-11 17:14:22 +02002035 /*
Joerg Roedelec487d12008-06-26 21:27:58 +02002036 * mark the first page as allocated so we never return 0 as
2037 * a valid dma-address. So we can use 0 as error value
Joerg Roedel431b2a22008-07-11 17:14:22 +02002038 */
Joerg Roedel384de722009-05-15 12:30:05 +02002039 dma_dom->aperture[0]->bitmap[0] = 1;
Joerg Roedelec487d12008-06-26 21:27:58 +02002040
Joerg Roedel5f6bed52015-12-22 13:34:22 +01002041 for_each_possible_cpu(cpu)
2042 *per_cpu_ptr(dma_dom->next_index, cpu) = 0;
Joerg Roedelec487d12008-06-26 21:27:58 +02002043
2044 return dma_dom;
2045
2046free_dma_dom:
2047 dma_ops_domain_free(dma_dom);
2048
2049 return NULL;
2050}
2051
Joerg Roedel431b2a22008-07-11 17:14:22 +02002052/*
Joerg Roedel5b28df62008-12-02 17:49:42 +01002053 * little helper function to check whether a given protection domain is a
2054 * dma_ops domain
2055 */
2056static bool dma_ops_domain(struct protection_domain *domain)
2057{
2058 return domain->flags & PD_DMA_OPS_MASK;
2059}
2060
Joerg Roedelfd7b5532011-04-05 15:31:08 +02002061static void set_dte_entry(u16 devid, struct protection_domain *domain, bool ats)
Joerg Roedelb20ac0d2008-06-26 21:27:59 +02002062{
Joerg Roedel132bd682011-11-17 14:18:46 +01002063 u64 pte_root = 0;
Joerg Roedelee6c2862011-11-09 12:06:03 +01002064 u64 flags = 0;
Joerg Roedel863c74e2008-12-02 17:56:36 +01002065
Joerg Roedel132bd682011-11-17 14:18:46 +01002066 if (domain->mode != PAGE_MODE_NONE)
2067 pte_root = virt_to_phys(domain->pt_root);
2068
Joerg Roedel38ddf412008-09-11 10:38:32 +02002069 pte_root |= (domain->mode & DEV_ENTRY_MODE_MASK)
2070 << DEV_ENTRY_MODE_SHIFT;
2071 pte_root |= IOMMU_PTE_IR | IOMMU_PTE_IW | IOMMU_PTE_P | IOMMU_PTE_TV;
Joerg Roedelb20ac0d2008-06-26 21:27:59 +02002072
Joerg Roedelee6c2862011-11-09 12:06:03 +01002073 flags = amd_iommu_dev_table[devid].data[1];
2074
Joerg Roedelfd7b5532011-04-05 15:31:08 +02002075 if (ats)
2076 flags |= DTE_FLAG_IOTLB;
2077
Joerg Roedel52815b72011-11-17 17:24:28 +01002078 if (domain->flags & PD_IOMMUV2_MASK) {
2079 u64 gcr3 = __pa(domain->gcr3_tbl);
2080 u64 glx = domain->glx;
2081 u64 tmp;
2082
2083 pte_root |= DTE_FLAG_GV;
2084 pte_root |= (glx & DTE_GLX_MASK) << DTE_GLX_SHIFT;
2085
2086 /* First mask out possible old values for GCR3 table */
2087 tmp = DTE_GCR3_VAL_B(~0ULL) << DTE_GCR3_SHIFT_B;
2088 flags &= ~tmp;
2089
2090 tmp = DTE_GCR3_VAL_C(~0ULL) << DTE_GCR3_SHIFT_C;
2091 flags &= ~tmp;
2092
2093 /* Encode GCR3 table into DTE */
2094 tmp = DTE_GCR3_VAL_A(gcr3) << DTE_GCR3_SHIFT_A;
2095 pte_root |= tmp;
2096
2097 tmp = DTE_GCR3_VAL_B(gcr3) << DTE_GCR3_SHIFT_B;
2098 flags |= tmp;
2099
2100 tmp = DTE_GCR3_VAL_C(gcr3) << DTE_GCR3_SHIFT_C;
2101 flags |= tmp;
2102 }
2103
Joerg Roedelee6c2862011-11-09 12:06:03 +01002104 flags &= ~(0xffffUL);
2105 flags |= domain->id;
2106
2107 amd_iommu_dev_table[devid].data[1] = flags;
2108 amd_iommu_dev_table[devid].data[0] = pte_root;
Joerg Roedelb20ac0d2008-06-26 21:27:59 +02002109}
2110
Joerg Roedel15898bb2009-11-24 15:39:42 +01002111static void clear_dte_entry(u16 devid)
Joerg Roedel355bf552008-12-08 12:02:41 +01002112{
Joerg Roedel355bf552008-12-08 12:02:41 +01002113 /* remove entry from the device table seen by the hardware */
Joerg Roedelcbf3ccd2015-10-20 14:59:36 +02002114 amd_iommu_dev_table[devid].data[0] = IOMMU_PTE_P | IOMMU_PTE_TV;
2115 amd_iommu_dev_table[devid].data[1] &= DTE_FLAG_MASK;
Joerg Roedel355bf552008-12-08 12:02:41 +01002116
Joerg Roedelc5cca142009-10-09 18:31:20 +02002117 amd_iommu_apply_erratum_63(devid);
Joerg Roedel7f760dd2009-11-26 14:49:59 +01002118}
2119
Joerg Roedelec9e79e2011-06-09 17:25:50 +02002120static void do_attach(struct iommu_dev_data *dev_data,
2121 struct protection_domain *domain)
Joerg Roedel7f760dd2009-11-26 14:49:59 +01002122{
Joerg Roedel7f760dd2009-11-26 14:49:59 +01002123 struct amd_iommu *iommu;
Joerg Roedele25bfb52015-10-20 17:33:38 +02002124 u16 alias;
Joerg Roedelec9e79e2011-06-09 17:25:50 +02002125 bool ats;
Joerg Roedel7f760dd2009-11-26 14:49:59 +01002126
Joerg Roedelec9e79e2011-06-09 17:25:50 +02002127 iommu = amd_iommu_rlookup_table[dev_data->devid];
Joerg Roedele25bfb52015-10-20 17:33:38 +02002128 alias = amd_iommu_alias_table[dev_data->devid];
Joerg Roedelec9e79e2011-06-09 17:25:50 +02002129 ats = dev_data->ats.enabled;
Joerg Roedel7f760dd2009-11-26 14:49:59 +01002130
2131 /* Update data structures */
2132 dev_data->domain = domain;
2133 list_add(&dev_data->list, &domain->dev_list);
Joerg Roedel7f760dd2009-11-26 14:49:59 +01002134
2135 /* Do reference counting */
2136 domain->dev_iommu[iommu->index] += 1;
2137 domain->dev_cnt += 1;
2138
Joerg Roedele25bfb52015-10-20 17:33:38 +02002139 /* Update device table */
2140 set_dte_entry(dev_data->devid, domain, ats);
2141 if (alias != dev_data->devid)
Baoquan He9b1a12d2016-01-20 22:01:19 +08002142 set_dte_entry(alias, domain, ats);
Joerg Roedele25bfb52015-10-20 17:33:38 +02002143
Joerg Roedel6c542042011-06-09 17:07:31 +02002144 device_flush_dte(dev_data);
Joerg Roedel7f760dd2009-11-26 14:49:59 +01002145}
2146
Joerg Roedelec9e79e2011-06-09 17:25:50 +02002147static void do_detach(struct iommu_dev_data *dev_data)
Joerg Roedel7f760dd2009-11-26 14:49:59 +01002148{
Joerg Roedel7f760dd2009-11-26 14:49:59 +01002149 struct amd_iommu *iommu;
Joerg Roedele25bfb52015-10-20 17:33:38 +02002150 u16 alias;
Joerg Roedel7f760dd2009-11-26 14:49:59 +01002151
Joerg Roedel5adad992015-10-09 16:23:33 +02002152 /*
2153 * First check if the device is still attached. It might already
2154 * be detached from its domain because the generic
2155 * iommu_detach_group code detached it and we try again here in
2156 * our alias handling.
2157 */
2158 if (!dev_data->domain)
2159 return;
2160
Joerg Roedelec9e79e2011-06-09 17:25:50 +02002161 iommu = amd_iommu_rlookup_table[dev_data->devid];
Joerg Roedele25bfb52015-10-20 17:33:38 +02002162 alias = amd_iommu_alias_table[dev_data->devid];
Joerg Roedelc5cca142009-10-09 18:31:20 +02002163
Joerg Roedelc4596112009-11-20 14:57:32 +01002164 /* decrease reference counters */
Joerg Roedel7f760dd2009-11-26 14:49:59 +01002165 dev_data->domain->dev_iommu[iommu->index] -= 1;
2166 dev_data->domain->dev_cnt -= 1;
Joerg Roedel355bf552008-12-08 12:02:41 +01002167
Joerg Roedel7f760dd2009-11-26 14:49:59 +01002168 /* Update data structures */
2169 dev_data->domain = NULL;
2170 list_del(&dev_data->list);
Joerg Roedelf62dda62011-06-09 12:55:35 +02002171 clear_dte_entry(dev_data->devid);
Joerg Roedele25bfb52015-10-20 17:33:38 +02002172 if (alias != dev_data->devid)
2173 clear_dte_entry(alias);
Joerg Roedel7f760dd2009-11-26 14:49:59 +01002174
2175 /* Flush the DTE entry */
Joerg Roedel6c542042011-06-09 17:07:31 +02002176 device_flush_dte(dev_data);
Joerg Roedel15898bb2009-11-24 15:39:42 +01002177}
2178
2179/*
2180 * If a device is not yet associated with a domain, this function does
2181 * assigns it visible for the hardware
2182 */
Joerg Roedelec9e79e2011-06-09 17:25:50 +02002183static int __attach_device(struct iommu_dev_data *dev_data,
Joerg Roedel15898bb2009-11-24 15:39:42 +01002184 struct protection_domain *domain)
2185{
Julia Lawall84fe6c12010-05-27 12:31:51 +02002186 int ret;
Joerg Roedel657cbb62009-11-23 15:26:46 +01002187
Joerg Roedel272e4f92015-10-20 17:33:37 +02002188 /*
2189 * Must be called with IRQs disabled. Warn here to detect early
2190 * when its not.
2191 */
2192 WARN_ON(!irqs_disabled());
2193
Joerg Roedel15898bb2009-11-24 15:39:42 +01002194 /* lock domain */
2195 spin_lock(&domain->lock);
2196
Joerg Roedel397111a2014-08-05 17:31:51 +02002197 ret = -EBUSY;
Joerg Roedel150952f2015-10-20 17:33:35 +02002198 if (dev_data->domain != NULL)
Joerg Roedel397111a2014-08-05 17:31:51 +02002199 goto out_unlock;
Joerg Roedel24100052009-11-25 15:59:57 +01002200
Joerg Roedel397111a2014-08-05 17:31:51 +02002201 /* Attach alias group root */
Joerg Roedel150952f2015-10-20 17:33:35 +02002202 do_attach(dev_data, domain);
Joerg Roedel24100052009-11-25 15:59:57 +01002203
Julia Lawall84fe6c12010-05-27 12:31:51 +02002204 ret = 0;
2205
2206out_unlock:
2207
Joerg Roedel355bf552008-12-08 12:02:41 +01002208 /* ready */
2209 spin_unlock(&domain->lock);
Joerg Roedel21129f72009-09-01 11:59:42 +02002210
Julia Lawall84fe6c12010-05-27 12:31:51 +02002211 return ret;
Joerg Roedel15898bb2009-11-24 15:39:42 +01002212}
2213
Joerg Roedel52815b72011-11-17 17:24:28 +01002214
2215static void pdev_iommuv2_disable(struct pci_dev *pdev)
2216{
2217 pci_disable_ats(pdev);
2218 pci_disable_pri(pdev);
2219 pci_disable_pasid(pdev);
2220}
2221
Joerg Roedel6a113dd2011-12-01 12:04:58 +01002222/* FIXME: Change generic reset-function to do the same */
2223static int pri_reset_while_enabled(struct pci_dev *pdev)
2224{
2225 u16 control;
2226 int pos;
2227
Joerg Roedel46277b72011-12-07 14:34:02 +01002228 pos = pci_find_ext_capability(pdev, PCI_EXT_CAP_ID_PRI);
Joerg Roedel6a113dd2011-12-01 12:04:58 +01002229 if (!pos)
2230 return -EINVAL;
2231
Joerg Roedel46277b72011-12-07 14:34:02 +01002232 pci_read_config_word(pdev, pos + PCI_PRI_CTRL, &control);
2233 control |= PCI_PRI_CTRL_RESET;
2234 pci_write_config_word(pdev, pos + PCI_PRI_CTRL, control);
Joerg Roedel6a113dd2011-12-01 12:04:58 +01002235
2236 return 0;
2237}
2238
Joerg Roedel52815b72011-11-17 17:24:28 +01002239static int pdev_iommuv2_enable(struct pci_dev *pdev)
2240{
Joerg Roedel6a113dd2011-12-01 12:04:58 +01002241 bool reset_enable;
2242 int reqs, ret;
2243
2244 /* FIXME: Hardcode number of outstanding requests for now */
2245 reqs = 32;
2246 if (pdev_pri_erratum(pdev, AMD_PRI_DEV_ERRATUM_LIMIT_REQ_ONE))
2247 reqs = 1;
2248 reset_enable = pdev_pri_erratum(pdev, AMD_PRI_DEV_ERRATUM_ENABLE_RESET);
Joerg Roedel52815b72011-11-17 17:24:28 +01002249
2250 /* Only allow access to user-accessible pages */
2251 ret = pci_enable_pasid(pdev, 0);
2252 if (ret)
2253 goto out_err;
2254
2255 /* First reset the PRI state of the device */
2256 ret = pci_reset_pri(pdev);
2257 if (ret)
2258 goto out_err;
2259
Joerg Roedel6a113dd2011-12-01 12:04:58 +01002260 /* Enable PRI */
2261 ret = pci_enable_pri(pdev, reqs);
Joerg Roedel52815b72011-11-17 17:24:28 +01002262 if (ret)
2263 goto out_err;
2264
Joerg Roedel6a113dd2011-12-01 12:04:58 +01002265 if (reset_enable) {
2266 ret = pri_reset_while_enabled(pdev);
2267 if (ret)
2268 goto out_err;
2269 }
2270
Joerg Roedel52815b72011-11-17 17:24:28 +01002271 ret = pci_enable_ats(pdev, PAGE_SHIFT);
2272 if (ret)
2273 goto out_err;
2274
2275 return 0;
2276
2277out_err:
2278 pci_disable_pri(pdev);
2279 pci_disable_pasid(pdev);
2280
2281 return ret;
2282}
2283
Joerg Roedelc99afa22011-11-21 18:19:25 +01002284/* FIXME: Move this to PCI code */
Joerg Roedela3b93122012-04-12 12:49:26 +02002285#define PCI_PRI_TLP_OFF (1 << 15)
Joerg Roedelc99afa22011-11-21 18:19:25 +01002286
Joerg Roedel98f1ad22012-07-06 13:28:37 +02002287static bool pci_pri_tlp_required(struct pci_dev *pdev)
Joerg Roedelc99afa22011-11-21 18:19:25 +01002288{
Joerg Roedela3b93122012-04-12 12:49:26 +02002289 u16 status;
Joerg Roedelc99afa22011-11-21 18:19:25 +01002290 int pos;
2291
Joerg Roedel46277b72011-12-07 14:34:02 +01002292 pos = pci_find_ext_capability(pdev, PCI_EXT_CAP_ID_PRI);
Joerg Roedelc99afa22011-11-21 18:19:25 +01002293 if (!pos)
2294 return false;
2295
Joerg Roedela3b93122012-04-12 12:49:26 +02002296 pci_read_config_word(pdev, pos + PCI_PRI_STATUS, &status);
Joerg Roedelc99afa22011-11-21 18:19:25 +01002297
Joerg Roedela3b93122012-04-12 12:49:26 +02002298 return (status & PCI_PRI_TLP_OFF) ? true : false;
Joerg Roedelc99afa22011-11-21 18:19:25 +01002299}
2300
Joerg Roedel15898bb2009-11-24 15:39:42 +01002301/*
Frank Arnolddf805ab2012-08-27 19:21:04 +02002302 * If a device is not yet associated with a domain, this function
Joerg Roedel15898bb2009-11-24 15:39:42 +01002303 * assigns it visible for the hardware
2304 */
2305static int attach_device(struct device *dev,
2306 struct protection_domain *domain)
2307{
Wan Zongshun2bf9a0a2016-04-01 09:06:03 -04002308 struct pci_dev *pdev;
Joerg Roedelea61cdd2011-06-09 12:56:30 +02002309 struct iommu_dev_data *dev_data;
Joerg Roedel15898bb2009-11-24 15:39:42 +01002310 unsigned long flags;
2311 int ret;
2312
Joerg Roedelea61cdd2011-06-09 12:56:30 +02002313 dev_data = get_dev_data(dev);
2314
Wan Zongshun2bf9a0a2016-04-01 09:06:03 -04002315 if (!dev_is_pci(dev))
2316 goto skip_ats_check;
2317
2318 pdev = to_pci_dev(dev);
Joerg Roedel52815b72011-11-17 17:24:28 +01002319 if (domain->flags & PD_IOMMUV2_MASK) {
Joerg Roedel02ca2022015-07-28 16:58:49 +02002320 if (!dev_data->passthrough)
Joerg Roedel52815b72011-11-17 17:24:28 +01002321 return -EINVAL;
2322
Joerg Roedel02ca2022015-07-28 16:58:49 +02002323 if (dev_data->iommu_v2) {
2324 if (pdev_iommuv2_enable(pdev) != 0)
2325 return -EINVAL;
Joerg Roedel52815b72011-11-17 17:24:28 +01002326
Joerg Roedel02ca2022015-07-28 16:58:49 +02002327 dev_data->ats.enabled = true;
2328 dev_data->ats.qdep = pci_ats_queue_depth(pdev);
2329 dev_data->pri_tlp = pci_pri_tlp_required(pdev);
2330 }
Joerg Roedel52815b72011-11-17 17:24:28 +01002331 } else if (amd_iommu_iotlb_sup &&
2332 pci_enable_ats(pdev, PAGE_SHIFT) == 0) {
Joerg Roedelea61cdd2011-06-09 12:56:30 +02002333 dev_data->ats.enabled = true;
2334 dev_data->ats.qdep = pci_ats_queue_depth(pdev);
2335 }
Joerg Roedelfd7b5532011-04-05 15:31:08 +02002336
Wan Zongshun2bf9a0a2016-04-01 09:06:03 -04002337skip_ats_check:
Joerg Roedel15898bb2009-11-24 15:39:42 +01002338 write_lock_irqsave(&amd_iommu_devtable_lock, flags);
Joerg Roedelec9e79e2011-06-09 17:25:50 +02002339 ret = __attach_device(dev_data, domain);
Joerg Roedel15898bb2009-11-24 15:39:42 +01002340 write_unlock_irqrestore(&amd_iommu_devtable_lock, flags);
2341
2342 /*
2343 * We might boot into a crash-kernel here. The crashed kernel
2344 * left the caches in the IOMMU dirty. So we have to flush
2345 * here to evict all dirty stuff.
2346 */
Joerg Roedel17b124b2011-04-06 18:01:35 +02002347 domain_flush_tlb_pde(domain);
Joerg Roedel15898bb2009-11-24 15:39:42 +01002348
2349 return ret;
2350}
2351
2352/*
2353 * Removes a device from a protection domain (unlocked)
2354 */
Joerg Roedelec9e79e2011-06-09 17:25:50 +02002355static void __detach_device(struct iommu_dev_data *dev_data)
Joerg Roedel15898bb2009-11-24 15:39:42 +01002356{
Joerg Roedel2ca76272010-01-22 16:45:31 +01002357 struct protection_domain *domain;
Joerg Roedel15898bb2009-11-24 15:39:42 +01002358
Joerg Roedel272e4f92015-10-20 17:33:37 +02002359 /*
2360 * Must be called with IRQs disabled. Warn here to detect early
2361 * when its not.
2362 */
2363 WARN_ON(!irqs_disabled());
2364
Joerg Roedelf34c73f2015-10-20 17:33:34 +02002365 if (WARN_ON(!dev_data->domain))
2366 return;
Joerg Roedel15898bb2009-11-24 15:39:42 +01002367
Joerg Roedel2ca76272010-01-22 16:45:31 +01002368 domain = dev_data->domain;
2369
Joerg Roedelf1dd0a82015-10-20 17:33:36 +02002370 spin_lock(&domain->lock);
Joerg Roedel24100052009-11-25 15:59:57 +01002371
Joerg Roedel150952f2015-10-20 17:33:35 +02002372 do_detach(dev_data);
Joerg Roedel71f77582011-06-09 19:03:15 +02002373
Joerg Roedelf1dd0a82015-10-20 17:33:36 +02002374 spin_unlock(&domain->lock);
Joerg Roedel355bf552008-12-08 12:02:41 +01002375}
2376
2377/*
2378 * Removes a device from a protection domain (with devtable_lock held)
2379 */
Joerg Roedel15898bb2009-11-24 15:39:42 +01002380static void detach_device(struct device *dev)
Joerg Roedel355bf552008-12-08 12:02:41 +01002381{
Joerg Roedel52815b72011-11-17 17:24:28 +01002382 struct protection_domain *domain;
Joerg Roedelea61cdd2011-06-09 12:56:30 +02002383 struct iommu_dev_data *dev_data;
Joerg Roedel355bf552008-12-08 12:02:41 +01002384 unsigned long flags;
2385
Joerg Roedelec9e79e2011-06-09 17:25:50 +02002386 dev_data = get_dev_data(dev);
Joerg Roedel52815b72011-11-17 17:24:28 +01002387 domain = dev_data->domain;
Joerg Roedelec9e79e2011-06-09 17:25:50 +02002388
Joerg Roedel355bf552008-12-08 12:02:41 +01002389 /* lock device table */
2390 write_lock_irqsave(&amd_iommu_devtable_lock, flags);
Joerg Roedelec9e79e2011-06-09 17:25:50 +02002391 __detach_device(dev_data);
Joerg Roedel355bf552008-12-08 12:02:41 +01002392 write_unlock_irqrestore(&amd_iommu_devtable_lock, flags);
Joerg Roedelfd7b5532011-04-05 15:31:08 +02002393
Wan Zongshun2bf9a0a2016-04-01 09:06:03 -04002394 if (!dev_is_pci(dev))
2395 return;
2396
Joerg Roedel02ca2022015-07-28 16:58:49 +02002397 if (domain->flags & PD_IOMMUV2_MASK && dev_data->iommu_v2)
Joerg Roedel52815b72011-11-17 17:24:28 +01002398 pdev_iommuv2_disable(to_pci_dev(dev));
2399 else if (dev_data->ats.enabled)
Joerg Roedelea61cdd2011-06-09 12:56:30 +02002400 pci_disable_ats(to_pci_dev(dev));
Joerg Roedel52815b72011-11-17 17:24:28 +01002401
2402 dev_data->ats.enabled = false;
Joerg Roedel355bf552008-12-08 12:02:41 +01002403}
Joerg Roedele275a2a2008-12-10 18:27:25 +01002404
Joerg Roedelaafd8ba2015-05-28 18:41:39 +02002405static int amd_iommu_add_device(struct device *dev)
Joerg Roedel15898bb2009-11-24 15:39:42 +01002406{
Joerg Roedel71f77582011-06-09 19:03:15 +02002407 struct iommu_dev_data *dev_data;
Joerg Roedel07ee8692015-05-28 18:41:42 +02002408 struct iommu_domain *domain;
Joerg Roedele275a2a2008-12-10 18:27:25 +01002409 struct amd_iommu *iommu;
Wan Zongshun7aba6cb2016-04-01 09:06:02 -04002410 int ret, devid;
Joerg Roedele275a2a2008-12-10 18:27:25 +01002411
Joerg Roedelaafd8ba2015-05-28 18:41:39 +02002412 if (!check_device(dev) || get_dev_data(dev))
Joerg Roedel98fc5a62009-11-24 17:19:23 +01002413 return 0;
Joerg Roedele275a2a2008-12-10 18:27:25 +01002414
Joerg Roedelaafd8ba2015-05-28 18:41:39 +02002415 devid = get_device_id(dev);
Wan Zongshun7aba6cb2016-04-01 09:06:02 -04002416 if (IS_ERR_VALUE(devid))
2417 return devid;
2418
Joerg Roedelaafd8ba2015-05-28 18:41:39 +02002419 iommu = amd_iommu_rlookup_table[devid];
Joerg Roedele275a2a2008-12-10 18:27:25 +01002420
Joerg Roedelaafd8ba2015-05-28 18:41:39 +02002421 ret = iommu_init_device(dev);
Joerg Roedel4d58b8a2015-06-11 09:21:39 +02002422 if (ret) {
2423 if (ret != -ENOTSUPP)
2424 pr_err("Failed to initialize device %s - trying to proceed anyway\n",
2425 dev_name(dev));
Joerg Roedel657cbb62009-11-23 15:26:46 +01002426
Joerg Roedelaafd8ba2015-05-28 18:41:39 +02002427 iommu_ignore_device(dev);
Joerg Roedel343e9ca2015-05-28 18:41:43 +02002428 dev->archdata.dma_ops = &nommu_dma_ops;
Joerg Roedele275a2a2008-12-10 18:27:25 +01002429 goto out;
2430 }
Joerg Roedelaafd8ba2015-05-28 18:41:39 +02002431 init_iommu_group(dev);
Joerg Roedele275a2a2008-12-10 18:27:25 +01002432
Joerg Roedel07ee8692015-05-28 18:41:42 +02002433 dev_data = get_dev_data(dev);
Joerg Roedel4d58b8a2015-06-11 09:21:39 +02002434
2435 BUG_ON(!dev_data);
2436
Joerg Roedel1e6a7b02015-07-28 16:58:48 +02002437 if (iommu_pass_through || dev_data->iommu_v2)
Joerg Roedel07ee8692015-05-28 18:41:42 +02002438 iommu_request_dm_for_dev(dev);
2439
2440 /* Domains are initialized for this device - have a look what we ended up with */
2441 domain = iommu_get_domain_for_dev(dev);
Joerg Roedel32302322015-07-28 16:58:50 +02002442 if (domain->type == IOMMU_DOMAIN_IDENTITY)
Joerg Roedel07ee8692015-05-28 18:41:42 +02002443 dev_data->passthrough = true;
Joerg Roedel32302322015-07-28 16:58:50 +02002444 else
Joerg Roedel07ee8692015-05-28 18:41:42 +02002445 dev->archdata.dma_ops = &amd_iommu_dma_ops;
Joerg Roedele275a2a2008-12-10 18:27:25 +01002446
2447out:
Joerg Roedelaafd8ba2015-05-28 18:41:39 +02002448 iommu_completion_wait(iommu);
2449
Joerg Roedele275a2a2008-12-10 18:27:25 +01002450 return 0;
2451}
2452
Joerg Roedelaafd8ba2015-05-28 18:41:39 +02002453static void amd_iommu_remove_device(struct device *dev)
Joerg Roedel8638c492009-12-10 11:12:25 +01002454{
Joerg Roedelaafd8ba2015-05-28 18:41:39 +02002455 struct amd_iommu *iommu;
Wan Zongshun7aba6cb2016-04-01 09:06:02 -04002456 int devid;
Joerg Roedelaafd8ba2015-05-28 18:41:39 +02002457
2458 if (!check_device(dev))
2459 return;
2460
2461 devid = get_device_id(dev);
Wan Zongshun7aba6cb2016-04-01 09:06:02 -04002462 if (IS_ERR_VALUE(devid))
2463 return;
2464
Joerg Roedelaafd8ba2015-05-28 18:41:39 +02002465 iommu = amd_iommu_rlookup_table[devid];
2466
2467 iommu_uninit_device(dev);
2468 iommu_completion_wait(iommu);
Joerg Roedel8638c492009-12-10 11:12:25 +01002469}
2470
Wan Zongshunb097d112016-04-01 09:06:04 -04002471static struct iommu_group *amd_iommu_device_group(struct device *dev)
2472{
2473 if (dev_is_pci(dev))
2474 return pci_device_group(dev);
2475
2476 return acpihid_device_group(dev);
2477}
2478
Joerg Roedel431b2a22008-07-11 17:14:22 +02002479/*****************************************************************************
2480 *
2481 * The next functions belong to the dma_ops mapping/unmapping code.
2482 *
2483 *****************************************************************************/
2484
2485/*
2486 * In the dma_ops path we only have the struct device. This function
2487 * finds the corresponding IOMMU, the protection domain and the
2488 * requestor id for a given device.
2489 * If the device is not yet associated with a domain this is also done
2490 * in this function.
2491 */
Joerg Roedel94f6d192009-11-24 16:40:02 +01002492static struct protection_domain *get_domain(struct device *dev)
Joerg Roedelb20ac0d2008-06-26 21:27:59 +02002493{
Joerg Roedel94f6d192009-11-24 16:40:02 +01002494 struct protection_domain *domain;
Joerg Roedel063071d2015-05-28 18:41:38 +02002495 struct iommu_domain *io_domain;
Joerg Roedelb20ac0d2008-06-26 21:27:59 +02002496
Joerg Roedelf99c0f12009-11-23 16:52:56 +01002497 if (!check_device(dev))
Joerg Roedel94f6d192009-11-24 16:40:02 +01002498 return ERR_PTR(-EINVAL);
Joerg Roedeldbcc1122008-09-04 15:04:26 +02002499
Joerg Roedel063071d2015-05-28 18:41:38 +02002500 io_domain = iommu_get_domain_for_dev(dev);
Joerg Roedel0bb6e242015-05-28 18:41:40 +02002501 if (!io_domain)
2502 return NULL;
Joerg Roedel063071d2015-05-28 18:41:38 +02002503
Joerg Roedel0bb6e242015-05-28 18:41:40 +02002504 domain = to_pdomain(io_domain);
2505 if (!dma_ops_domain(domain))
Joerg Roedel94f6d192009-11-24 16:40:02 +01002506 return ERR_PTR(-EBUSY);
Joerg Roedelf99c0f12009-11-23 16:52:56 +01002507
Joerg Roedel0bb6e242015-05-28 18:41:40 +02002508 return domain;
Joerg Roedelb20ac0d2008-06-26 21:27:59 +02002509}
2510
Joerg Roedel04bfdd82009-09-02 16:00:23 +02002511static void update_device_table(struct protection_domain *domain)
2512{
Joerg Roedel492667d2009-11-27 13:25:47 +01002513 struct iommu_dev_data *dev_data;
Joerg Roedel04bfdd82009-09-02 16:00:23 +02002514
Joerg Roedelea61cdd2011-06-09 12:56:30 +02002515 list_for_each_entry(dev_data, &domain->dev_list, list)
2516 set_dte_entry(dev_data->devid, domain, dev_data->ats.enabled);
Joerg Roedel04bfdd82009-09-02 16:00:23 +02002517}
2518
2519static void update_domain(struct protection_domain *domain)
2520{
2521 if (!domain->updated)
2522 return;
2523
2524 update_device_table(domain);
Joerg Roedel17b124b2011-04-06 18:01:35 +02002525
2526 domain_flush_devices(domain);
2527 domain_flush_tlb_pde(domain);
Joerg Roedel04bfdd82009-09-02 16:00:23 +02002528
2529 domain->updated = false;
2530}
2531
Joerg Roedel431b2a22008-07-11 17:14:22 +02002532/*
Joerg Roedel8bda3092009-05-12 12:02:46 +02002533 * This function fetches the PTE for a given address in the aperture
2534 */
2535static u64* dma_ops_get_pte(struct dma_ops_domain *dom,
2536 unsigned long address)
2537{
Joerg Roedel384de722009-05-15 12:30:05 +02002538 struct aperture_range *aperture;
Joerg Roedel8bda3092009-05-12 12:02:46 +02002539 u64 *pte, *pte_page;
2540
Joerg Roedel384de722009-05-15 12:30:05 +02002541 aperture = dom->aperture[APERTURE_RANGE_INDEX(address)];
2542 if (!aperture)
2543 return NULL;
2544
2545 pte = aperture->pte_pages[APERTURE_PAGE_INDEX(address)];
Joerg Roedel8bda3092009-05-12 12:02:46 +02002546 if (!pte) {
Joerg Roedelcbb9d722010-01-15 14:41:15 +01002547 pte = alloc_pte(&dom->domain, address, PAGE_SIZE, &pte_page,
Joerg Roedelabdc5eb2009-09-03 11:33:51 +02002548 GFP_ATOMIC);
Joerg Roedel384de722009-05-15 12:30:05 +02002549 aperture->pte_pages[APERTURE_PAGE_INDEX(address)] = pte_page;
2550 } else
Joerg Roedel8c8c1432009-09-02 17:30:00 +02002551 pte += PM_LEVEL_INDEX(0, address);
Joerg Roedel8bda3092009-05-12 12:02:46 +02002552
Joerg Roedel04bfdd82009-09-02 16:00:23 +02002553 update_domain(&dom->domain);
Joerg Roedel8bda3092009-05-12 12:02:46 +02002554
2555 return pte;
2556}
2557
2558/*
Joerg Roedel431b2a22008-07-11 17:14:22 +02002559 * This is the generic map function. It maps one 4kb page at paddr to
2560 * the given address in the DMA address space for the domain.
2561 */
Joerg Roedel680525e2009-11-23 18:44:42 +01002562static dma_addr_t dma_ops_domain_map(struct dma_ops_domain *dom,
Joerg Roedelcb76c322008-06-26 21:28:00 +02002563 unsigned long address,
2564 phys_addr_t paddr,
2565 int direction)
2566{
2567 u64 *pte, __pte;
2568
2569 WARN_ON(address > dom->aperture_size);
2570
2571 paddr &= PAGE_MASK;
2572
Joerg Roedel8bda3092009-05-12 12:02:46 +02002573 pte = dma_ops_get_pte(dom, address);
Joerg Roedel53812c12009-05-12 12:17:38 +02002574 if (!pte)
FUJITA Tomonori8fd524b2009-11-15 21:19:53 +09002575 return DMA_ERROR_CODE;
Joerg Roedelcb76c322008-06-26 21:28:00 +02002576
2577 __pte = paddr | IOMMU_PTE_P | IOMMU_PTE_FC;
2578
2579 if (direction == DMA_TO_DEVICE)
2580 __pte |= IOMMU_PTE_IR;
2581 else if (direction == DMA_FROM_DEVICE)
2582 __pte |= IOMMU_PTE_IW;
2583 else if (direction == DMA_BIDIRECTIONAL)
2584 __pte |= IOMMU_PTE_IR | IOMMU_PTE_IW;
2585
Joerg Roedela7fb6682015-12-21 12:50:54 +01002586 WARN_ON_ONCE(*pte);
Joerg Roedelcb76c322008-06-26 21:28:00 +02002587
2588 *pte = __pte;
2589
2590 return (dma_addr_t)address;
2591}
2592
Joerg Roedel431b2a22008-07-11 17:14:22 +02002593/*
2594 * The generic unmapping function for on page in the DMA address space.
2595 */
Joerg Roedel680525e2009-11-23 18:44:42 +01002596static void dma_ops_domain_unmap(struct dma_ops_domain *dom,
Joerg Roedelcb76c322008-06-26 21:28:00 +02002597 unsigned long address)
2598{
Joerg Roedel384de722009-05-15 12:30:05 +02002599 struct aperture_range *aperture;
Joerg Roedelcb76c322008-06-26 21:28:00 +02002600 u64 *pte;
2601
2602 if (address >= dom->aperture_size)
2603 return;
2604
Joerg Roedel384de722009-05-15 12:30:05 +02002605 aperture = dom->aperture[APERTURE_RANGE_INDEX(address)];
2606 if (!aperture)
2607 return;
Joerg Roedelcb76c322008-06-26 21:28:00 +02002608
Joerg Roedel384de722009-05-15 12:30:05 +02002609 pte = aperture->pte_pages[APERTURE_PAGE_INDEX(address)];
2610 if (!pte)
2611 return;
2612
Joerg Roedel8c8c1432009-09-02 17:30:00 +02002613 pte += PM_LEVEL_INDEX(0, address);
Joerg Roedelcb76c322008-06-26 21:28:00 +02002614
Joerg Roedela7fb6682015-12-21 12:50:54 +01002615 WARN_ON_ONCE(!*pte);
Joerg Roedelcb76c322008-06-26 21:28:00 +02002616
2617 *pte = 0ULL;
2618}
2619
Joerg Roedel431b2a22008-07-11 17:14:22 +02002620/*
2621 * This function contains common code for mapping of a physically
Joerg Roedel24f81162008-12-08 14:25:39 +01002622 * contiguous memory region into DMA address space. It is used by all
2623 * mapping functions provided with this IOMMU driver.
Joerg Roedel431b2a22008-07-11 17:14:22 +02002624 * Must be called with the domain lock held.
2625 */
Joerg Roedelcb76c322008-06-26 21:28:00 +02002626static dma_addr_t __map_single(struct device *dev,
Joerg Roedelcb76c322008-06-26 21:28:00 +02002627 struct dma_ops_domain *dma_dom,
2628 phys_addr_t paddr,
2629 size_t size,
Joerg Roedel6d4f3432008-09-04 19:18:02 +02002630 int dir,
Joerg Roedel832a90c2008-09-18 15:54:23 +02002631 bool align,
2632 u64 dma_mask)
Joerg Roedelcb76c322008-06-26 21:28:00 +02002633{
2634 dma_addr_t offset = paddr & ~PAGE_MASK;
Joerg Roedel53812c12009-05-12 12:17:38 +02002635 dma_addr_t address, start, ret;
Joerg Roedelcb76c322008-06-26 21:28:00 +02002636 unsigned int pages;
Joerg Roedel6d4f3432008-09-04 19:18:02 +02002637 unsigned long align_mask = 0;
Joerg Roedelcb76c322008-06-26 21:28:00 +02002638 int i;
2639
Joerg Roedele3c449f2008-10-15 22:02:11 -07002640 pages = iommu_num_pages(paddr, size, PAGE_SIZE);
Joerg Roedelcb76c322008-06-26 21:28:00 +02002641 paddr &= PAGE_MASK;
2642
Joerg Roedel8ecaf8f2008-12-12 16:13:04 +01002643 INC_STATS_COUNTER(total_map_requests);
2644
Joerg Roedelc1858972008-12-12 15:42:39 +01002645 if (pages > 1)
2646 INC_STATS_COUNTER(cross_page);
2647
Joerg Roedel6d4f3432008-09-04 19:18:02 +02002648 if (align)
2649 align_mask = (1UL << get_order(size)) - 1;
2650
Joerg Roedel832a90c2008-09-18 15:54:23 +02002651 address = dma_ops_alloc_addresses(dev, dma_dom, pages, align_mask,
2652 dma_mask);
Joerg Roedelebaecb42015-12-21 18:11:32 +01002653
Joerg Roedel266a3bd2015-12-21 18:54:24 +01002654 if (address == DMA_ERROR_CODE)
2655 goto out;
Joerg Roedelcb76c322008-06-26 21:28:00 +02002656
2657 start = address;
2658 for (i = 0; i < pages; ++i) {
Joerg Roedel680525e2009-11-23 18:44:42 +01002659 ret = dma_ops_domain_map(dma_dom, start, paddr, dir);
FUJITA Tomonori8fd524b2009-11-15 21:19:53 +09002660 if (ret == DMA_ERROR_CODE)
Joerg Roedel53812c12009-05-12 12:17:38 +02002661 goto out_unmap;
2662
Joerg Roedelcb76c322008-06-26 21:28:00 +02002663 paddr += PAGE_SIZE;
2664 start += PAGE_SIZE;
2665 }
2666 address += offset;
2667
Joerg Roedel5774f7c2008-12-12 15:57:30 +01002668 ADD_STATS_COUNTER(alloced_io_mem, size);
2669
Joerg Roedelab7032b2015-12-21 18:47:11 +01002670 if (unlikely(amd_iommu_np_cache)) {
Joerg Roedel17b124b2011-04-06 18:01:35 +02002671 domain_flush_pages(&dma_dom->domain, address, size);
Joerg Roedelab7032b2015-12-21 18:47:11 +01002672 domain_flush_complete(&dma_dom->domain);
2673 }
Joerg Roedel270cab242008-09-04 15:49:46 +02002674
Joerg Roedelcb76c322008-06-26 21:28:00 +02002675out:
2676 return address;
Joerg Roedel53812c12009-05-12 12:17:38 +02002677
2678out_unmap:
2679
2680 for (--i; i >= 0; --i) {
2681 start -= PAGE_SIZE;
Joerg Roedel680525e2009-11-23 18:44:42 +01002682 dma_ops_domain_unmap(dma_dom, start);
Joerg Roedel53812c12009-05-12 12:17:38 +02002683 }
2684
2685 dma_ops_free_addresses(dma_dom, address, pages);
2686
FUJITA Tomonori8fd524b2009-11-15 21:19:53 +09002687 return DMA_ERROR_CODE;
Joerg Roedelcb76c322008-06-26 21:28:00 +02002688}
2689
Joerg Roedel431b2a22008-07-11 17:14:22 +02002690/*
2691 * Does the reverse of the __map_single function. Must be called with
2692 * the domain lock held too
2693 */
Joerg Roedelcd8c82e2009-11-23 19:33:56 +01002694static void __unmap_single(struct dma_ops_domain *dma_dom,
Joerg Roedelcb76c322008-06-26 21:28:00 +02002695 dma_addr_t dma_addr,
2696 size_t size,
2697 int dir)
2698{
Joerg Roedel04e04632010-09-23 16:12:48 +02002699 dma_addr_t flush_addr;
Joerg Roedelcb76c322008-06-26 21:28:00 +02002700 dma_addr_t i, start;
2701 unsigned int pages;
2702
FUJITA Tomonori8fd524b2009-11-15 21:19:53 +09002703 if ((dma_addr == DMA_ERROR_CODE) ||
Joerg Roedelb8d99052008-12-08 14:40:26 +01002704 (dma_addr + size > dma_dom->aperture_size))
Joerg Roedelcb76c322008-06-26 21:28:00 +02002705 return;
2706
Joerg Roedel04e04632010-09-23 16:12:48 +02002707 flush_addr = dma_addr;
Joerg Roedele3c449f2008-10-15 22:02:11 -07002708 pages = iommu_num_pages(dma_addr, size, PAGE_SIZE);
Joerg Roedelcb76c322008-06-26 21:28:00 +02002709 dma_addr &= PAGE_MASK;
2710 start = dma_addr;
2711
2712 for (i = 0; i < pages; ++i) {
Joerg Roedel680525e2009-11-23 18:44:42 +01002713 dma_ops_domain_unmap(dma_dom, start);
Joerg Roedelcb76c322008-06-26 21:28:00 +02002714 start += PAGE_SIZE;
2715 }
2716
Joerg Roedel84b3a0b2015-12-21 13:23:59 +01002717 SUB_STATS_COUNTER(alloced_io_mem, size);
2718
2719 dma_ops_free_addresses(dma_dom, dma_addr, pages);
Joerg Roedelcb76c322008-06-26 21:28:00 +02002720}
2721
Joerg Roedel431b2a22008-07-11 17:14:22 +02002722/*
2723 * The exported map_single function for dma_ops.
2724 */
FUJITA Tomonori51491362009-01-05 23:47:25 +09002725static dma_addr_t map_page(struct device *dev, struct page *page,
2726 unsigned long offset, size_t size,
2727 enum dma_data_direction dir,
2728 struct dma_attrs *attrs)
Joerg Roedel4da70b92008-06-26 21:28:01 +02002729{
FUJITA Tomonori51491362009-01-05 23:47:25 +09002730 phys_addr_t paddr = page_to_phys(page) + offset;
Joerg Roedel92d420e2015-12-21 19:31:33 +01002731 struct protection_domain *domain;
2732 u64 dma_mask;
Joerg Roedel4da70b92008-06-26 21:28:01 +02002733
Joerg Roedel0f2a86f2008-12-12 15:05:16 +01002734 INC_STATS_COUNTER(cnt_map_single);
2735
Joerg Roedel94f6d192009-11-24 16:40:02 +01002736 domain = get_domain(dev);
2737 if (PTR_ERR(domain) == -EINVAL)
Joerg Roedel4da70b92008-06-26 21:28:01 +02002738 return (dma_addr_t)paddr;
Joerg Roedel94f6d192009-11-24 16:40:02 +01002739 else if (IS_ERR(domain))
2740 return DMA_ERROR_CODE;
Joerg Roedel4da70b92008-06-26 21:28:01 +02002741
Joerg Roedelf99c0f12009-11-23 16:52:56 +01002742 dma_mask = *dev->dma_mask;
2743
Joerg Roedel92d420e2015-12-21 19:31:33 +01002744 return __map_single(dev, domain->priv, paddr, size, dir, false,
Joerg Roedel832a90c2008-09-18 15:54:23 +02002745 dma_mask);
Joerg Roedel4da70b92008-06-26 21:28:01 +02002746}
2747
Joerg Roedel431b2a22008-07-11 17:14:22 +02002748/*
2749 * The exported unmap_single function for dma_ops.
2750 */
FUJITA Tomonori51491362009-01-05 23:47:25 +09002751static void unmap_page(struct device *dev, dma_addr_t dma_addr, size_t size,
2752 enum dma_data_direction dir, struct dma_attrs *attrs)
Joerg Roedel4da70b92008-06-26 21:28:01 +02002753{
Joerg Roedel4da70b92008-06-26 21:28:01 +02002754 struct protection_domain *domain;
Joerg Roedel4da70b92008-06-26 21:28:01 +02002755
Joerg Roedel146a6912008-12-12 15:07:12 +01002756 INC_STATS_COUNTER(cnt_unmap_single);
2757
Joerg Roedel94f6d192009-11-24 16:40:02 +01002758 domain = get_domain(dev);
2759 if (IS_ERR(domain))
Joerg Roedel5b28df62008-12-02 17:49:42 +01002760 return;
2761
Joerg Roedelcd8c82e2009-11-23 19:33:56 +01002762 __unmap_single(domain->priv, dma_addr, size, dir);
Joerg Roedel4da70b92008-06-26 21:28:01 +02002763}
2764
Joerg Roedel431b2a22008-07-11 17:14:22 +02002765/*
Joerg Roedel431b2a22008-07-11 17:14:22 +02002766 * The exported map_sg function for dma_ops (handles scatter-gather
2767 * lists).
2768 */
Joerg Roedel65b050a2008-06-26 21:28:02 +02002769static int map_sg(struct device *dev, struct scatterlist *sglist,
FUJITA Tomonori160c1d82009-01-05 23:59:02 +09002770 int nelems, enum dma_data_direction dir,
2771 struct dma_attrs *attrs)
Joerg Roedel65b050a2008-06-26 21:28:02 +02002772{
Joerg Roedel65b050a2008-06-26 21:28:02 +02002773 struct protection_domain *domain;
Joerg Roedel65b050a2008-06-26 21:28:02 +02002774 int i;
2775 struct scatterlist *s;
2776 phys_addr_t paddr;
2777 int mapped_elems = 0;
Joerg Roedel832a90c2008-09-18 15:54:23 +02002778 u64 dma_mask;
Joerg Roedel65b050a2008-06-26 21:28:02 +02002779
Joerg Roedeld03f0672008-12-12 15:09:48 +01002780 INC_STATS_COUNTER(cnt_map_sg);
2781
Joerg Roedel94f6d192009-11-24 16:40:02 +01002782 domain = get_domain(dev);
Joerg Roedela0e191b2013-04-09 15:04:36 +02002783 if (IS_ERR(domain))
Joerg Roedel94f6d192009-11-24 16:40:02 +01002784 return 0;
Joerg Roedeldbcc1122008-09-04 15:04:26 +02002785
Joerg Roedel832a90c2008-09-18 15:54:23 +02002786 dma_mask = *dev->dma_mask;
Joerg Roedel65b050a2008-06-26 21:28:02 +02002787
Joerg Roedel65b050a2008-06-26 21:28:02 +02002788 for_each_sg(sglist, s, nelems, i) {
2789 paddr = sg_phys(s);
2790
Joerg Roedelcd8c82e2009-11-23 19:33:56 +01002791 s->dma_address = __map_single(dev, domain->priv,
Joerg Roedel832a90c2008-09-18 15:54:23 +02002792 paddr, s->length, dir, false,
2793 dma_mask);
Joerg Roedel65b050a2008-06-26 21:28:02 +02002794
2795 if (s->dma_address) {
2796 s->dma_length = s->length;
2797 mapped_elems++;
2798 } else
2799 goto unmap;
Joerg Roedel65b050a2008-06-26 21:28:02 +02002800 }
2801
Joerg Roedel65b050a2008-06-26 21:28:02 +02002802 return mapped_elems;
Joerg Roedel92d420e2015-12-21 19:31:33 +01002803
Joerg Roedel65b050a2008-06-26 21:28:02 +02002804unmap:
2805 for_each_sg(sglist, s, mapped_elems, i) {
2806 if (s->dma_address)
Joerg Roedelcd8c82e2009-11-23 19:33:56 +01002807 __unmap_single(domain->priv, s->dma_address,
Joerg Roedel65b050a2008-06-26 21:28:02 +02002808 s->dma_length, dir);
2809 s->dma_address = s->dma_length = 0;
2810 }
2811
Joerg Roedel92d420e2015-12-21 19:31:33 +01002812 return 0;
Joerg Roedel65b050a2008-06-26 21:28:02 +02002813}
2814
Joerg Roedel431b2a22008-07-11 17:14:22 +02002815/*
2816 * The exported map_sg function for dma_ops (handles scatter-gather
2817 * lists).
2818 */
Joerg Roedel65b050a2008-06-26 21:28:02 +02002819static void unmap_sg(struct device *dev, struct scatterlist *sglist,
FUJITA Tomonori160c1d82009-01-05 23:59:02 +09002820 int nelems, enum dma_data_direction dir,
2821 struct dma_attrs *attrs)
Joerg Roedel65b050a2008-06-26 21:28:02 +02002822{
Joerg Roedel65b050a2008-06-26 21:28:02 +02002823 struct protection_domain *domain;
2824 struct scatterlist *s;
Joerg Roedel65b050a2008-06-26 21:28:02 +02002825 int i;
2826
Joerg Roedel55877a62008-12-12 15:12:14 +01002827 INC_STATS_COUNTER(cnt_unmap_sg);
2828
Joerg Roedel94f6d192009-11-24 16:40:02 +01002829 domain = get_domain(dev);
2830 if (IS_ERR(domain))
Joerg Roedel5b28df62008-12-02 17:49:42 +01002831 return;
2832
Joerg Roedel65b050a2008-06-26 21:28:02 +02002833 for_each_sg(sglist, s, nelems, i) {
Joerg Roedelcd8c82e2009-11-23 19:33:56 +01002834 __unmap_single(domain->priv, s->dma_address,
Joerg Roedel65b050a2008-06-26 21:28:02 +02002835 s->dma_length, dir);
Joerg Roedel65b050a2008-06-26 21:28:02 +02002836 s->dma_address = s->dma_length = 0;
2837 }
Joerg Roedel65b050a2008-06-26 21:28:02 +02002838}
2839
Joerg Roedel431b2a22008-07-11 17:14:22 +02002840/*
2841 * The exported alloc_coherent function for dma_ops.
2842 */
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002843static void *alloc_coherent(struct device *dev, size_t size,
Andrzej Pietrasiewiczbaa676f2012-03-27 14:28:18 +02002844 dma_addr_t *dma_addr, gfp_t flag,
2845 struct dma_attrs *attrs)
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002846{
Joerg Roedel832a90c2008-09-18 15:54:23 +02002847 u64 dma_mask = dev->coherent_dma_mask;
Joerg Roedel3b839a52015-04-01 14:58:47 +02002848 struct protection_domain *domain;
Joerg Roedel3b839a52015-04-01 14:58:47 +02002849 struct page *page;
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002850
Joerg Roedelc8f0fb32008-12-12 15:14:21 +01002851 INC_STATS_COUNTER(cnt_alloc_coherent);
2852
Joerg Roedel94f6d192009-11-24 16:40:02 +01002853 domain = get_domain(dev);
2854 if (PTR_ERR(domain) == -EINVAL) {
Joerg Roedel3b839a52015-04-01 14:58:47 +02002855 page = alloc_pages(flag, get_order(size));
2856 *dma_addr = page_to_phys(page);
2857 return page_address(page);
Joerg Roedel94f6d192009-11-24 16:40:02 +01002858 } else if (IS_ERR(domain))
2859 return NULL;
Joerg Roedeldbcc1122008-09-04 15:04:26 +02002860
Joerg Roedel3b839a52015-04-01 14:58:47 +02002861 size = PAGE_ALIGN(size);
Joerg Roedelf99c0f12009-11-23 16:52:56 +01002862 dma_mask = dev->coherent_dma_mask;
2863 flag &= ~(__GFP_DMA | __GFP_HIGHMEM | __GFP_DMA32);
Joerg Roedel2d0ec7a2015-06-01 17:30:57 +02002864 flag |= __GFP_ZERO;
FUJITA Tomonori13d9fea2008-09-10 20:19:40 +09002865
Joerg Roedel3b839a52015-04-01 14:58:47 +02002866 page = alloc_pages(flag | __GFP_NOWARN, get_order(size));
2867 if (!page) {
Mel Gormand0164ad2015-11-06 16:28:21 -08002868 if (!gfpflags_allow_blocking(flag))
Joerg Roedel3b839a52015-04-01 14:58:47 +02002869 return NULL;
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002870
Joerg Roedel3b839a52015-04-01 14:58:47 +02002871 page = dma_alloc_from_contiguous(dev, size >> PAGE_SHIFT,
2872 get_order(size));
2873 if (!page)
2874 return NULL;
2875 }
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002876
Joerg Roedel832a90c2008-09-18 15:54:23 +02002877 if (!dma_mask)
2878 dma_mask = *dev->dma_mask;
2879
Joerg Roedel3b839a52015-04-01 14:58:47 +02002880 *dma_addr = __map_single(dev, domain->priv, page_to_phys(page),
Joerg Roedel832a90c2008-09-18 15:54:23 +02002881 size, DMA_BIDIRECTIONAL, true, dma_mask);
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002882
Joerg Roedel92d420e2015-12-21 19:31:33 +01002883 if (*dma_addr == DMA_ERROR_CODE)
Joerg Roedel5b28df62008-12-02 17:49:42 +01002884 goto out_free;
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002885
Joerg Roedel3b839a52015-04-01 14:58:47 +02002886 return page_address(page);
Joerg Roedel5b28df62008-12-02 17:49:42 +01002887
2888out_free:
2889
Joerg Roedel3b839a52015-04-01 14:58:47 +02002890 if (!dma_release_from_contiguous(dev, page, size >> PAGE_SHIFT))
2891 __free_pages(page, get_order(size));
Joerg Roedel5b28df62008-12-02 17:49:42 +01002892
2893 return NULL;
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002894}
2895
Joerg Roedel431b2a22008-07-11 17:14:22 +02002896/*
2897 * The exported free_coherent function for dma_ops.
Joerg Roedel431b2a22008-07-11 17:14:22 +02002898 */
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002899static void free_coherent(struct device *dev, size_t size,
Andrzej Pietrasiewiczbaa676f2012-03-27 14:28:18 +02002900 void *virt_addr, dma_addr_t dma_addr,
2901 struct dma_attrs *attrs)
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002902{
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002903 struct protection_domain *domain;
Joerg Roedel3b839a52015-04-01 14:58:47 +02002904 struct page *page;
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002905
Joerg Roedel5d31ee72008-12-12 15:16:38 +01002906 INC_STATS_COUNTER(cnt_free_coherent);
2907
Joerg Roedel3b839a52015-04-01 14:58:47 +02002908 page = virt_to_page(virt_addr);
2909 size = PAGE_ALIGN(size);
2910
Joerg Roedel94f6d192009-11-24 16:40:02 +01002911 domain = get_domain(dev);
2912 if (IS_ERR(domain))
Joerg Roedel5b28df62008-12-02 17:49:42 +01002913 goto free_mem;
2914
Joerg Roedelcd8c82e2009-11-23 19:33:56 +01002915 __unmap_single(domain->priv, dma_addr, size, DMA_BIDIRECTIONAL);
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002916
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002917free_mem:
Joerg Roedel3b839a52015-04-01 14:58:47 +02002918 if (!dma_release_from_contiguous(dev, page, size >> PAGE_SHIFT))
2919 __free_pages(page, get_order(size));
Joerg Roedel5d8b53c2008-06-26 21:28:03 +02002920}
2921
Joerg Roedelc432f3d2008-06-26 21:28:04 +02002922/*
Joerg Roedelb39ba6a2008-09-09 18:40:46 +02002923 * This function is called by the DMA layer to find out if we can handle a
2924 * particular device. It is part of the dma_ops.
2925 */
2926static int amd_iommu_dma_supported(struct device *dev, u64 mask)
2927{
Joerg Roedel420aef82009-11-23 16:14:57 +01002928 return check_device(dev);
Joerg Roedelb39ba6a2008-09-09 18:40:46 +02002929}
2930
Joerg Roedela639a8e2015-12-22 16:06:49 +01002931static int set_dma_mask(struct device *dev, u64 mask)
2932{
2933 struct protection_domain *domain;
2934 int max_apertures = 1;
2935
2936 domain = get_domain(dev);
2937 if (IS_ERR(domain))
2938 return PTR_ERR(domain);
2939
2940 if (mask == DMA_BIT_MASK(64))
2941 max_apertures = 8;
2942 else if (mask > DMA_BIT_MASK(32))
2943 max_apertures = 4;
2944
2945 /*
2946 * To prevent lock contention it doesn't make sense to allocate more
2947 * apertures than online cpus
2948 */
2949 if (max_apertures > num_online_cpus())
2950 max_apertures = num_online_cpus();
2951
2952 if (dma_ops_domain_alloc_apertures(domain->priv, max_apertures))
2953 dev_err(dev, "Can't allocate %d iommu apertures\n",
2954 max_apertures);
2955
2956 return 0;
2957}
2958
FUJITA Tomonori160c1d82009-01-05 23:59:02 +09002959static struct dma_map_ops amd_iommu_dma_ops = {
Joerg Roedela639a8e2015-12-22 16:06:49 +01002960 .alloc = alloc_coherent,
2961 .free = free_coherent,
2962 .map_page = map_page,
2963 .unmap_page = unmap_page,
2964 .map_sg = map_sg,
2965 .unmap_sg = unmap_sg,
2966 .dma_supported = amd_iommu_dma_supported,
2967 .set_dma_mask = set_dma_mask,
Joerg Roedel6631ee92008-06-26 21:28:05 +02002968};
2969
Joerg Roedel3a18404c2015-05-28 18:41:45 +02002970int __init amd_iommu_init_api(void)
Joerg Roedel27c21272011-05-30 15:56:24 +02002971{
Joerg Roedel3a18404c2015-05-28 18:41:45 +02002972 return bus_set_iommu(&pci_bus_type, &amd_iommu_ops);
Joerg Roedelf5325092010-01-22 17:44:35 +01002973}
2974
Joerg Roedel6631ee92008-06-26 21:28:05 +02002975int __init amd_iommu_init_dma_ops(void)
2976{
Joerg Roedel32302322015-07-28 16:58:50 +02002977 swiotlb = iommu_pass_through ? 1 : 0;
Joerg Roedel6631ee92008-06-26 21:28:05 +02002978 iommu_detected = 1;
Joerg Roedel6631ee92008-06-26 21:28:05 +02002979
Joerg Roedel52717822015-07-28 16:58:51 +02002980 /*
2981 * In case we don't initialize SWIOTLB (actually the common case
2982 * when AMD IOMMU is enabled), make sure there are global
2983 * dma_ops set as a fall-back for devices not handled by this
2984 * driver (for example non-PCI devices).
2985 */
2986 if (!swiotlb)
2987 dma_ops = &nommu_dma_ops;
2988
Joerg Roedel7f265082008-12-12 13:50:21 +01002989 amd_iommu_stats_init();
2990
Joerg Roedel62410ee2012-06-12 16:42:43 +02002991 if (amd_iommu_unmap_flush)
2992 pr_info("AMD-Vi: IO/TLB flush on unmap enabled\n");
2993 else
2994 pr_info("AMD-Vi: Lazy IO/TLB flushing enabled\n");
2995
Joerg Roedel6631ee92008-06-26 21:28:05 +02002996 return 0;
Joerg Roedel6631ee92008-06-26 21:28:05 +02002997}
Joerg Roedel6d98cd82008-12-08 12:05:55 +01002998
2999/*****************************************************************************
3000 *
3001 * The following functions belong to the exported interface of AMD IOMMU
3002 *
3003 * This interface allows access to lower level functions of the IOMMU
3004 * like protection domain handling and assignement of devices to domains
3005 * which is not possible with the dma_ops interface.
3006 *
3007 *****************************************************************************/
3008
Joerg Roedel6d98cd82008-12-08 12:05:55 +01003009static void cleanup_domain(struct protection_domain *domain)
3010{
Joerg Roedel9b29d3c2014-08-05 17:50:15 +02003011 struct iommu_dev_data *entry;
Joerg Roedel6d98cd82008-12-08 12:05:55 +01003012 unsigned long flags;
Joerg Roedel6d98cd82008-12-08 12:05:55 +01003013
3014 write_lock_irqsave(&amd_iommu_devtable_lock, flags);
3015
Joerg Roedel9b29d3c2014-08-05 17:50:15 +02003016 while (!list_empty(&domain->dev_list)) {
3017 entry = list_first_entry(&domain->dev_list,
3018 struct iommu_dev_data, list);
3019 __detach_device(entry);
Joerg Roedel492667d2009-11-27 13:25:47 +01003020 }
Joerg Roedel6d98cd82008-12-08 12:05:55 +01003021
3022 write_unlock_irqrestore(&amd_iommu_devtable_lock, flags);
3023}
3024
Joerg Roedel26508152009-08-26 16:52:40 +02003025static void protection_domain_free(struct protection_domain *domain)
3026{
3027 if (!domain)
3028 return;
3029
Joerg Roedelaeb26f52009-11-20 16:44:01 +01003030 del_domain_from_list(domain);
3031
Joerg Roedel26508152009-08-26 16:52:40 +02003032 if (domain->id)
3033 domain_id_free(domain->id);
3034
3035 kfree(domain);
3036}
3037
Joerg Roedel7a5a5662015-06-30 08:56:11 +02003038static int protection_domain_init(struct protection_domain *domain)
3039{
3040 spin_lock_init(&domain->lock);
3041 mutex_init(&domain->api_lock);
3042 domain->id = domain_id_alloc();
3043 if (!domain->id)
3044 return -ENOMEM;
3045 INIT_LIST_HEAD(&domain->dev_list);
3046
3047 return 0;
3048}
3049
Joerg Roedel26508152009-08-26 16:52:40 +02003050static struct protection_domain *protection_domain_alloc(void)
Joerg Roedelc156e342008-12-02 18:13:27 +01003051{
3052 struct protection_domain *domain;
3053
3054 domain = kzalloc(sizeof(*domain), GFP_KERNEL);
3055 if (!domain)
Joerg Roedel26508152009-08-26 16:52:40 +02003056 return NULL;
Joerg Roedelc156e342008-12-02 18:13:27 +01003057
Joerg Roedel7a5a5662015-06-30 08:56:11 +02003058 if (protection_domain_init(domain))
Joerg Roedel26508152009-08-26 16:52:40 +02003059 goto out_err;
3060
Joerg Roedelaeb26f52009-11-20 16:44:01 +01003061 add_domain_to_list(domain);
3062
Joerg Roedel26508152009-08-26 16:52:40 +02003063 return domain;
3064
3065out_err:
3066 kfree(domain);
3067
3068 return NULL;
3069}
3070
Joerg Roedel3f4b87b2015-03-26 13:43:07 +01003071static struct iommu_domain *amd_iommu_domain_alloc(unsigned type)
3072{
3073 struct protection_domain *pdomain;
Joerg Roedel0bb6e242015-05-28 18:41:40 +02003074 struct dma_ops_domain *dma_domain;
Joerg Roedel3f4b87b2015-03-26 13:43:07 +01003075
Joerg Roedel0bb6e242015-05-28 18:41:40 +02003076 switch (type) {
3077 case IOMMU_DOMAIN_UNMANAGED:
3078 pdomain = protection_domain_alloc();
3079 if (!pdomain)
3080 return NULL;
3081
3082 pdomain->mode = PAGE_MODE_3_LEVEL;
3083 pdomain->pt_root = (void *)get_zeroed_page(GFP_KERNEL);
3084 if (!pdomain->pt_root) {
3085 protection_domain_free(pdomain);
3086 return NULL;
3087 }
3088
3089 pdomain->domain.geometry.aperture_start = 0;
3090 pdomain->domain.geometry.aperture_end = ~0ULL;
3091 pdomain->domain.geometry.force_aperture = true;
3092
3093 break;
3094 case IOMMU_DOMAIN_DMA:
3095 dma_domain = dma_ops_domain_alloc();
3096 if (!dma_domain) {
3097 pr_err("AMD-Vi: Failed to allocate\n");
3098 return NULL;
3099 }
3100 pdomain = &dma_domain->domain;
3101 break;
Joerg Roedel07f643a2015-05-28 18:41:41 +02003102 case IOMMU_DOMAIN_IDENTITY:
3103 pdomain = protection_domain_alloc();
3104 if (!pdomain)
3105 return NULL;
3106
3107 pdomain->mode = PAGE_MODE_NONE;
3108 break;
Joerg Roedel0bb6e242015-05-28 18:41:40 +02003109 default:
Joerg Roedel3f4b87b2015-03-26 13:43:07 +01003110 return NULL;
Joerg Roedel0bb6e242015-05-28 18:41:40 +02003111 }
Joerg Roedel3f4b87b2015-03-26 13:43:07 +01003112
3113 return &pdomain->domain;
Joerg Roedel3f4b87b2015-03-26 13:43:07 +01003114}
3115
3116static void amd_iommu_domain_free(struct iommu_domain *dom)
Joerg Roedel26508152009-08-26 16:52:40 +02003117{
3118 struct protection_domain *domain;
3119
Joerg Roedel3f4b87b2015-03-26 13:43:07 +01003120 if (!dom)
Joerg Roedel98383fc2008-12-02 18:34:12 +01003121 return;
3122
Joerg Roedel3f4b87b2015-03-26 13:43:07 +01003123 domain = to_pdomain(dom);
3124
Joerg Roedel98383fc2008-12-02 18:34:12 +01003125 if (domain->dev_cnt > 0)
3126 cleanup_domain(domain);
3127
3128 BUG_ON(domain->dev_cnt != 0);
3129
Joerg Roedel132bd682011-11-17 14:18:46 +01003130 if (domain->mode != PAGE_MODE_NONE)
3131 free_pagetable(domain);
Joerg Roedel98383fc2008-12-02 18:34:12 +01003132
Joerg Roedel52815b72011-11-17 17:24:28 +01003133 if (domain->flags & PD_IOMMUV2_MASK)
3134 free_gcr3_table(domain);
3135
Joerg Roedel8b408fe2010-03-08 14:20:07 +01003136 protection_domain_free(domain);
Joerg Roedel98383fc2008-12-02 18:34:12 +01003137}
3138
Joerg Roedel684f2882008-12-08 12:07:44 +01003139static void amd_iommu_detach_device(struct iommu_domain *dom,
3140 struct device *dev)
3141{
Joerg Roedel657cbb62009-11-23 15:26:46 +01003142 struct iommu_dev_data *dev_data = dev->archdata.iommu;
Joerg Roedel684f2882008-12-08 12:07:44 +01003143 struct amd_iommu *iommu;
Wan Zongshun7aba6cb2016-04-01 09:06:02 -04003144 int devid;
Joerg Roedel684f2882008-12-08 12:07:44 +01003145
Joerg Roedel98fc5a62009-11-24 17:19:23 +01003146 if (!check_device(dev))
Joerg Roedel684f2882008-12-08 12:07:44 +01003147 return;
3148
Joerg Roedel98fc5a62009-11-24 17:19:23 +01003149 devid = get_device_id(dev);
Wan Zongshun7aba6cb2016-04-01 09:06:02 -04003150 if (IS_ERR_VALUE(devid))
3151 return;
Joerg Roedel684f2882008-12-08 12:07:44 +01003152
Joerg Roedel657cbb62009-11-23 15:26:46 +01003153 if (dev_data->domain != NULL)
Joerg Roedel15898bb2009-11-24 15:39:42 +01003154 detach_device(dev);
Joerg Roedel684f2882008-12-08 12:07:44 +01003155
3156 iommu = amd_iommu_rlookup_table[devid];
3157 if (!iommu)
3158 return;
3159
Joerg Roedel684f2882008-12-08 12:07:44 +01003160 iommu_completion_wait(iommu);
3161}
3162
Joerg Roedel01106062008-12-02 19:34:11 +01003163static int amd_iommu_attach_device(struct iommu_domain *dom,
3164 struct device *dev)
3165{
Joerg Roedel3f4b87b2015-03-26 13:43:07 +01003166 struct protection_domain *domain = to_pdomain(dom);
Joerg Roedel657cbb62009-11-23 15:26:46 +01003167 struct iommu_dev_data *dev_data;
Joerg Roedel01106062008-12-02 19:34:11 +01003168 struct amd_iommu *iommu;
Joerg Roedel15898bb2009-11-24 15:39:42 +01003169 int ret;
Joerg Roedel01106062008-12-02 19:34:11 +01003170
Joerg Roedel98fc5a62009-11-24 17:19:23 +01003171 if (!check_device(dev))
Joerg Roedel01106062008-12-02 19:34:11 +01003172 return -EINVAL;
3173
Joerg Roedel657cbb62009-11-23 15:26:46 +01003174 dev_data = dev->archdata.iommu;
3175
Joerg Roedelf62dda62011-06-09 12:55:35 +02003176 iommu = amd_iommu_rlookup_table[dev_data->devid];
Joerg Roedel01106062008-12-02 19:34:11 +01003177 if (!iommu)
3178 return -EINVAL;
3179
Joerg Roedel657cbb62009-11-23 15:26:46 +01003180 if (dev_data->domain)
Joerg Roedel15898bb2009-11-24 15:39:42 +01003181 detach_device(dev);
Joerg Roedel01106062008-12-02 19:34:11 +01003182
Joerg Roedel15898bb2009-11-24 15:39:42 +01003183 ret = attach_device(dev, domain);
Joerg Roedel01106062008-12-02 19:34:11 +01003184
3185 iommu_completion_wait(iommu);
3186
Joerg Roedel15898bb2009-11-24 15:39:42 +01003187 return ret;
Joerg Roedel01106062008-12-02 19:34:11 +01003188}
3189
Joerg Roedel468e2362010-01-21 16:37:36 +01003190static int amd_iommu_map(struct iommu_domain *dom, unsigned long iova,
Ohad Ben-Cohen50090652011-11-10 11:32:25 +02003191 phys_addr_t paddr, size_t page_size, int iommu_prot)
Joerg Roedelc6229ca2008-12-02 19:48:43 +01003192{
Joerg Roedel3f4b87b2015-03-26 13:43:07 +01003193 struct protection_domain *domain = to_pdomain(dom);
Joerg Roedelc6229ca2008-12-02 19:48:43 +01003194 int prot = 0;
3195 int ret;
3196
Joerg Roedel132bd682011-11-17 14:18:46 +01003197 if (domain->mode == PAGE_MODE_NONE)
3198 return -EINVAL;
3199
Joerg Roedelc6229ca2008-12-02 19:48:43 +01003200 if (iommu_prot & IOMMU_READ)
3201 prot |= IOMMU_PROT_IR;
3202 if (iommu_prot & IOMMU_WRITE)
3203 prot |= IOMMU_PROT_IW;
3204
Joerg Roedel5d214fe2010-02-08 14:44:49 +01003205 mutex_lock(&domain->api_lock);
Joerg Roedel795e74f72010-05-11 17:40:57 +02003206 ret = iommu_map_page(domain, iova, paddr, prot, page_size);
Joerg Roedel5d214fe2010-02-08 14:44:49 +01003207 mutex_unlock(&domain->api_lock);
3208
Joerg Roedel795e74f72010-05-11 17:40:57 +02003209 return ret;
Joerg Roedelc6229ca2008-12-02 19:48:43 +01003210}
3211
Ohad Ben-Cohen50090652011-11-10 11:32:25 +02003212static size_t amd_iommu_unmap(struct iommu_domain *dom, unsigned long iova,
3213 size_t page_size)
Joerg Roedeleb74ff62008-12-02 19:59:10 +01003214{
Joerg Roedel3f4b87b2015-03-26 13:43:07 +01003215 struct protection_domain *domain = to_pdomain(dom);
Ohad Ben-Cohen50090652011-11-10 11:32:25 +02003216 size_t unmap_size;
Joerg Roedeleb74ff62008-12-02 19:59:10 +01003217
Joerg Roedel132bd682011-11-17 14:18:46 +01003218 if (domain->mode == PAGE_MODE_NONE)
3219 return -EINVAL;
3220
Joerg Roedel5d214fe2010-02-08 14:44:49 +01003221 mutex_lock(&domain->api_lock);
Joerg Roedel468e2362010-01-21 16:37:36 +01003222 unmap_size = iommu_unmap_page(domain, iova, page_size);
Joerg Roedel795e74f72010-05-11 17:40:57 +02003223 mutex_unlock(&domain->api_lock);
Joerg Roedeleb74ff62008-12-02 19:59:10 +01003224
Joerg Roedel17b124b2011-04-06 18:01:35 +02003225 domain_flush_tlb_pde(domain);
Joerg Roedel5d214fe2010-02-08 14:44:49 +01003226
Ohad Ben-Cohen50090652011-11-10 11:32:25 +02003227 return unmap_size;
Joerg Roedeleb74ff62008-12-02 19:59:10 +01003228}
3229
Joerg Roedel645c4c82008-12-02 20:05:50 +01003230static phys_addr_t amd_iommu_iova_to_phys(struct iommu_domain *dom,
Varun Sethibb5547a2013-03-29 01:23:58 +05303231 dma_addr_t iova)
Joerg Roedel645c4c82008-12-02 20:05:50 +01003232{
Joerg Roedel3f4b87b2015-03-26 13:43:07 +01003233 struct protection_domain *domain = to_pdomain(dom);
Joerg Roedel3039ca12015-04-01 14:58:48 +02003234 unsigned long offset_mask, pte_pgsize;
Joerg Roedelf03152b2010-01-21 16:15:24 +01003235 u64 *pte, __pte;
Joerg Roedel645c4c82008-12-02 20:05:50 +01003236
Joerg Roedel132bd682011-11-17 14:18:46 +01003237 if (domain->mode == PAGE_MODE_NONE)
3238 return iova;
3239
Joerg Roedel3039ca12015-04-01 14:58:48 +02003240 pte = fetch_pte(domain, iova, &pte_pgsize);
Joerg Roedel645c4c82008-12-02 20:05:50 +01003241
Joerg Roedela6d41a42009-09-02 17:08:55 +02003242 if (!pte || !IOMMU_PTE_PRESENT(*pte))
Joerg Roedel645c4c82008-12-02 20:05:50 +01003243 return 0;
3244
Joerg Roedelb24b1b62015-04-01 14:58:51 +02003245 offset_mask = pte_pgsize - 1;
3246 __pte = *pte & PM_ADDR_MASK;
Joerg Roedelf03152b2010-01-21 16:15:24 +01003247
Joerg Roedelb24b1b62015-04-01 14:58:51 +02003248 return (__pte & ~offset_mask) | (iova & offset_mask);
Joerg Roedel645c4c82008-12-02 20:05:50 +01003249}
3250
Joerg Roedelab636482014-09-05 10:48:21 +02003251static bool amd_iommu_capable(enum iommu_cap cap)
Sheng Yangdbb9fd82009-03-18 15:33:06 +08003252{
Joerg Roedel80a506b2010-07-27 17:14:24 +02003253 switch (cap) {
3254 case IOMMU_CAP_CACHE_COHERENCY:
Joerg Roedelab636482014-09-05 10:48:21 +02003255 return true;
Joerg Roedelbdddadc2012-07-02 18:38:13 +02003256 case IOMMU_CAP_INTR_REMAP:
Joerg Roedelab636482014-09-05 10:48:21 +02003257 return (irq_remapping_enabled == 1);
Will Deaconcfdeec22014-10-27 11:24:48 +00003258 case IOMMU_CAP_NOEXEC:
3259 return false;
Joerg Roedel80a506b2010-07-27 17:14:24 +02003260 }
3261
Joerg Roedelab636482014-09-05 10:48:21 +02003262 return false;
Sheng Yangdbb9fd82009-03-18 15:33:06 +08003263}
3264
Joerg Roedel35cf2482015-05-28 18:41:37 +02003265static void amd_iommu_get_dm_regions(struct device *dev,
3266 struct list_head *head)
3267{
3268 struct unity_map_entry *entry;
Wan Zongshun7aba6cb2016-04-01 09:06:02 -04003269 int devid;
Joerg Roedel35cf2482015-05-28 18:41:37 +02003270
3271 devid = get_device_id(dev);
Wan Zongshun7aba6cb2016-04-01 09:06:02 -04003272 if (IS_ERR_VALUE(devid))
3273 return;
Joerg Roedel35cf2482015-05-28 18:41:37 +02003274
3275 list_for_each_entry(entry, &amd_iommu_unity_map, list) {
3276 struct iommu_dm_region *region;
3277
3278 if (devid < entry->devid_start || devid > entry->devid_end)
3279 continue;
3280
3281 region = kzalloc(sizeof(*region), GFP_KERNEL);
3282 if (!region) {
3283 pr_err("Out of memory allocating dm-regions for %s\n",
3284 dev_name(dev));
3285 return;
3286 }
3287
3288 region->start = entry->address_start;
3289 region->length = entry->address_end - entry->address_start;
3290 if (entry->prot & IOMMU_PROT_IR)
3291 region->prot |= IOMMU_READ;
3292 if (entry->prot & IOMMU_PROT_IW)
3293 region->prot |= IOMMU_WRITE;
3294
3295 list_add_tail(&region->list, head);
3296 }
3297}
3298
3299static void amd_iommu_put_dm_regions(struct device *dev,
3300 struct list_head *head)
3301{
3302 struct iommu_dm_region *entry, *next;
3303
3304 list_for_each_entry_safe(entry, next, head, list)
3305 kfree(entry);
3306}
3307
Thierry Redingb22f6432014-06-27 09:03:12 +02003308static const struct iommu_ops amd_iommu_ops = {
Joerg Roedelab636482014-09-05 10:48:21 +02003309 .capable = amd_iommu_capable,
Joerg Roedel3f4b87b2015-03-26 13:43:07 +01003310 .domain_alloc = amd_iommu_domain_alloc,
3311 .domain_free = amd_iommu_domain_free,
Joerg Roedel26961ef2008-12-03 17:00:17 +01003312 .attach_dev = amd_iommu_attach_device,
3313 .detach_dev = amd_iommu_detach_device,
Joerg Roedel468e2362010-01-21 16:37:36 +01003314 .map = amd_iommu_map,
3315 .unmap = amd_iommu_unmap,
Olav Haugan315786e2014-10-25 09:55:16 -07003316 .map_sg = default_iommu_map_sg,
Joerg Roedel26961ef2008-12-03 17:00:17 +01003317 .iova_to_phys = amd_iommu_iova_to_phys,
Joerg Roedelaafd8ba2015-05-28 18:41:39 +02003318 .add_device = amd_iommu_add_device,
3319 .remove_device = amd_iommu_remove_device,
Wan Zongshunb097d112016-04-01 09:06:04 -04003320 .device_group = amd_iommu_device_group,
Joerg Roedel35cf2482015-05-28 18:41:37 +02003321 .get_dm_regions = amd_iommu_get_dm_regions,
3322 .put_dm_regions = amd_iommu_put_dm_regions,
Ohad Ben-Cohenaa3de9c2011-11-10 11:32:29 +02003323 .pgsize_bitmap = AMD_IOMMU_PGSIZES,
Joerg Roedel26961ef2008-12-03 17:00:17 +01003324};
3325
Joerg Roedel0feae532009-08-26 15:26:30 +02003326/*****************************************************************************
3327 *
3328 * The next functions do a basic initialization of IOMMU for pass through
3329 * mode
3330 *
3331 * In passthrough mode the IOMMU is initialized and enabled but not used for
3332 * DMA-API translation.
3333 *
3334 *****************************************************************************/
3335
Joerg Roedel72e1dcc2011-11-10 19:13:51 +01003336/* IOMMUv2 specific functions */
3337int amd_iommu_register_ppr_notifier(struct notifier_block *nb)
3338{
3339 return atomic_notifier_chain_register(&ppr_notifier, nb);
3340}
3341EXPORT_SYMBOL(amd_iommu_register_ppr_notifier);
3342
3343int amd_iommu_unregister_ppr_notifier(struct notifier_block *nb)
3344{
3345 return atomic_notifier_chain_unregister(&ppr_notifier, nb);
3346}
3347EXPORT_SYMBOL(amd_iommu_unregister_ppr_notifier);
Joerg Roedel132bd682011-11-17 14:18:46 +01003348
3349void amd_iommu_domain_direct_map(struct iommu_domain *dom)
3350{
Joerg Roedel3f4b87b2015-03-26 13:43:07 +01003351 struct protection_domain *domain = to_pdomain(dom);
Joerg Roedel132bd682011-11-17 14:18:46 +01003352 unsigned long flags;
3353
3354 spin_lock_irqsave(&domain->lock, flags);
3355
3356 /* Update data structure */
3357 domain->mode = PAGE_MODE_NONE;
3358 domain->updated = true;
3359
3360 /* Make changes visible to IOMMUs */
3361 update_domain(domain);
3362
3363 /* Page-table is not visible to IOMMU anymore, so free it */
3364 free_pagetable(domain);
3365
3366 spin_unlock_irqrestore(&domain->lock, flags);
3367}
3368EXPORT_SYMBOL(amd_iommu_domain_direct_map);
Joerg Roedel52815b72011-11-17 17:24:28 +01003369
3370int amd_iommu_domain_enable_v2(struct iommu_domain *dom, int pasids)
3371{
Joerg Roedel3f4b87b2015-03-26 13:43:07 +01003372 struct protection_domain *domain = to_pdomain(dom);
Joerg Roedel52815b72011-11-17 17:24:28 +01003373 unsigned long flags;
3374 int levels, ret;
3375
3376 if (pasids <= 0 || pasids > (PASID_MASK + 1))
3377 return -EINVAL;
3378
3379 /* Number of GCR3 table levels required */
3380 for (levels = 0; (pasids - 1) & ~0x1ff; pasids >>= 9)
3381 levels += 1;
3382
3383 if (levels > amd_iommu_max_glx_val)
3384 return -EINVAL;
3385
3386 spin_lock_irqsave(&domain->lock, flags);
3387
3388 /*
3389 * Save us all sanity checks whether devices already in the
3390 * domain support IOMMUv2. Just force that the domain has no
3391 * devices attached when it is switched into IOMMUv2 mode.
3392 */
3393 ret = -EBUSY;
3394 if (domain->dev_cnt > 0 || domain->flags & PD_IOMMUV2_MASK)
3395 goto out;
3396
3397 ret = -ENOMEM;
3398 domain->gcr3_tbl = (void *)get_zeroed_page(GFP_ATOMIC);
3399 if (domain->gcr3_tbl == NULL)
3400 goto out;
3401
3402 domain->glx = levels;
3403 domain->flags |= PD_IOMMUV2_MASK;
3404 domain->updated = true;
3405
3406 update_domain(domain);
3407
3408 ret = 0;
3409
3410out:
3411 spin_unlock_irqrestore(&domain->lock, flags);
3412
3413 return ret;
3414}
3415EXPORT_SYMBOL(amd_iommu_domain_enable_v2);
Joerg Roedel22e266c2011-11-21 15:59:08 +01003416
3417static int __flush_pasid(struct protection_domain *domain, int pasid,
3418 u64 address, bool size)
3419{
3420 struct iommu_dev_data *dev_data;
3421 struct iommu_cmd cmd;
3422 int i, ret;
3423
3424 if (!(domain->flags & PD_IOMMUV2_MASK))
3425 return -EINVAL;
3426
3427 build_inv_iommu_pasid(&cmd, domain->id, pasid, address, size);
3428
3429 /*
3430 * IOMMU TLB needs to be flushed before Device TLB to
3431 * prevent device TLB refill from IOMMU TLB
3432 */
3433 for (i = 0; i < amd_iommus_present; ++i) {
3434 if (domain->dev_iommu[i] == 0)
3435 continue;
3436
3437 ret = iommu_queue_command(amd_iommus[i], &cmd);
3438 if (ret != 0)
3439 goto out;
3440 }
3441
3442 /* Wait until IOMMU TLB flushes are complete */
3443 domain_flush_complete(domain);
3444
3445 /* Now flush device TLBs */
3446 list_for_each_entry(dev_data, &domain->dev_list, list) {
3447 struct amd_iommu *iommu;
3448 int qdep;
3449
Joerg Roedel1c1cc452015-07-30 11:24:45 +02003450 /*
3451 There might be non-IOMMUv2 capable devices in an IOMMUv2
3452 * domain.
3453 */
3454 if (!dev_data->ats.enabled)
3455 continue;
Joerg Roedel22e266c2011-11-21 15:59:08 +01003456
3457 qdep = dev_data->ats.qdep;
3458 iommu = amd_iommu_rlookup_table[dev_data->devid];
3459
3460 build_inv_iotlb_pasid(&cmd, dev_data->devid, pasid,
3461 qdep, address, size);
3462
3463 ret = iommu_queue_command(iommu, &cmd);
3464 if (ret != 0)
3465 goto out;
3466 }
3467
3468 /* Wait until all device TLBs are flushed */
3469 domain_flush_complete(domain);
3470
3471 ret = 0;
3472
3473out:
3474
3475 return ret;
3476}
3477
3478static int __amd_iommu_flush_page(struct protection_domain *domain, int pasid,
3479 u64 address)
3480{
Joerg Roedel399be2f2011-12-01 16:53:47 +01003481 INC_STATS_COUNTER(invalidate_iotlb);
3482
Joerg Roedel22e266c2011-11-21 15:59:08 +01003483 return __flush_pasid(domain, pasid, address, false);
3484}
3485
3486int amd_iommu_flush_page(struct iommu_domain *dom, int pasid,
3487 u64 address)
3488{
Joerg Roedel3f4b87b2015-03-26 13:43:07 +01003489 struct protection_domain *domain = to_pdomain(dom);
Joerg Roedel22e266c2011-11-21 15:59:08 +01003490 unsigned long flags;
3491 int ret;
3492
3493 spin_lock_irqsave(&domain->lock, flags);
3494 ret = __amd_iommu_flush_page(domain, pasid, address);
3495 spin_unlock_irqrestore(&domain->lock, flags);
3496
3497 return ret;
3498}
3499EXPORT_SYMBOL(amd_iommu_flush_page);
3500
3501static int __amd_iommu_flush_tlb(struct protection_domain *domain, int pasid)
3502{
Joerg Roedel399be2f2011-12-01 16:53:47 +01003503 INC_STATS_COUNTER(invalidate_iotlb_all);
3504
Joerg Roedel22e266c2011-11-21 15:59:08 +01003505 return __flush_pasid(domain, pasid, CMD_INV_IOMMU_ALL_PAGES_ADDRESS,
3506 true);
3507}
3508
3509int amd_iommu_flush_tlb(struct iommu_domain *dom, int pasid)
3510{
Joerg Roedel3f4b87b2015-03-26 13:43:07 +01003511 struct protection_domain *domain = to_pdomain(dom);
Joerg Roedel22e266c2011-11-21 15:59:08 +01003512 unsigned long flags;
3513 int ret;
3514
3515 spin_lock_irqsave(&domain->lock, flags);
3516 ret = __amd_iommu_flush_tlb(domain, pasid);
3517 spin_unlock_irqrestore(&domain->lock, flags);
3518
3519 return ret;
3520}
3521EXPORT_SYMBOL(amd_iommu_flush_tlb);
3522
Joerg Roedelb16137b2011-11-21 16:50:23 +01003523static u64 *__get_gcr3_pte(u64 *root, int level, int pasid, bool alloc)
3524{
3525 int index;
3526 u64 *pte;
3527
3528 while (true) {
3529
3530 index = (pasid >> (9 * level)) & 0x1ff;
3531 pte = &root[index];
3532
3533 if (level == 0)
3534 break;
3535
3536 if (!(*pte & GCR3_VALID)) {
3537 if (!alloc)
3538 return NULL;
3539
3540 root = (void *)get_zeroed_page(GFP_ATOMIC);
3541 if (root == NULL)
3542 return NULL;
3543
3544 *pte = __pa(root) | GCR3_VALID;
3545 }
3546
3547 root = __va(*pte & PAGE_MASK);
3548
3549 level -= 1;
3550 }
3551
3552 return pte;
3553}
3554
3555static int __set_gcr3(struct protection_domain *domain, int pasid,
3556 unsigned long cr3)
3557{
3558 u64 *pte;
3559
3560 if (domain->mode != PAGE_MODE_NONE)
3561 return -EINVAL;
3562
3563 pte = __get_gcr3_pte(domain->gcr3_tbl, domain->glx, pasid, true);
3564 if (pte == NULL)
3565 return -ENOMEM;
3566
3567 *pte = (cr3 & PAGE_MASK) | GCR3_VALID;
3568
3569 return __amd_iommu_flush_tlb(domain, pasid);
3570}
3571
3572static int __clear_gcr3(struct protection_domain *domain, int pasid)
3573{
3574 u64 *pte;
3575
3576 if (domain->mode != PAGE_MODE_NONE)
3577 return -EINVAL;
3578
3579 pte = __get_gcr3_pte(domain->gcr3_tbl, domain->glx, pasid, false);
3580 if (pte == NULL)
3581 return 0;
3582
3583 *pte = 0;
3584
3585 return __amd_iommu_flush_tlb(domain, pasid);
3586}
3587
3588int amd_iommu_domain_set_gcr3(struct iommu_domain *dom, int pasid,
3589 unsigned long cr3)
3590{
Joerg Roedel3f4b87b2015-03-26 13:43:07 +01003591 struct protection_domain *domain = to_pdomain(dom);
Joerg Roedelb16137b2011-11-21 16:50:23 +01003592 unsigned long flags;
3593 int ret;
3594
3595 spin_lock_irqsave(&domain->lock, flags);
3596 ret = __set_gcr3(domain, pasid, cr3);
3597 spin_unlock_irqrestore(&domain->lock, flags);
3598
3599 return ret;
3600}
3601EXPORT_SYMBOL(amd_iommu_domain_set_gcr3);
3602
3603int amd_iommu_domain_clear_gcr3(struct iommu_domain *dom, int pasid)
3604{
Joerg Roedel3f4b87b2015-03-26 13:43:07 +01003605 struct protection_domain *domain = to_pdomain(dom);
Joerg Roedelb16137b2011-11-21 16:50:23 +01003606 unsigned long flags;
3607 int ret;
3608
3609 spin_lock_irqsave(&domain->lock, flags);
3610 ret = __clear_gcr3(domain, pasid);
3611 spin_unlock_irqrestore(&domain->lock, flags);
3612
3613 return ret;
3614}
3615EXPORT_SYMBOL(amd_iommu_domain_clear_gcr3);
Joerg Roedelc99afa22011-11-21 18:19:25 +01003616
3617int amd_iommu_complete_ppr(struct pci_dev *pdev, int pasid,
3618 int status, int tag)
3619{
3620 struct iommu_dev_data *dev_data;
3621 struct amd_iommu *iommu;
3622 struct iommu_cmd cmd;
3623
Joerg Roedel399be2f2011-12-01 16:53:47 +01003624 INC_STATS_COUNTER(complete_ppr);
3625
Joerg Roedelc99afa22011-11-21 18:19:25 +01003626 dev_data = get_dev_data(&pdev->dev);
3627 iommu = amd_iommu_rlookup_table[dev_data->devid];
3628
3629 build_complete_ppr(&cmd, dev_data->devid, pasid, status,
3630 tag, dev_data->pri_tlp);
3631
3632 return iommu_queue_command(iommu, &cmd);
3633}
3634EXPORT_SYMBOL(amd_iommu_complete_ppr);
Joerg Roedelf3572db2011-11-23 12:36:25 +01003635
3636struct iommu_domain *amd_iommu_get_v2_domain(struct pci_dev *pdev)
3637{
Joerg Roedel3f4b87b2015-03-26 13:43:07 +01003638 struct protection_domain *pdomain;
Joerg Roedelf3572db2011-11-23 12:36:25 +01003639
Joerg Roedel3f4b87b2015-03-26 13:43:07 +01003640 pdomain = get_domain(&pdev->dev);
3641 if (IS_ERR(pdomain))
Joerg Roedelf3572db2011-11-23 12:36:25 +01003642 return NULL;
3643
3644 /* Only return IOMMUv2 domains */
Joerg Roedel3f4b87b2015-03-26 13:43:07 +01003645 if (!(pdomain->flags & PD_IOMMUV2_MASK))
Joerg Roedelf3572db2011-11-23 12:36:25 +01003646 return NULL;
3647
Joerg Roedel3f4b87b2015-03-26 13:43:07 +01003648 return &pdomain->domain;
Joerg Roedelf3572db2011-11-23 12:36:25 +01003649}
3650EXPORT_SYMBOL(amd_iommu_get_v2_domain);
Joerg Roedel6a113dd2011-12-01 12:04:58 +01003651
3652void amd_iommu_enable_device_erratum(struct pci_dev *pdev, u32 erratum)
3653{
3654 struct iommu_dev_data *dev_data;
3655
3656 if (!amd_iommu_v2_supported())
3657 return;
3658
3659 dev_data = get_dev_data(&pdev->dev);
3660 dev_data->errata |= (1 << erratum);
3661}
3662EXPORT_SYMBOL(amd_iommu_enable_device_erratum);
Joerg Roedel52efdb82011-12-07 12:01:36 +01003663
3664int amd_iommu_device_info(struct pci_dev *pdev,
3665 struct amd_iommu_device_info *info)
3666{
3667 int max_pasids;
3668 int pos;
3669
3670 if (pdev == NULL || info == NULL)
3671 return -EINVAL;
3672
3673 if (!amd_iommu_v2_supported())
3674 return -EINVAL;
3675
3676 memset(info, 0, sizeof(*info));
3677
3678 pos = pci_find_ext_capability(pdev, PCI_EXT_CAP_ID_ATS);
3679 if (pos)
3680 info->flags |= AMD_IOMMU_DEVICE_FLAG_ATS_SUP;
3681
3682 pos = pci_find_ext_capability(pdev, PCI_EXT_CAP_ID_PRI);
3683 if (pos)
3684 info->flags |= AMD_IOMMU_DEVICE_FLAG_PRI_SUP;
3685
3686 pos = pci_find_ext_capability(pdev, PCI_EXT_CAP_ID_PASID);
3687 if (pos) {
3688 int features;
3689
3690 max_pasids = 1 << (9 * (amd_iommu_max_glx_val + 1));
3691 max_pasids = min(max_pasids, (1 << 20));
3692
3693 info->flags |= AMD_IOMMU_DEVICE_FLAG_PASID_SUP;
3694 info->max_pasids = min(pci_max_pasids(pdev), max_pasids);
3695
3696 features = pci_pasid_features(pdev);
3697 if (features & PCI_PASID_CAP_EXEC)
3698 info->flags |= AMD_IOMMU_DEVICE_FLAG_EXEC_SUP;
3699 if (features & PCI_PASID_CAP_PRIV)
3700 info->flags |= AMD_IOMMU_DEVICE_FLAG_PRIV_SUP;
3701 }
3702
3703 return 0;
3704}
3705EXPORT_SYMBOL(amd_iommu_device_info);
Joerg Roedel2b324502012-06-21 16:29:10 +02003706
3707#ifdef CONFIG_IRQ_REMAP
3708
3709/*****************************************************************************
3710 *
3711 * Interrupt Remapping Implementation
3712 *
3713 *****************************************************************************/
3714
3715union irte {
3716 u32 val;
3717 struct {
3718 u32 valid : 1,
3719 no_fault : 1,
3720 int_type : 3,
3721 rq_eoi : 1,
3722 dm : 1,
3723 rsvd_1 : 1,
3724 destination : 8,
3725 vector : 8,
3726 rsvd_2 : 8;
3727 } fields;
3728};
3729
Jiang Liu9c724962015-04-14 10:29:52 +08003730struct irq_2_irte {
3731 u16 devid; /* Device ID for IRTE table */
3732 u16 index; /* Index into IRTE table*/
3733};
3734
Jiang Liu7c71d302015-04-13 14:11:33 +08003735struct amd_ir_data {
3736 struct irq_2_irte irq_2_irte;
3737 union irte irte_entry;
3738 union {
3739 struct msi_msg msi_entry;
3740 };
3741};
3742
3743static struct irq_chip amd_ir_chip;
3744
Joerg Roedel2b324502012-06-21 16:29:10 +02003745#define DTE_IRQ_PHYS_ADDR_MASK (((1ULL << 45)-1) << 6)
3746#define DTE_IRQ_REMAP_INTCTL (2ULL << 60)
3747#define DTE_IRQ_TABLE_LEN (8ULL << 1)
3748#define DTE_IRQ_REMAP_ENABLE 1ULL
3749
3750static void set_dte_irq_entry(u16 devid, struct irq_remap_table *table)
3751{
3752 u64 dte;
3753
3754 dte = amd_iommu_dev_table[devid].data[2];
3755 dte &= ~DTE_IRQ_PHYS_ADDR_MASK;
3756 dte |= virt_to_phys(table->table);
3757 dte |= DTE_IRQ_REMAP_INTCTL;
3758 dte |= DTE_IRQ_TABLE_LEN;
3759 dte |= DTE_IRQ_REMAP_ENABLE;
3760
3761 amd_iommu_dev_table[devid].data[2] = dte;
3762}
3763
3764#define IRTE_ALLOCATED (~1U)
3765
3766static struct irq_remap_table *get_irq_table(u16 devid, bool ioapic)
3767{
3768 struct irq_remap_table *table = NULL;
3769 struct amd_iommu *iommu;
3770 unsigned long flags;
3771 u16 alias;
3772
3773 write_lock_irqsave(&amd_iommu_devtable_lock, flags);
3774
3775 iommu = amd_iommu_rlookup_table[devid];
3776 if (!iommu)
3777 goto out_unlock;
3778
3779 table = irq_lookup_table[devid];
3780 if (table)
3781 goto out;
3782
3783 alias = amd_iommu_alias_table[devid];
3784 table = irq_lookup_table[alias];
3785 if (table) {
3786 irq_lookup_table[devid] = table;
3787 set_dte_irq_entry(devid, table);
3788 iommu_flush_dte(iommu, devid);
3789 goto out;
3790 }
3791
3792 /* Nothing there yet, allocate new irq remapping table */
3793 table = kzalloc(sizeof(*table), GFP_ATOMIC);
3794 if (!table)
3795 goto out;
3796
Joerg Roedel197887f2013-04-09 21:14:08 +02003797 /* Initialize table spin-lock */
3798 spin_lock_init(&table->lock);
3799
Joerg Roedel2b324502012-06-21 16:29:10 +02003800 if (ioapic)
3801 /* Keep the first 32 indexes free for IOAPIC interrupts */
3802 table->min_index = 32;
3803
3804 table->table = kmem_cache_alloc(amd_iommu_irq_cache, GFP_ATOMIC);
3805 if (!table->table) {
3806 kfree(table);
Dan Carpenter821f0f62012-10-02 11:34:40 +03003807 table = NULL;
Joerg Roedel2b324502012-06-21 16:29:10 +02003808 goto out;
3809 }
3810
3811 memset(table->table, 0, MAX_IRQS_PER_TABLE * sizeof(u32));
3812
3813 if (ioapic) {
3814 int i;
3815
3816 for (i = 0; i < 32; ++i)
3817 table->table[i] = IRTE_ALLOCATED;
3818 }
3819
3820 irq_lookup_table[devid] = table;
3821 set_dte_irq_entry(devid, table);
3822 iommu_flush_dte(iommu, devid);
3823 if (devid != alias) {
3824 irq_lookup_table[alias] = table;
Alex Williamsone028a9e2014-04-22 10:08:40 -06003825 set_dte_irq_entry(alias, table);
Joerg Roedel2b324502012-06-21 16:29:10 +02003826 iommu_flush_dte(iommu, alias);
3827 }
3828
3829out:
3830 iommu_completion_wait(iommu);
3831
3832out_unlock:
3833 write_unlock_irqrestore(&amd_iommu_devtable_lock, flags);
3834
3835 return table;
3836}
3837
Jiang Liu3c3d4f92015-04-13 14:11:38 +08003838static int alloc_irq_index(u16 devid, int count)
Joerg Roedel2b324502012-06-21 16:29:10 +02003839{
3840 struct irq_remap_table *table;
3841 unsigned long flags;
3842 int index, c;
3843
3844 table = get_irq_table(devid, false);
3845 if (!table)
3846 return -ENODEV;
3847
3848 spin_lock_irqsave(&table->lock, flags);
3849
3850 /* Scan table for free entries */
3851 for (c = 0, index = table->min_index;
3852 index < MAX_IRQS_PER_TABLE;
3853 ++index) {
3854 if (table->table[index] == 0)
3855 c += 1;
3856 else
3857 c = 0;
3858
3859 if (c == count) {
Joerg Roedel2b324502012-06-21 16:29:10 +02003860 for (; c != 0; --c)
3861 table->table[index - c + 1] = IRTE_ALLOCATED;
3862
3863 index -= count - 1;
Joerg Roedel2b324502012-06-21 16:29:10 +02003864 goto out;
3865 }
3866 }
3867
3868 index = -ENOSPC;
3869
3870out:
3871 spin_unlock_irqrestore(&table->lock, flags);
3872
3873 return index;
3874}
3875
Joerg Roedel2b324502012-06-21 16:29:10 +02003876static int modify_irte(u16 devid, int index, union irte irte)
3877{
3878 struct irq_remap_table *table;
3879 struct amd_iommu *iommu;
3880 unsigned long flags;
3881
3882 iommu = amd_iommu_rlookup_table[devid];
3883 if (iommu == NULL)
3884 return -EINVAL;
3885
3886 table = get_irq_table(devid, false);
3887 if (!table)
3888 return -ENOMEM;
3889
3890 spin_lock_irqsave(&table->lock, flags);
3891 table->table[index] = irte.val;
3892 spin_unlock_irqrestore(&table->lock, flags);
3893
3894 iommu_flush_irt(iommu, devid);
3895 iommu_completion_wait(iommu);
3896
3897 return 0;
3898}
3899
3900static void free_irte(u16 devid, int index)
3901{
3902 struct irq_remap_table *table;
3903 struct amd_iommu *iommu;
3904 unsigned long flags;
3905
3906 iommu = amd_iommu_rlookup_table[devid];
3907 if (iommu == NULL)
3908 return;
3909
3910 table = get_irq_table(devid, false);
3911 if (!table)
3912 return;
3913
3914 spin_lock_irqsave(&table->lock, flags);
3915 table->table[index] = 0;
3916 spin_unlock_irqrestore(&table->lock, flags);
3917
3918 iommu_flush_irt(iommu, devid);
3919 iommu_completion_wait(iommu);
3920}
3921
Jiang Liu7c71d302015-04-13 14:11:33 +08003922static int get_devid(struct irq_alloc_info *info)
Joerg Roedel5527de72012-06-26 11:17:32 +02003923{
Jiang Liu7c71d302015-04-13 14:11:33 +08003924 int devid = -1;
Joerg Roedel5527de72012-06-26 11:17:32 +02003925
Jiang Liu7c71d302015-04-13 14:11:33 +08003926 switch (info->type) {
3927 case X86_IRQ_ALLOC_TYPE_IOAPIC:
3928 devid = get_ioapic_devid(info->ioapic_id);
3929 break;
3930 case X86_IRQ_ALLOC_TYPE_HPET:
3931 devid = get_hpet_devid(info->hpet_id);
3932 break;
3933 case X86_IRQ_ALLOC_TYPE_MSI:
3934 case X86_IRQ_ALLOC_TYPE_MSIX:
3935 devid = get_device_id(&info->msi_dev->dev);
3936 break;
3937 default:
3938 BUG_ON(1);
3939 break;
Joerg Roedel5527de72012-06-26 11:17:32 +02003940 }
3941
Jiang Liu7c71d302015-04-13 14:11:33 +08003942 return devid;
Joerg Roedel5527de72012-06-26 11:17:32 +02003943}
3944
Jiang Liu7c71d302015-04-13 14:11:33 +08003945static struct irq_domain *get_ir_irq_domain(struct irq_alloc_info *info)
Joerg Roedel5527de72012-06-26 11:17:32 +02003946{
Jiang Liu7c71d302015-04-13 14:11:33 +08003947 struct amd_iommu *iommu;
3948 int devid;
Joerg Roedel5527de72012-06-26 11:17:32 +02003949
Jiang Liu7c71d302015-04-13 14:11:33 +08003950 if (!info)
3951 return NULL;
Joerg Roedel5527de72012-06-26 11:17:32 +02003952
Jiang Liu7c71d302015-04-13 14:11:33 +08003953 devid = get_devid(info);
3954 if (devid >= 0) {
3955 iommu = amd_iommu_rlookup_table[devid];
3956 if (iommu)
3957 return iommu->ir_domain;
3958 }
Joerg Roedel5527de72012-06-26 11:17:32 +02003959
Jiang Liu7c71d302015-04-13 14:11:33 +08003960 return NULL;
Joerg Roedel5527de72012-06-26 11:17:32 +02003961}
3962
Jiang Liu7c71d302015-04-13 14:11:33 +08003963static struct irq_domain *get_irq_domain(struct irq_alloc_info *info)
Joerg Roedel0b4d48c2012-06-26 14:54:17 +02003964{
Jiang Liu7c71d302015-04-13 14:11:33 +08003965 struct amd_iommu *iommu;
3966 int devid;
Joerg Roedel0b4d48c2012-06-26 14:54:17 +02003967
Jiang Liu7c71d302015-04-13 14:11:33 +08003968 if (!info)
3969 return NULL;
Joerg Roedel0b4d48c2012-06-26 14:54:17 +02003970
Jiang Liu7c71d302015-04-13 14:11:33 +08003971 switch (info->type) {
3972 case X86_IRQ_ALLOC_TYPE_MSI:
3973 case X86_IRQ_ALLOC_TYPE_MSIX:
3974 devid = get_device_id(&info->msi_dev->dev);
Wan Zongshun7aba6cb2016-04-01 09:06:02 -04003975 if (IS_ERR_VALUE(devid))
3976 return NULL;
3977
Dan Carpenter1fb260b2016-01-07 12:36:06 +03003978 iommu = amd_iommu_rlookup_table[devid];
3979 if (iommu)
3980 return iommu->msi_domain;
Jiang Liu7c71d302015-04-13 14:11:33 +08003981 break;
3982 default:
3983 break;
3984 }
Joerg Roedel0b4d48c2012-06-26 14:54:17 +02003985
Jiang Liu7c71d302015-04-13 14:11:33 +08003986 return NULL;
Joerg Roedeld9761952012-06-26 16:00:08 +02003987}
3988
Joerg Roedel6b474b82012-06-26 16:46:04 +02003989struct irq_remap_ops amd_iommu_irq_ops = {
Joerg Roedel6b474b82012-06-26 16:46:04 +02003990 .prepare = amd_iommu_prepare,
3991 .enable = amd_iommu_enable,
3992 .disable = amd_iommu_disable,
3993 .reenable = amd_iommu_reenable,
3994 .enable_faulting = amd_iommu_enable_faulting,
Jiang Liu7c71d302015-04-13 14:11:33 +08003995 .get_ir_irq_domain = get_ir_irq_domain,
3996 .get_irq_domain = get_irq_domain,
Joerg Roedel6b474b82012-06-26 16:46:04 +02003997};
Jiang Liu7c71d302015-04-13 14:11:33 +08003998
3999static void irq_remapping_prepare_irte(struct amd_ir_data *data,
4000 struct irq_cfg *irq_cfg,
4001 struct irq_alloc_info *info,
4002 int devid, int index, int sub_handle)
4003{
4004 struct irq_2_irte *irte_info = &data->irq_2_irte;
4005 struct msi_msg *msg = &data->msi_entry;
4006 union irte *irte = &data->irte_entry;
4007 struct IO_APIC_route_entry *entry;
4008
Jiang Liu7c71d302015-04-13 14:11:33 +08004009 data->irq_2_irte.devid = devid;
4010 data->irq_2_irte.index = index + sub_handle;
4011
4012 /* Setup IRTE for IOMMU */
4013 irte->val = 0;
4014 irte->fields.vector = irq_cfg->vector;
4015 irte->fields.int_type = apic->irq_delivery_mode;
4016 irte->fields.destination = irq_cfg->dest_apicid;
4017 irte->fields.dm = apic->irq_dest_mode;
4018 irte->fields.valid = 1;
4019
4020 switch (info->type) {
4021 case X86_IRQ_ALLOC_TYPE_IOAPIC:
4022 /* Setup IOAPIC entry */
4023 entry = info->ioapic_entry;
4024 info->ioapic_entry = NULL;
4025 memset(entry, 0, sizeof(*entry));
4026 entry->vector = index;
4027 entry->mask = 0;
4028 entry->trigger = info->ioapic_trigger;
4029 entry->polarity = info->ioapic_polarity;
4030 /* Mask level triggered irqs. */
4031 if (info->ioapic_trigger)
4032 entry->mask = 1;
4033 break;
4034
4035 case X86_IRQ_ALLOC_TYPE_HPET:
4036 case X86_IRQ_ALLOC_TYPE_MSI:
4037 case X86_IRQ_ALLOC_TYPE_MSIX:
4038 msg->address_hi = MSI_ADDR_BASE_HI;
4039 msg->address_lo = MSI_ADDR_BASE_LO;
4040 msg->data = irte_info->index;
4041 break;
4042
4043 default:
4044 BUG_ON(1);
4045 break;
4046 }
4047}
4048
4049static int irq_remapping_alloc(struct irq_domain *domain, unsigned int virq,
4050 unsigned int nr_irqs, void *arg)
4051{
4052 struct irq_alloc_info *info = arg;
4053 struct irq_data *irq_data;
4054 struct amd_ir_data *data;
4055 struct irq_cfg *cfg;
4056 int i, ret, devid;
4057 int index = -1;
4058
4059 if (!info)
4060 return -EINVAL;
4061 if (nr_irqs > 1 && info->type != X86_IRQ_ALLOC_TYPE_MSI &&
4062 info->type != X86_IRQ_ALLOC_TYPE_MSIX)
4063 return -EINVAL;
4064
4065 /*
4066 * With IRQ remapping enabled, don't need contiguous CPU vectors
4067 * to support multiple MSI interrupts.
4068 */
4069 if (info->type == X86_IRQ_ALLOC_TYPE_MSI)
4070 info->flags &= ~X86_IRQ_ALLOC_CONTIGUOUS_VECTORS;
4071
4072 devid = get_devid(info);
4073 if (devid < 0)
4074 return -EINVAL;
4075
4076 ret = irq_domain_alloc_irqs_parent(domain, virq, nr_irqs, arg);
4077 if (ret < 0)
4078 return ret;
4079
Jiang Liu7c71d302015-04-13 14:11:33 +08004080 if (info->type == X86_IRQ_ALLOC_TYPE_IOAPIC) {
4081 if (get_irq_table(devid, true))
4082 index = info->ioapic_pin;
4083 else
4084 ret = -ENOMEM;
4085 } else {
Jiang Liu3c3d4f92015-04-13 14:11:38 +08004086 index = alloc_irq_index(devid, nr_irqs);
Jiang Liu7c71d302015-04-13 14:11:33 +08004087 }
4088 if (index < 0) {
4089 pr_warn("Failed to allocate IRTE\n");
Jiang Liu7c71d302015-04-13 14:11:33 +08004090 goto out_free_parent;
4091 }
4092
4093 for (i = 0; i < nr_irqs; i++) {
4094 irq_data = irq_domain_get_irq_data(domain, virq + i);
4095 cfg = irqd_cfg(irq_data);
4096 if (!irq_data || !cfg) {
4097 ret = -EINVAL;
4098 goto out_free_data;
4099 }
4100
Joerg Roedela130e692015-08-13 11:07:25 +02004101 ret = -ENOMEM;
4102 data = kzalloc(sizeof(*data), GFP_KERNEL);
4103 if (!data)
4104 goto out_free_data;
4105
Jiang Liu7c71d302015-04-13 14:11:33 +08004106 irq_data->hwirq = (devid << 16) + i;
4107 irq_data->chip_data = data;
4108 irq_data->chip = &amd_ir_chip;
4109 irq_remapping_prepare_irte(data, cfg, info, devid, index, i);
4110 irq_set_status_flags(virq + i, IRQ_MOVE_PCNTXT);
4111 }
Joerg Roedela130e692015-08-13 11:07:25 +02004112
Jiang Liu7c71d302015-04-13 14:11:33 +08004113 return 0;
4114
4115out_free_data:
4116 for (i--; i >= 0; i--) {
4117 irq_data = irq_domain_get_irq_data(domain, virq + i);
4118 if (irq_data)
4119 kfree(irq_data->chip_data);
4120 }
4121 for (i = 0; i < nr_irqs; i++)
4122 free_irte(devid, index + i);
4123out_free_parent:
4124 irq_domain_free_irqs_common(domain, virq, nr_irqs);
4125 return ret;
4126}
4127
4128static void irq_remapping_free(struct irq_domain *domain, unsigned int virq,
4129 unsigned int nr_irqs)
4130{
4131 struct irq_2_irte *irte_info;
4132 struct irq_data *irq_data;
4133 struct amd_ir_data *data;
4134 int i;
4135
4136 for (i = 0; i < nr_irqs; i++) {
4137 irq_data = irq_domain_get_irq_data(domain, virq + i);
4138 if (irq_data && irq_data->chip_data) {
4139 data = irq_data->chip_data;
4140 irte_info = &data->irq_2_irte;
4141 free_irte(irte_info->devid, irte_info->index);
4142 kfree(data);
4143 }
4144 }
4145 irq_domain_free_irqs_common(domain, virq, nr_irqs);
4146}
4147
4148static void irq_remapping_activate(struct irq_domain *domain,
4149 struct irq_data *irq_data)
4150{
4151 struct amd_ir_data *data = irq_data->chip_data;
4152 struct irq_2_irte *irte_info = &data->irq_2_irte;
4153
4154 modify_irte(irte_info->devid, irte_info->index, data->irte_entry);
4155}
4156
4157static void irq_remapping_deactivate(struct irq_domain *domain,
4158 struct irq_data *irq_data)
4159{
4160 struct amd_ir_data *data = irq_data->chip_data;
4161 struct irq_2_irte *irte_info = &data->irq_2_irte;
4162 union irte entry;
4163
4164 entry.val = 0;
4165 modify_irte(irte_info->devid, irte_info->index, data->irte_entry);
4166}
4167
4168static struct irq_domain_ops amd_ir_domain_ops = {
4169 .alloc = irq_remapping_alloc,
4170 .free = irq_remapping_free,
4171 .activate = irq_remapping_activate,
4172 .deactivate = irq_remapping_deactivate,
4173};
4174
4175static int amd_ir_set_affinity(struct irq_data *data,
4176 const struct cpumask *mask, bool force)
4177{
4178 struct amd_ir_data *ir_data = data->chip_data;
4179 struct irq_2_irte *irte_info = &ir_data->irq_2_irte;
4180 struct irq_cfg *cfg = irqd_cfg(data);
4181 struct irq_data *parent = data->parent_data;
4182 int ret;
4183
4184 ret = parent->chip->irq_set_affinity(parent, mask, force);
4185 if (ret < 0 || ret == IRQ_SET_MASK_OK_DONE)
4186 return ret;
4187
4188 /*
4189 * Atomically updates the IRTE with the new destination, vector
4190 * and flushes the interrupt entry cache.
4191 */
4192 ir_data->irte_entry.fields.vector = cfg->vector;
4193 ir_data->irte_entry.fields.destination = cfg->dest_apicid;
4194 modify_irte(irte_info->devid, irte_info->index, ir_data->irte_entry);
4195
4196 /*
4197 * After this point, all the interrupts will start arriving
4198 * at the new destination. So, time to cleanup the previous
4199 * vector allocation.
4200 */
Jiang Liuc6c20022015-04-14 10:30:02 +08004201 send_cleanup_vector(cfg);
Jiang Liu7c71d302015-04-13 14:11:33 +08004202
4203 return IRQ_SET_MASK_OK_DONE;
4204}
4205
4206static void ir_compose_msi_msg(struct irq_data *irq_data, struct msi_msg *msg)
4207{
4208 struct amd_ir_data *ir_data = irq_data->chip_data;
4209
4210 *msg = ir_data->msi_entry;
4211}
4212
4213static struct irq_chip amd_ir_chip = {
4214 .irq_ack = ir_ack_apic_edge,
4215 .irq_set_affinity = amd_ir_set_affinity,
4216 .irq_compose_msi_msg = ir_compose_msi_msg,
4217};
4218
4219int amd_iommu_create_irq_domain(struct amd_iommu *iommu)
4220{
4221 iommu->ir_domain = irq_domain_add_tree(NULL, &amd_ir_domain_ops, iommu);
4222 if (!iommu->ir_domain)
4223 return -ENOMEM;
4224
4225 iommu->ir_domain->parent = arch_get_ir_parent_domain();
4226 iommu->msi_domain = arch_create_msi_irq_domain(iommu->ir_domain);
4227
4228 return 0;
4229}
Joerg Roedel2b324502012-06-21 16:29:10 +02004230#endif