]> git.proxmox.com Git - mirror_ubuntu-zesty-kernel.git/blame - drivers/iommu/iommu.c
WIP: remoteproc: HACK to get it working on DB410c
[mirror_ubuntu-zesty-kernel.git] / drivers / iommu / iommu.c
CommitLineData
fc2100eb
JR
1/*
2 * Copyright (C) 2007-2008 Advanced Micro Devices, Inc.
63ce3ae8 3 * Author: Joerg Roedel <jroedel@suse.de>
fc2100eb
JR
4 *
5 * This program is free software; you can redistribute it and/or modify it
6 * under the terms of the GNU General Public License version 2 as published
7 * by the Free Software Foundation.
8 *
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
13 *
14 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, write to the Free Software
16 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
17 */
18
92e7066f 19#define pr_fmt(fmt) "iommu: " fmt
7d3002cc 20
905d66c1 21#include <linux/device.h>
40998188 22#include <linux/kernel.h>
fc2100eb
JR
23#include <linux/bug.h>
24#include <linux/types.h>
60db4027
AM
25#include <linux/module.h>
26#include <linux/slab.h>
fc2100eb
JR
27#include <linux/errno.h>
28#include <linux/iommu.h>
d72e31c9
AW
29#include <linux/idr.h>
30#include <linux/notifier.h>
31#include <linux/err.h>
104a1c13 32#include <linux/pci.h>
f096c061 33#include <linux/bitops.h>
7f6db171 34#include <trace/events/iommu.h>
d72e31c9
AW
35
36static struct kset *iommu_group_kset;
37static struct ida iommu_group_ida;
38static struct mutex iommu_group_mutex;
39
b22f6434
TR
40struct iommu_callback_data {
41 const struct iommu_ops *ops;
42};
43
d72e31c9
AW
44struct iommu_group {
45 struct kobject kobj;
46 struct kobject *devices_kobj;
47 struct list_head devices;
48 struct mutex mutex;
49 struct blocking_notifier_head notifier;
50 void *iommu_data;
51 void (*iommu_data_release)(void *iommu_data);
52 char *name;
53 int id;
53723dc5 54 struct iommu_domain *default_domain;
e39cb8a3 55 struct iommu_domain *domain;
d72e31c9
AW
56};
57
58struct iommu_device {
59 struct list_head list;
60 struct device *dev;
61 char *name;
62};
63
64struct iommu_group_attribute {
65 struct attribute attr;
66 ssize_t (*show)(struct iommu_group *group, char *buf);
67 ssize_t (*store)(struct iommu_group *group,
68 const char *buf, size_t count);
69};
70
71#define IOMMU_GROUP_ATTR(_name, _mode, _show, _store) \
72struct iommu_group_attribute iommu_group_attr_##_name = \
73 __ATTR(_name, _mode, _show, _store)
fc2100eb 74
d72e31c9
AW
75#define to_iommu_group_attr(_attr) \
76 container_of(_attr, struct iommu_group_attribute, attr)
77#define to_iommu_group(_kobj) \
78 container_of(_kobj, struct iommu_group, kobj)
fc2100eb 79
53723dc5
JR
80static struct iommu_domain *__iommu_domain_alloc(struct bus_type *bus,
81 unsigned type);
e39cb8a3
JR
82static int __iommu_attach_device(struct iommu_domain *domain,
83 struct device *dev);
84static int __iommu_attach_group(struct iommu_domain *domain,
85 struct iommu_group *group);
86static void __iommu_detach_group(struct iommu_domain *domain,
87 struct iommu_group *group);
53723dc5 88
d72e31c9
AW
89static ssize_t iommu_group_attr_show(struct kobject *kobj,
90 struct attribute *__attr, char *buf)
1460432c 91{
d72e31c9
AW
92 struct iommu_group_attribute *attr = to_iommu_group_attr(__attr);
93 struct iommu_group *group = to_iommu_group(kobj);
94 ssize_t ret = -EIO;
1460432c 95
d72e31c9
AW
96 if (attr->show)
97 ret = attr->show(group, buf);
98 return ret;
99}
100
101static ssize_t iommu_group_attr_store(struct kobject *kobj,
102 struct attribute *__attr,
103 const char *buf, size_t count)
104{
105 struct iommu_group_attribute *attr = to_iommu_group_attr(__attr);
106 struct iommu_group *group = to_iommu_group(kobj);
107 ssize_t ret = -EIO;
1460432c 108
d72e31c9
AW
109 if (attr->store)
110 ret = attr->store(group, buf, count);
111 return ret;
1460432c 112}
1460432c 113
d72e31c9
AW
114static const struct sysfs_ops iommu_group_sysfs_ops = {
115 .show = iommu_group_attr_show,
116 .store = iommu_group_attr_store,
117};
1460432c 118
d72e31c9
AW
119static int iommu_group_create_file(struct iommu_group *group,
120 struct iommu_group_attribute *attr)
121{
122 return sysfs_create_file(&group->kobj, &attr->attr);
1460432c 123}
1460432c 124
d72e31c9
AW
125static void iommu_group_remove_file(struct iommu_group *group,
126 struct iommu_group_attribute *attr)
127{
128 sysfs_remove_file(&group->kobj, &attr->attr);
129}
130
131static ssize_t iommu_group_show_name(struct iommu_group *group, char *buf)
132{
133 return sprintf(buf, "%s\n", group->name);
134}
135
136static IOMMU_GROUP_ATTR(name, S_IRUGO, iommu_group_show_name, NULL);
137
138static void iommu_group_release(struct kobject *kobj)
139{
140 struct iommu_group *group = to_iommu_group(kobj);
141
269aa808
JR
142 pr_debug("Releasing group %d\n", group->id);
143
d72e31c9
AW
144 if (group->iommu_data_release)
145 group->iommu_data_release(group->iommu_data);
146
147 mutex_lock(&iommu_group_mutex);
148 ida_remove(&iommu_group_ida, group->id);
149 mutex_unlock(&iommu_group_mutex);
150
53723dc5
JR
151 if (group->default_domain)
152 iommu_domain_free(group->default_domain);
153
d72e31c9
AW
154 kfree(group->name);
155 kfree(group);
156}
157
158static struct kobj_type iommu_group_ktype = {
159 .sysfs_ops = &iommu_group_sysfs_ops,
160 .release = iommu_group_release,
161};
162
163/**
164 * iommu_group_alloc - Allocate a new group
165 * @name: Optional name to associate with group, visible in sysfs
166 *
167 * This function is called by an iommu driver to allocate a new iommu
168 * group. The iommu group represents the minimum granularity of the iommu.
169 * Upon successful return, the caller holds a reference to the supplied
170 * group in order to hold the group until devices are added. Use
171 * iommu_group_put() to release this extra reference count, allowing the
172 * group to be automatically reclaimed once it has no devices or external
173 * references.
174 */
175struct iommu_group *iommu_group_alloc(void)
1460432c 176{
d72e31c9
AW
177 struct iommu_group *group;
178 int ret;
179
180 group = kzalloc(sizeof(*group), GFP_KERNEL);
181 if (!group)
182 return ERR_PTR(-ENOMEM);
183
184 group->kobj.kset = iommu_group_kset;
185 mutex_init(&group->mutex);
186 INIT_LIST_HEAD(&group->devices);
187 BLOCKING_INIT_NOTIFIER_HEAD(&group->notifier);
188
189 mutex_lock(&iommu_group_mutex);
190
191again:
192 if (unlikely(0 == ida_pre_get(&iommu_group_ida, GFP_KERNEL))) {
193 kfree(group);
194 mutex_unlock(&iommu_group_mutex);
195 return ERR_PTR(-ENOMEM);
196 }
197
198 if (-EAGAIN == ida_get_new(&iommu_group_ida, &group->id))
199 goto again;
200
201 mutex_unlock(&iommu_group_mutex);
1460432c 202
d72e31c9
AW
203 ret = kobject_init_and_add(&group->kobj, &iommu_group_ktype,
204 NULL, "%d", group->id);
205 if (ret) {
206 mutex_lock(&iommu_group_mutex);
207 ida_remove(&iommu_group_ida, group->id);
208 mutex_unlock(&iommu_group_mutex);
209 kfree(group);
210 return ERR_PTR(ret);
211 }
212
213 group->devices_kobj = kobject_create_and_add("devices", &group->kobj);
214 if (!group->devices_kobj) {
215 kobject_put(&group->kobj); /* triggers .release & free */
216 return ERR_PTR(-ENOMEM);
217 }
218
219 /*
220 * The devices_kobj holds a reference on the group kobject, so
221 * as long as that exists so will the group. We can therefore
222 * use the devices_kobj for reference counting.
223 */
224 kobject_put(&group->kobj);
225
269aa808
JR
226 pr_debug("Allocated group %d\n", group->id);
227
d72e31c9
AW
228 return group;
229}
230EXPORT_SYMBOL_GPL(iommu_group_alloc);
231
aa16bea9
AK
232struct iommu_group *iommu_group_get_by_id(int id)
233{
234 struct kobject *group_kobj;
235 struct iommu_group *group;
236 const char *name;
237
238 if (!iommu_group_kset)
239 return NULL;
240
241 name = kasprintf(GFP_KERNEL, "%d", id);
242 if (!name)
243 return NULL;
244
245 group_kobj = kset_find_obj(iommu_group_kset, name);
246 kfree(name);
247
248 if (!group_kobj)
249 return NULL;
250
251 group = container_of(group_kobj, struct iommu_group, kobj);
252 BUG_ON(group->id != id);
253
254 kobject_get(group->devices_kobj);
255 kobject_put(&group->kobj);
256
257 return group;
258}
259EXPORT_SYMBOL_GPL(iommu_group_get_by_id);
260
d72e31c9
AW
261/**
262 * iommu_group_get_iommudata - retrieve iommu_data registered for a group
263 * @group: the group
264 *
265 * iommu drivers can store data in the group for use when doing iommu
266 * operations. This function provides a way to retrieve it. Caller
267 * should hold a group reference.
268 */
269void *iommu_group_get_iommudata(struct iommu_group *group)
270{
271 return group->iommu_data;
272}
273EXPORT_SYMBOL_GPL(iommu_group_get_iommudata);
274
275/**
276 * iommu_group_set_iommudata - set iommu_data for a group
277 * @group: the group
278 * @iommu_data: new data
279 * @release: release function for iommu_data
280 *
281 * iommu drivers can store data in the group for use when doing iommu
282 * operations. This function provides a way to set the data after
283 * the group has been allocated. Caller should hold a group reference.
284 */
285void iommu_group_set_iommudata(struct iommu_group *group, void *iommu_data,
286 void (*release)(void *iommu_data))
1460432c 287{
d72e31c9
AW
288 group->iommu_data = iommu_data;
289 group->iommu_data_release = release;
290}
291EXPORT_SYMBOL_GPL(iommu_group_set_iommudata);
1460432c 292
d72e31c9
AW
293/**
294 * iommu_group_set_name - set name for a group
295 * @group: the group
296 * @name: name
297 *
298 * Allow iommu driver to set a name for a group. When set it will
299 * appear in a name attribute file under the group in sysfs.
300 */
301int iommu_group_set_name(struct iommu_group *group, const char *name)
302{
303 int ret;
304
305 if (group->name) {
306 iommu_group_remove_file(group, &iommu_group_attr_name);
307 kfree(group->name);
308 group->name = NULL;
309 if (!name)
310 return 0;
311 }
312
313 group->name = kstrdup(name, GFP_KERNEL);
314 if (!group->name)
315 return -ENOMEM;
316
317 ret = iommu_group_create_file(group, &iommu_group_attr_name);
318 if (ret) {
319 kfree(group->name);
320 group->name = NULL;
321 return ret;
322 }
1460432c
AW
323
324 return 0;
325}
d72e31c9 326EXPORT_SYMBOL_GPL(iommu_group_set_name);
1460432c 327
beed2821
JR
328static int iommu_group_create_direct_mappings(struct iommu_group *group,
329 struct device *dev)
330{
331 struct iommu_domain *domain = group->default_domain;
332 struct iommu_dm_region *entry;
333 struct list_head mappings;
334 unsigned long pg_size;
335 int ret = 0;
336
337 if (!domain || domain->type != IOMMU_DOMAIN_DMA)
338 return 0;
339
340 BUG_ON(!domain->ops->pgsize_bitmap);
341
342 pg_size = 1UL << __ffs(domain->ops->pgsize_bitmap);
343 INIT_LIST_HEAD(&mappings);
344
345 iommu_get_dm_regions(dev, &mappings);
346
347 /* We need to consider overlapping regions for different devices */
348 list_for_each_entry(entry, &mappings, list) {
349 dma_addr_t start, end, addr;
350
351 start = ALIGN(entry->start, pg_size);
352 end = ALIGN(entry->start + entry->length, pg_size);
353
354 for (addr = start; addr < end; addr += pg_size) {
355 phys_addr_t phys_addr;
356
357 phys_addr = iommu_iova_to_phys(domain, addr);
358 if (phys_addr)
359 continue;
360
361 ret = iommu_map(domain, addr, addr, pg_size, entry->prot);
362 if (ret)
363 goto out;
364 }
365
366 }
367
368out:
369 iommu_put_dm_regions(dev, &mappings);
370
371 return ret;
372}
373
d72e31c9
AW
374/**
375 * iommu_group_add_device - add a device to an iommu group
376 * @group: the group into which to add the device (reference should be held)
377 * @dev: the device
378 *
379 * This function is called by an iommu driver to add a device into a
380 * group. Adding a device increments the group reference count.
381 */
382int iommu_group_add_device(struct iommu_group *group, struct device *dev)
1460432c 383{
d72e31c9
AW
384 int ret, i = 0;
385 struct iommu_device *device;
386
387 device = kzalloc(sizeof(*device), GFP_KERNEL);
388 if (!device)
389 return -ENOMEM;
390
391 device->dev = dev;
1460432c 392
d72e31c9 393 ret = sysfs_create_link(&dev->kobj, &group->kobj, "iommu_group");
0179f65f
RM
394 if (ret)
395 goto err_free_device;
d72e31c9
AW
396
397 device->name = kasprintf(GFP_KERNEL, "%s", kobject_name(&dev->kobj));
398rename:
399 if (!device->name) {
0179f65f
RM
400 ret = -ENOMEM;
401 goto err_remove_link;
d72e31c9 402 }
1460432c 403
d72e31c9
AW
404 ret = sysfs_create_link_nowarn(group->devices_kobj,
405 &dev->kobj, device->name);
406 if (ret) {
d72e31c9
AW
407 if (ret == -EEXIST && i >= 0) {
408 /*
409 * Account for the slim chance of collision
410 * and append an instance to the name.
411 */
0179f65f 412 kfree(device->name);
d72e31c9
AW
413 device->name = kasprintf(GFP_KERNEL, "%s.%d",
414 kobject_name(&dev->kobj), i++);
415 goto rename;
416 }
0179f65f 417 goto err_free_name;
d72e31c9
AW
418 }
419
420 kobject_get(group->devices_kobj);
421
422 dev->iommu_group = group;
423
beed2821
JR
424 iommu_group_create_direct_mappings(group, dev);
425
d72e31c9
AW
426 mutex_lock(&group->mutex);
427 list_add_tail(&device->list, &group->devices);
e39cb8a3 428 if (group->domain)
0179f65f 429 ret = __iommu_attach_device(group->domain, dev);
d72e31c9 430 mutex_unlock(&group->mutex);
0179f65f
RM
431 if (ret)
432 goto err_put_group;
d72e31c9
AW
433
434 /* Notify any listeners about change to group. */
435 blocking_notifier_call_chain(&group->notifier,
436 IOMMU_GROUP_NOTIFY_ADD_DEVICE, dev);
d1cf7e82
SK
437
438 trace_add_device_to_group(group->id, dev);
269aa808
JR
439
440 pr_info("Adding device %s to group %d\n", dev_name(dev), group->id);
441
1460432c 442 return 0;
0179f65f
RM
443
444err_put_group:
445 mutex_lock(&group->mutex);
446 list_del(&device->list);
447 mutex_unlock(&group->mutex);
448 dev->iommu_group = NULL;
449 kobject_put(group->devices_kobj);
450err_free_name:
451 kfree(device->name);
452err_remove_link:
453 sysfs_remove_link(&dev->kobj, "iommu_group");
454err_free_device:
455 kfree(device);
456 pr_err("Failed to add device %s to group %d: %d\n", dev_name(dev), group->id, ret);
457 return ret;
1460432c 458}
d72e31c9 459EXPORT_SYMBOL_GPL(iommu_group_add_device);
1460432c 460
d72e31c9
AW
461/**
462 * iommu_group_remove_device - remove a device from it's current group
463 * @dev: device to be removed
464 *
465 * This function is called by an iommu driver to remove the device from
466 * it's current group. This decrements the iommu group reference count.
467 */
468void iommu_group_remove_device(struct device *dev)
469{
470 struct iommu_group *group = dev->iommu_group;
471 struct iommu_device *tmp_device, *device = NULL;
472
269aa808
JR
473 pr_info("Removing device %s from group %d\n", dev_name(dev), group->id);
474
d72e31c9
AW
475 /* Pre-notify listeners that a device is being removed. */
476 blocking_notifier_call_chain(&group->notifier,
477 IOMMU_GROUP_NOTIFY_DEL_DEVICE, dev);
478
479 mutex_lock(&group->mutex);
480 list_for_each_entry(tmp_device, &group->devices, list) {
481 if (tmp_device->dev == dev) {
482 device = tmp_device;
483 list_del(&device->list);
484 break;
485 }
486 }
487 mutex_unlock(&group->mutex);
488
489 if (!device)
490 return;
491
492 sysfs_remove_link(group->devices_kobj, device->name);
493 sysfs_remove_link(&dev->kobj, "iommu_group");
494
2e757086
SK
495 trace_remove_device_from_group(group->id, dev);
496
d72e31c9
AW
497 kfree(device->name);
498 kfree(device);
499 dev->iommu_group = NULL;
500 kobject_put(group->devices_kobj);
501}
502EXPORT_SYMBOL_GPL(iommu_group_remove_device);
503
426a2738
JR
504static int iommu_group_device_count(struct iommu_group *group)
505{
506 struct iommu_device *entry;
507 int ret = 0;
508
509 list_for_each_entry(entry, &group->devices, list)
510 ret++;
511
512 return ret;
513}
514
d72e31c9
AW
515/**
516 * iommu_group_for_each_dev - iterate over each device in the group
517 * @group: the group
518 * @data: caller opaque data to be passed to callback function
519 * @fn: caller supplied callback function
520 *
521 * This function is called by group users to iterate over group devices.
522 * Callers should hold a reference count to the group during callback.
523 * The group->mutex is held across callbacks, which will block calls to
524 * iommu_group_add/remove_device.
525 */
e39cb8a3
JR
526static int __iommu_group_for_each_dev(struct iommu_group *group, void *data,
527 int (*fn)(struct device *, void *))
d72e31c9
AW
528{
529 struct iommu_device *device;
530 int ret = 0;
531
d72e31c9
AW
532 list_for_each_entry(device, &group->devices, list) {
533 ret = fn(device->dev, data);
534 if (ret)
535 break;
536 }
e39cb8a3
JR
537 return ret;
538}
539
540
541int iommu_group_for_each_dev(struct iommu_group *group, void *data,
542 int (*fn)(struct device *, void *))
543{
544 int ret;
545
546 mutex_lock(&group->mutex);
547 ret = __iommu_group_for_each_dev(group, data, fn);
d72e31c9 548 mutex_unlock(&group->mutex);
e39cb8a3 549
d72e31c9
AW
550 return ret;
551}
552EXPORT_SYMBOL_GPL(iommu_group_for_each_dev);
553
554/**
555 * iommu_group_get - Return the group for a device and increment reference
556 * @dev: get the group that this device belongs to
557 *
558 * This function is called by iommu drivers and users to get the group
559 * for the specified device. If found, the group is returned and the group
560 * reference in incremented, else NULL.
561 */
562struct iommu_group *iommu_group_get(struct device *dev)
563{
564 struct iommu_group *group = dev->iommu_group;
565
566 if (group)
567 kobject_get(group->devices_kobj);
568
569 return group;
570}
571EXPORT_SYMBOL_GPL(iommu_group_get);
572
573/**
574 * iommu_group_put - Decrement group reference
575 * @group: the group to use
576 *
577 * This function is called by iommu drivers and users to release the
578 * iommu group. Once the reference count is zero, the group is released.
579 */
580void iommu_group_put(struct iommu_group *group)
581{
582 if (group)
583 kobject_put(group->devices_kobj);
584}
585EXPORT_SYMBOL_GPL(iommu_group_put);
586
587/**
588 * iommu_group_register_notifier - Register a notifier for group changes
589 * @group: the group to watch
590 * @nb: notifier block to signal
591 *
592 * This function allows iommu group users to track changes in a group.
593 * See include/linux/iommu.h for actions sent via this notifier. Caller
594 * should hold a reference to the group throughout notifier registration.
595 */
596int iommu_group_register_notifier(struct iommu_group *group,
597 struct notifier_block *nb)
598{
599 return blocking_notifier_chain_register(&group->notifier, nb);
600}
601EXPORT_SYMBOL_GPL(iommu_group_register_notifier);
602
603/**
604 * iommu_group_unregister_notifier - Unregister a notifier
605 * @group: the group to watch
606 * @nb: notifier block to signal
607 *
608 * Unregister a previously registered group notifier block.
609 */
610int iommu_group_unregister_notifier(struct iommu_group *group,
611 struct notifier_block *nb)
612{
613 return blocking_notifier_chain_unregister(&group->notifier, nb);
614}
615EXPORT_SYMBOL_GPL(iommu_group_unregister_notifier);
616
617/**
618 * iommu_group_id - Return ID for a group
619 * @group: the group to ID
620 *
621 * Return the unique ID for the group matching the sysfs group number.
622 */
623int iommu_group_id(struct iommu_group *group)
624{
625 return group->id;
626}
627EXPORT_SYMBOL_GPL(iommu_group_id);
1460432c 628
f096c061
AW
629static struct iommu_group *get_pci_alias_group(struct pci_dev *pdev,
630 unsigned long *devfns);
631
104a1c13
AW
632/*
633 * To consider a PCI device isolated, we require ACS to support Source
634 * Validation, Request Redirection, Completer Redirection, and Upstream
635 * Forwarding. This effectively means that devices cannot spoof their
636 * requester ID, requests and completions cannot be redirected, and all
637 * transactions are forwarded upstream, even as it passes through a
638 * bridge where the target device is downstream.
639 */
640#define REQ_ACS_FLAGS (PCI_ACS_SV | PCI_ACS_RR | PCI_ACS_CR | PCI_ACS_UF)
641
f096c061
AW
642/*
643 * For multifunction devices which are not isolated from each other, find
644 * all the other non-isolated functions and look for existing groups. For
645 * each function, we also need to look for aliases to or from other devices
646 * that may already have a group.
647 */
648static struct iommu_group *get_pci_function_alias_group(struct pci_dev *pdev,
649 unsigned long *devfns)
650{
651 struct pci_dev *tmp = NULL;
652 struct iommu_group *group;
653
654 if (!pdev->multifunction || pci_acs_enabled(pdev, REQ_ACS_FLAGS))
655 return NULL;
656
657 for_each_pci_dev(tmp) {
658 if (tmp == pdev || tmp->bus != pdev->bus ||
659 PCI_SLOT(tmp->devfn) != PCI_SLOT(pdev->devfn) ||
660 pci_acs_enabled(tmp, REQ_ACS_FLAGS))
661 continue;
662
663 group = get_pci_alias_group(tmp, devfns);
664 if (group) {
665 pci_dev_put(tmp);
666 return group;
667 }
668 }
669
670 return NULL;
671}
672
673/*
674 * Look for aliases to or from the given device for exisiting groups. The
675 * dma_alias_devfn only supports aliases on the same bus, therefore the search
676 * space is quite small (especially since we're really only looking at pcie
677 * device, and therefore only expect multiple slots on the root complex or
678 * downstream switch ports). It's conceivable though that a pair of
679 * multifunction devices could have aliases between them that would cause a
680 * loop. To prevent this, we use a bitmap to track where we've been.
681 */
682static struct iommu_group *get_pci_alias_group(struct pci_dev *pdev,
683 unsigned long *devfns)
684{
685 struct pci_dev *tmp = NULL;
686 struct iommu_group *group;
687
688 if (test_and_set_bit(pdev->devfn & 0xff, devfns))
689 return NULL;
690
691 group = iommu_group_get(&pdev->dev);
692 if (group)
693 return group;
694
695 for_each_pci_dev(tmp) {
696 if (tmp == pdev || tmp->bus != pdev->bus)
697 continue;
698
699 /* We alias them or they alias us */
700 if (((pdev->dev_flags & PCI_DEV_FLAGS_DMA_ALIAS_DEVFN) &&
701 pdev->dma_alias_devfn == tmp->devfn) ||
702 ((tmp->dev_flags & PCI_DEV_FLAGS_DMA_ALIAS_DEVFN) &&
703 tmp->dma_alias_devfn == pdev->devfn)) {
704
705 group = get_pci_alias_group(tmp, devfns);
706 if (group) {
707 pci_dev_put(tmp);
708 return group;
709 }
710
711 group = get_pci_function_alias_group(tmp, devfns);
712 if (group) {
713 pci_dev_put(tmp);
714 return group;
715 }
716 }
717 }
718
719 return NULL;
720}
721
104a1c13
AW
722struct group_for_pci_data {
723 struct pci_dev *pdev;
724 struct iommu_group *group;
725};
726
727/*
728 * DMA alias iterator callback, return the last seen device. Stop and return
729 * the IOMMU group if we find one along the way.
730 */
731static int get_pci_alias_or_group(struct pci_dev *pdev, u16 alias, void *opaque)
732{
733 struct group_for_pci_data *data = opaque;
734
735 data->pdev = pdev;
736 data->group = iommu_group_get(&pdev->dev);
737
738 return data->group != NULL;
739}
740
6eab556a
JR
741/*
742 * Generic device_group call-back function. It just allocates one
743 * iommu-group per device.
744 */
745struct iommu_group *generic_device_group(struct device *dev)
746{
747 struct iommu_group *group;
748
749 group = iommu_group_alloc();
750 if (IS_ERR(group))
751 return NULL;
752
753 return group;
754}
755
104a1c13
AW
756/*
757 * Use standard PCI bus topology, isolation features, and DMA alias quirks
758 * to find or create an IOMMU group for a device.
759 */
5e62292b 760struct iommu_group *pci_device_group(struct device *dev)
104a1c13 761{
5e62292b 762 struct pci_dev *pdev = to_pci_dev(dev);
104a1c13
AW
763 struct group_for_pci_data data;
764 struct pci_bus *bus;
765 struct iommu_group *group = NULL;
f096c061 766 u64 devfns[4] = { 0 };
104a1c13 767
5e62292b
JR
768 if (WARN_ON(!dev_is_pci(dev)))
769 return ERR_PTR(-EINVAL);
770
104a1c13
AW
771 /*
772 * Find the upstream DMA alias for the device. A device must not
773 * be aliased due to topology in order to have its own IOMMU group.
774 * If we find an alias along the way that already belongs to a
775 * group, use it.
776 */
777 if (pci_for_each_dma_alias(pdev, get_pci_alias_or_group, &data))
778 return data.group;
779
780 pdev = data.pdev;
781
782 /*
783 * Continue upstream from the point of minimum IOMMU granularity
784 * due to aliases to the point where devices are protected from
785 * peer-to-peer DMA by PCI ACS. Again, if we find an existing
786 * group, use it.
787 */
788 for (bus = pdev->bus; !pci_is_root_bus(bus); bus = bus->parent) {
789 if (!bus->self)
790 continue;
791
792 if (pci_acs_path_enabled(bus->self, NULL, REQ_ACS_FLAGS))
793 break;
794
795 pdev = bus->self;
796
797 group = iommu_group_get(&pdev->dev);
798 if (group)
799 return group;
800 }
801
802 /*
f096c061
AW
803 * Look for existing groups on device aliases. If we alias another
804 * device or another device aliases us, use the same group.
104a1c13 805 */
f096c061
AW
806 group = get_pci_alias_group(pdev, (unsigned long *)devfns);
807 if (group)
808 return group;
104a1c13
AW
809
810 /*
f096c061
AW
811 * Look for existing groups on non-isolated functions on the same
812 * slot and aliases of those funcions, if any. No need to clear
813 * the search bitmap, the tested devfns are still valid.
104a1c13 814 */
f096c061
AW
815 group = get_pci_function_alias_group(pdev, (unsigned long *)devfns);
816 if (group)
817 return group;
104a1c13
AW
818
819 /* No shared group found, allocate new */
53723dc5 820 group = iommu_group_alloc();
409e553d
DC
821 if (IS_ERR(group))
822 return NULL;
823
53723dc5 824 return group;
104a1c13
AW
825}
826
827/**
828 * iommu_group_get_for_dev - Find or create the IOMMU group for a device
829 * @dev: target device
830 *
831 * This function is intended to be called by IOMMU drivers and extended to
832 * support common, bus-defined algorithms when determining or creating the
833 * IOMMU group for a device. On success, the caller will hold a reference
834 * to the returned IOMMU group, which will already include the provided
835 * device. The reference should be released with iommu_group_put().
836 */
837struct iommu_group *iommu_group_get_for_dev(struct device *dev)
838{
46c6b2bc 839 const struct iommu_ops *ops = dev->bus->iommu_ops;
c4a783b8 840 struct iommu_group *group;
104a1c13
AW
841 int ret;
842
843 group = iommu_group_get(dev);
844 if (group)
845 return group;
846
46c6b2bc 847 group = ERR_PTR(-EINVAL);
c4a783b8 848
46c6b2bc
JR
849 if (ops && ops->device_group)
850 group = ops->device_group(dev);
104a1c13
AW
851
852 if (IS_ERR(group))
853 return group;
854
1228236d
JR
855 /*
856 * Try to allocate a default domain - needs support from the
857 * IOMMU driver.
858 */
859 if (!group->default_domain) {
860 group->default_domain = __iommu_domain_alloc(dev->bus,
861 IOMMU_DOMAIN_DMA);
19805dc8
JR
862 if (!group->domain)
863 group->domain = group->default_domain;
1228236d
JR
864 }
865
104a1c13
AW
866 ret = iommu_group_add_device(group, dev);
867 if (ret) {
868 iommu_group_put(group);
869 return ERR_PTR(ret);
870 }
871
872 return group;
873}
874
6827ca83
JR
875struct iommu_domain *iommu_group_default_domain(struct iommu_group *group)
876{
877 return group->default_domain;
878}
879
d72e31c9 880static int add_iommu_group(struct device *dev, void *data)
1460432c 881{
b22f6434
TR
882 struct iommu_callback_data *cb = data;
883 const struct iommu_ops *ops = cb->ops;
38667f18 884 int ret;
d72e31c9
AW
885
886 if (!ops->add_device)
461bfb3f 887 return 0;
1460432c 888
d72e31c9
AW
889 WARN_ON(dev->iommu_group);
890
38667f18
JR
891 ret = ops->add_device(dev);
892
893 /*
894 * We ignore -ENODEV errors for now, as they just mean that the
895 * device is not translated by an IOMMU. We still care about
896 * other errors and fail to initialize when they happen.
897 */
898 if (ret == -ENODEV)
899 ret = 0;
900
901 return ret;
1460432c
AW
902}
903
8da30142
JR
904static int remove_iommu_group(struct device *dev, void *data)
905{
906 struct iommu_callback_data *cb = data;
907 const struct iommu_ops *ops = cb->ops;
908
909 if (ops->remove_device && dev->iommu_group)
910 ops->remove_device(dev);
1460432c
AW
911
912 return 0;
913}
914
d72e31c9
AW
915static int iommu_bus_notifier(struct notifier_block *nb,
916 unsigned long action, void *data)
1460432c
AW
917{
918 struct device *dev = data;
b22f6434 919 const struct iommu_ops *ops = dev->bus->iommu_ops;
d72e31c9
AW
920 struct iommu_group *group;
921 unsigned long group_action = 0;
922
923 /*
924 * ADD/DEL call into iommu driver ops if provided, which may
925 * result in ADD/DEL notifiers to group->notifier
926 */
927 if (action == BUS_NOTIFY_ADD_DEVICE) {
928 if (ops->add_device)
929 return ops->add_device(dev);
843cb6dc 930 } else if (action == BUS_NOTIFY_REMOVED_DEVICE) {
d72e31c9
AW
931 if (ops->remove_device && dev->iommu_group) {
932 ops->remove_device(dev);
933 return 0;
934 }
935 }
1460432c 936
d72e31c9
AW
937 /*
938 * Remaining BUS_NOTIFYs get filtered and republished to the
939 * group, if anyone is listening
940 */
941 group = iommu_group_get(dev);
942 if (!group)
943 return 0;
1460432c 944
d72e31c9
AW
945 switch (action) {
946 case BUS_NOTIFY_BIND_DRIVER:
947 group_action = IOMMU_GROUP_NOTIFY_BIND_DRIVER;
948 break;
949 case BUS_NOTIFY_BOUND_DRIVER:
950 group_action = IOMMU_GROUP_NOTIFY_BOUND_DRIVER;
951 break;
952 case BUS_NOTIFY_UNBIND_DRIVER:
953 group_action = IOMMU_GROUP_NOTIFY_UNBIND_DRIVER;
954 break;
955 case BUS_NOTIFY_UNBOUND_DRIVER:
956 group_action = IOMMU_GROUP_NOTIFY_UNBOUND_DRIVER;
957 break;
958 }
1460432c 959
d72e31c9
AW
960 if (group_action)
961 blocking_notifier_call_chain(&group->notifier,
962 group_action, dev);
1460432c 963
d72e31c9 964 iommu_group_put(group);
1460432c
AW
965 return 0;
966}
967
fb3e3065 968static int iommu_bus_init(struct bus_type *bus, const struct iommu_ops *ops)
ff21776d 969{
fb3e3065
MS
970 int err;
971 struct notifier_block *nb;
b22f6434
TR
972 struct iommu_callback_data cb = {
973 .ops = ops,
974 };
975
fb3e3065
MS
976 nb = kzalloc(sizeof(struct notifier_block), GFP_KERNEL);
977 if (!nb)
978 return -ENOMEM;
979
980 nb->notifier_call = iommu_bus_notifier;
981
982 err = bus_register_notifier(bus, nb);
8da30142
JR
983 if (err)
984 goto out_free;
d7da6bdc
HS
985
986 err = bus_for_each_dev(bus, NULL, &cb, add_iommu_group);
8da30142
JR
987 if (err)
988 goto out_err;
989
d7da6bdc
HS
990
991 return 0;
8da30142
JR
992
993out_err:
994 /* Clean up */
995 bus_for_each_dev(bus, NULL, &cb, remove_iommu_group);
996 bus_unregister_notifier(bus, nb);
997
998out_free:
999 kfree(nb);
1000
1001 return err;
ff21776d 1002}
fc2100eb 1003
ff21776d
JR
1004/**
1005 * bus_set_iommu - set iommu-callbacks for the bus
1006 * @bus: bus.
1007 * @ops: the callbacks provided by the iommu-driver
1008 *
1009 * This function is called by an iommu driver to set the iommu methods
1010 * used for a particular bus. Drivers for devices on that bus can use
1011 * the iommu-api after these ops are registered.
1012 * This special function is needed because IOMMUs are usually devices on
1013 * the bus itself, so the iommu drivers are not initialized when the bus
1014 * is set up. With this function the iommu-driver can set the iommu-ops
1015 * afterwards.
1016 */
b22f6434 1017int bus_set_iommu(struct bus_type *bus, const struct iommu_ops *ops)
fc2100eb 1018{
d7da6bdc
HS
1019 int err;
1020
ff21776d
JR
1021 if (bus->iommu_ops != NULL)
1022 return -EBUSY;
fc2100eb 1023
ff21776d
JR
1024 bus->iommu_ops = ops;
1025
1026 /* Do IOMMU specific setup for this bus-type */
d7da6bdc
HS
1027 err = iommu_bus_init(bus, ops);
1028 if (err)
1029 bus->iommu_ops = NULL;
1030
1031 return err;
fc2100eb 1032}
ff21776d 1033EXPORT_SYMBOL_GPL(bus_set_iommu);
fc2100eb 1034
a1b60c1c 1035bool iommu_present(struct bus_type *bus)
fc2100eb 1036{
94441c3b 1037 return bus->iommu_ops != NULL;
fc2100eb 1038}
a1b60c1c 1039EXPORT_SYMBOL_GPL(iommu_present);
fc2100eb 1040
3c0e0ca0
JR
1041bool iommu_capable(struct bus_type *bus, enum iommu_cap cap)
1042{
1043 if (!bus->iommu_ops || !bus->iommu_ops->capable)
1044 return false;
1045
1046 return bus->iommu_ops->capable(cap);
1047}
1048EXPORT_SYMBOL_GPL(iommu_capable);
1049
4f3f8d9d
OBC
1050/**
1051 * iommu_set_fault_handler() - set a fault handler for an iommu domain
1052 * @domain: iommu domain
1053 * @handler: fault handler
77ca2332 1054 * @token: user data, will be passed back to the fault handler
0ed6d2d2
OBC
1055 *
1056 * This function should be used by IOMMU users which want to be notified
1057 * whenever an IOMMU fault happens.
1058 *
1059 * The fault handler itself should return 0 on success, and an appropriate
1060 * error code otherwise.
4f3f8d9d
OBC
1061 */
1062void iommu_set_fault_handler(struct iommu_domain *domain,
77ca2332
OBC
1063 iommu_fault_handler_t handler,
1064 void *token)
4f3f8d9d
OBC
1065{
1066 BUG_ON(!domain);
1067
1068 domain->handler = handler;
77ca2332 1069 domain->handler_token = token;
4f3f8d9d 1070}
30bd918c 1071EXPORT_SYMBOL_GPL(iommu_set_fault_handler);
4f3f8d9d 1072
53723dc5
JR
1073static struct iommu_domain *__iommu_domain_alloc(struct bus_type *bus,
1074 unsigned type)
fc2100eb
JR
1075{
1076 struct iommu_domain *domain;
fc2100eb 1077
94441c3b 1078 if (bus == NULL || bus->iommu_ops == NULL)
905d66c1
JR
1079 return NULL;
1080
53723dc5 1081 domain = bus->iommu_ops->domain_alloc(type);
fc2100eb
JR
1082 if (!domain)
1083 return NULL;
1084
8539c7c1 1085 domain->ops = bus->iommu_ops;
53723dc5 1086 domain->type = type;
905d66c1 1087
fc2100eb 1088 return domain;
fc2100eb 1089}
fc2100eb 1090
53723dc5
JR
1091struct iommu_domain *iommu_domain_alloc(struct bus_type *bus)
1092{
1093 return __iommu_domain_alloc(bus, IOMMU_DOMAIN_UNMANAGED);
fc2100eb
JR
1094}
1095EXPORT_SYMBOL_GPL(iommu_domain_alloc);
1096
1097void iommu_domain_free(struct iommu_domain *domain)
1098{
89be34a1 1099 domain->ops->domain_free(domain);
fc2100eb
JR
1100}
1101EXPORT_SYMBOL_GPL(iommu_domain_free);
1102
426a2738
JR
1103static int __iommu_attach_device(struct iommu_domain *domain,
1104 struct device *dev)
fc2100eb 1105{
b54db778 1106 int ret;
e5aa7f00
JR
1107 if (unlikely(domain->ops->attach_dev == NULL))
1108 return -ENODEV;
1109
b54db778
SK
1110 ret = domain->ops->attach_dev(domain, dev);
1111 if (!ret)
1112 trace_attach_device_to_domain(dev);
1113 return ret;
fc2100eb 1114}
426a2738
JR
1115
1116int iommu_attach_device(struct iommu_domain *domain, struct device *dev)
1117{
1118 struct iommu_group *group;
1119 int ret;
1120
1121 group = iommu_group_get(dev);
1122 /* FIXME: Remove this when groups a mandatory for iommu drivers */
1123 if (group == NULL)
1124 return __iommu_attach_device(domain, dev);
1125
1126 /*
1127 * We have a group - lock it to make sure the device-count doesn't
1128 * change while we are attaching
1129 */
1130 mutex_lock(&group->mutex);
1131 ret = -EINVAL;
1132 if (iommu_group_device_count(group) != 1)
1133 goto out_unlock;
1134
e39cb8a3 1135 ret = __iommu_attach_group(domain, group);
426a2738
JR
1136
1137out_unlock:
1138 mutex_unlock(&group->mutex);
1139 iommu_group_put(group);
1140
1141 return ret;
1142}
fc2100eb
JR
1143EXPORT_SYMBOL_GPL(iommu_attach_device);
1144
426a2738
JR
1145static void __iommu_detach_device(struct iommu_domain *domain,
1146 struct device *dev)
fc2100eb 1147{
e5aa7f00
JR
1148 if (unlikely(domain->ops->detach_dev == NULL))
1149 return;
1150
1151 domain->ops->detach_dev(domain, dev);
69980630 1152 trace_detach_device_from_domain(dev);
fc2100eb 1153}
426a2738
JR
1154
1155void iommu_detach_device(struct iommu_domain *domain, struct device *dev)
1156{
1157 struct iommu_group *group;
1158
1159 group = iommu_group_get(dev);
1160 /* FIXME: Remove this when groups a mandatory for iommu drivers */
1161 if (group == NULL)
1162 return __iommu_detach_device(domain, dev);
1163
1164 mutex_lock(&group->mutex);
1165 if (iommu_group_device_count(group) != 1) {
1166 WARN_ON(1);
1167 goto out_unlock;
1168 }
1169
e39cb8a3 1170 __iommu_detach_group(domain, group);
426a2738
JR
1171
1172out_unlock:
1173 mutex_unlock(&group->mutex);
1174 iommu_group_put(group);
1175}
fc2100eb
JR
1176EXPORT_SYMBOL_GPL(iommu_detach_device);
1177
2c1296d9
JR
1178struct iommu_domain *iommu_get_domain_for_dev(struct device *dev)
1179{
1180 struct iommu_domain *domain;
1181 struct iommu_group *group;
1182
1183 group = iommu_group_get(dev);
1184 /* FIXME: Remove this when groups a mandatory for iommu drivers */
1185 if (group == NULL)
1186 return NULL;
1187
1188 domain = group->domain;
1189
1190 iommu_group_put(group);
1191
1192 return domain;
1193}
1194EXPORT_SYMBOL_GPL(iommu_get_domain_for_dev);
fc2100eb 1195
d72e31c9
AW
1196/*
1197 * IOMMU groups are really the natrual working unit of the IOMMU, but
1198 * the IOMMU API works on domains and devices. Bridge that gap by
1199 * iterating over the devices in a group. Ideally we'd have a single
1200 * device which represents the requestor ID of the group, but we also
1201 * allow IOMMU drivers to create policy defined minimum sets, where
1202 * the physical hardware may be able to distiguish members, but we
1203 * wish to group them at a higher level (ex. untrusted multi-function
1204 * PCI devices). Thus we attach each device.
1205 */
1206static int iommu_group_do_attach_device(struct device *dev, void *data)
1207{
1208 struct iommu_domain *domain = data;
1209
426a2738 1210 return __iommu_attach_device(domain, dev);
d72e31c9
AW
1211}
1212
e39cb8a3
JR
1213static int __iommu_attach_group(struct iommu_domain *domain,
1214 struct iommu_group *group)
1215{
1216 int ret;
1217
1218 if (group->default_domain && group->domain != group->default_domain)
1219 return -EBUSY;
1220
1221 ret = __iommu_group_for_each_dev(group, domain,
1222 iommu_group_do_attach_device);
1223 if (ret == 0)
1224 group->domain = domain;
1225
1226 return ret;
d72e31c9
AW
1227}
1228
1229int iommu_attach_group(struct iommu_domain *domain, struct iommu_group *group)
1230{
e39cb8a3
JR
1231 int ret;
1232
1233 mutex_lock(&group->mutex);
1234 ret = __iommu_attach_group(domain, group);
1235 mutex_unlock(&group->mutex);
1236
1237 return ret;
d72e31c9
AW
1238}
1239EXPORT_SYMBOL_GPL(iommu_attach_group);
1240
1241static int iommu_group_do_detach_device(struct device *dev, void *data)
1242{
1243 struct iommu_domain *domain = data;
1244
426a2738 1245 __iommu_detach_device(domain, dev);
d72e31c9
AW
1246
1247 return 0;
1248}
1249
e39cb8a3
JR
1250static void __iommu_detach_group(struct iommu_domain *domain,
1251 struct iommu_group *group)
1252{
1253 int ret;
1254
1255 if (!group->default_domain) {
1256 __iommu_group_for_each_dev(group, domain,
1257 iommu_group_do_detach_device);
1258 group->domain = NULL;
1259 return;
1260 }
1261
1262 if (group->domain == group->default_domain)
1263 return;
1264
1265 /* Detach by re-attaching to the default domain */
1266 ret = __iommu_group_for_each_dev(group, group->default_domain,
1267 iommu_group_do_attach_device);
1268 if (ret != 0)
1269 WARN_ON(1);
1270 else
1271 group->domain = group->default_domain;
1272}
1273
d72e31c9
AW
1274void iommu_detach_group(struct iommu_domain *domain, struct iommu_group *group)
1275{
e39cb8a3
JR
1276 mutex_lock(&group->mutex);
1277 __iommu_detach_group(domain, group);
1278 mutex_unlock(&group->mutex);
d72e31c9
AW
1279}
1280EXPORT_SYMBOL_GPL(iommu_detach_group);
1281
bb5547ac 1282phys_addr_t iommu_iova_to_phys(struct iommu_domain *domain, dma_addr_t iova)
fc2100eb 1283{
e5aa7f00
JR
1284 if (unlikely(domain->ops->iova_to_phys == NULL))
1285 return 0;
1286
1287 return domain->ops->iova_to_phys(domain, iova);
fc2100eb
JR
1288}
1289EXPORT_SYMBOL_GPL(iommu_iova_to_phys);
dbb9fd86 1290
bd13969b
AW
1291static size_t iommu_pgsize(struct iommu_domain *domain,
1292 unsigned long addr_merge, size_t size)
1293{
1294 unsigned int pgsize_idx;
1295 size_t pgsize;
1296
1297 /* Max page size that still fits into 'size' */
1298 pgsize_idx = __fls(size);
1299
1300 /* need to consider alignment requirements ? */
1301 if (likely(addr_merge)) {
1302 /* Max page size allowed by address */
1303 unsigned int align_pgsize_idx = __ffs(addr_merge);
1304 pgsize_idx = min(pgsize_idx, align_pgsize_idx);
1305 }
1306
1307 /* build a mask of acceptable page sizes */
1308 pgsize = (1UL << (pgsize_idx + 1)) - 1;
1309
1310 /* throw away page sizes not supported by the hardware */
1311 pgsize &= domain->ops->pgsize_bitmap;
1312
1313 /* make sure we're still sane */
1314 BUG_ON(!pgsize);
1315
1316 /* pick the biggest page */
1317 pgsize_idx = __fls(pgsize);
1318 pgsize = 1UL << pgsize_idx;
1319
1320 return pgsize;
1321}
1322
cefc53c7 1323int iommu_map(struct iommu_domain *domain, unsigned long iova,
7d3002cc 1324 phys_addr_t paddr, size_t size, int prot)
cefc53c7 1325{
7d3002cc
OBC
1326 unsigned long orig_iova = iova;
1327 unsigned int min_pagesz;
1328 size_t orig_size = size;
1329 int ret = 0;
cefc53c7 1330
9db4ad91 1331 if (unlikely(domain->ops->map == NULL ||
57886518 1332 domain->ops->pgsize_bitmap == 0UL))
e5aa7f00 1333 return -ENODEV;
cefc53c7 1334
a10315e5
JR
1335 if (unlikely(!(domain->type & __IOMMU_DOMAIN_PAGING)))
1336 return -EINVAL;
1337
7d3002cc
OBC
1338 /* find out the minimum page size supported */
1339 min_pagesz = 1 << __ffs(domain->ops->pgsize_bitmap);
1340
1341 /*
1342 * both the virtual address and the physical one, as well as
1343 * the size of the mapping, must be aligned (at least) to the
1344 * size of the smallest page supported by the hardware
1345 */
1346 if (!IS_ALIGNED(iova | paddr | size, min_pagesz)) {
abedb049 1347 pr_err("unaligned: iova 0x%lx pa %pa size 0x%zx min_pagesz 0x%x\n",
6197ca82 1348 iova, &paddr, size, min_pagesz);
7d3002cc
OBC
1349 return -EINVAL;
1350 }
1351
abedb049 1352 pr_debug("map: iova 0x%lx pa %pa size 0x%zx\n", iova, &paddr, size);
7d3002cc
OBC
1353
1354 while (size) {
bd13969b 1355 size_t pgsize = iommu_pgsize(domain, iova | paddr, size);
7d3002cc 1356
abedb049 1357 pr_debug("mapping: iova 0x%lx pa %pa pgsize 0x%zx\n",
6197ca82 1358 iova, &paddr, pgsize);
7d3002cc
OBC
1359
1360 ret = domain->ops->map(domain, iova, paddr, pgsize, prot);
1361 if (ret)
1362 break;
1363
1364 iova += pgsize;
1365 paddr += pgsize;
1366 size -= pgsize;
1367 }
1368
1369 /* unroll mapping in case something went wrong */
1370 if (ret)
1371 iommu_unmap(domain, orig_iova, orig_size - size);
e0be7c86 1372 else
860cd64d 1373 trace_map(orig_iova, paddr, orig_size);
7d3002cc
OBC
1374
1375 return ret;
cefc53c7
JR
1376}
1377EXPORT_SYMBOL_GPL(iommu_map);
1378
7d3002cc 1379size_t iommu_unmap(struct iommu_domain *domain, unsigned long iova, size_t size)
cefc53c7 1380{
7d3002cc
OBC
1381 size_t unmapped_page, unmapped = 0;
1382 unsigned int min_pagesz;
6fd492fd 1383 unsigned long orig_iova = iova;
cefc53c7 1384
57886518
JR
1385 if (unlikely(domain->ops->unmap == NULL ||
1386 domain->ops->pgsize_bitmap == 0UL))
e5aa7f00
JR
1387 return -ENODEV;
1388
a10315e5
JR
1389 if (unlikely(!(domain->type & __IOMMU_DOMAIN_PAGING)))
1390 return -EINVAL;
1391
7d3002cc
OBC
1392 /* find out the minimum page size supported */
1393 min_pagesz = 1 << __ffs(domain->ops->pgsize_bitmap);
1394
1395 /*
1396 * The virtual address, as well as the size of the mapping, must be
1397 * aligned (at least) to the size of the smallest page supported
1398 * by the hardware
1399 */
1400 if (!IS_ALIGNED(iova | size, min_pagesz)) {
6197ca82
JP
1401 pr_err("unaligned: iova 0x%lx size 0x%zx min_pagesz 0x%x\n",
1402 iova, size, min_pagesz);
7d3002cc
OBC
1403 return -EINVAL;
1404 }
1405
6197ca82 1406 pr_debug("unmap this: iova 0x%lx size 0x%zx\n", iova, size);
7d3002cc
OBC
1407
1408 /*
1409 * Keep iterating until we either unmap 'size' bytes (or more)
1410 * or we hit an area that isn't mapped.
1411 */
1412 while (unmapped < size) {
bd13969b 1413 size_t pgsize = iommu_pgsize(domain, iova, size - unmapped);
7d3002cc 1414
bd13969b 1415 unmapped_page = domain->ops->unmap(domain, iova, pgsize);
7d3002cc
OBC
1416 if (!unmapped_page)
1417 break;
1418
6197ca82
JP
1419 pr_debug("unmapped: iova 0x%lx size 0x%zx\n",
1420 iova, unmapped_page);
7d3002cc
OBC
1421
1422 iova += unmapped_page;
1423 unmapped += unmapped_page;
1424 }
1425
db8614d3 1426 trace_unmap(orig_iova, size, unmapped);
7d3002cc 1427 return unmapped;
cefc53c7
JR
1428}
1429EXPORT_SYMBOL_GPL(iommu_unmap);
1460432c 1430
315786eb
OH
1431size_t default_iommu_map_sg(struct iommu_domain *domain, unsigned long iova,
1432 struct scatterlist *sg, unsigned int nents, int prot)
1433{
38ec010d 1434 struct scatterlist *s;
315786eb 1435 size_t mapped = 0;
18f23409 1436 unsigned int i, min_pagesz;
38ec010d 1437 int ret;
315786eb 1438
18f23409
RM
1439 if (unlikely(domain->ops->pgsize_bitmap == 0UL))
1440 return 0;
315786eb 1441
18f23409
RM
1442 min_pagesz = 1 << __ffs(domain->ops->pgsize_bitmap);
1443
1444 for_each_sg(sg, s, nents, i) {
3e6110fd 1445 phys_addr_t phys = page_to_phys(sg_page(s)) + s->offset;
18f23409
RM
1446
1447 /*
1448 * We are mapping on IOMMU page boundaries, so offset within
1449 * the page must be 0. However, the IOMMU may support pages
1450 * smaller than PAGE_SIZE, so s->offset may still represent
1451 * an offset of that boundary within the CPU page.
1452 */
1453 if (!IS_ALIGNED(s->offset, min_pagesz))
38ec010d
JR
1454 goto out_err;
1455
1456 ret = iommu_map(domain, iova + mapped, phys, s->length, prot);
1457 if (ret)
1458 goto out_err;
1459
1460 mapped += s->length;
315786eb
OH
1461 }
1462
1463 return mapped;
38ec010d
JR
1464
1465out_err:
1466 /* undo mappings already done */
1467 iommu_unmap(domain, iova, mapped);
1468
1469 return 0;
1470
315786eb
OH
1471}
1472EXPORT_SYMBOL_GPL(default_iommu_map_sg);
d7787d57
JR
1473
1474int iommu_domain_window_enable(struct iommu_domain *domain, u32 wnd_nr,
80f97f0f 1475 phys_addr_t paddr, u64 size, int prot)
d7787d57
JR
1476{
1477 if (unlikely(domain->ops->domain_window_enable == NULL))
1478 return -ENODEV;
1479
80f97f0f
VS
1480 return domain->ops->domain_window_enable(domain, wnd_nr, paddr, size,
1481 prot);
d7787d57
JR
1482}
1483EXPORT_SYMBOL_GPL(iommu_domain_window_enable);
1484
1485void iommu_domain_window_disable(struct iommu_domain *domain, u32 wnd_nr)
1486{
1487 if (unlikely(domain->ops->domain_window_disable == NULL))
1488 return;
1489
1490 return domain->ops->domain_window_disable(domain, wnd_nr);
1491}
1492EXPORT_SYMBOL_GPL(iommu_domain_window_disable);
1493
d72e31c9 1494static int __init iommu_init(void)
1460432c 1495{
d72e31c9
AW
1496 iommu_group_kset = kset_create_and_add("iommu_groups",
1497 NULL, kernel_kobj);
1498 ida_init(&iommu_group_ida);
1499 mutex_init(&iommu_group_mutex);
1460432c 1500
d72e31c9
AW
1501 BUG_ON(!iommu_group_kset);
1502
1503 return 0;
1460432c 1504}
d7ef9995 1505core_initcall(iommu_init);
0cd76dd1
JR
1506
1507int iommu_domain_get_attr(struct iommu_domain *domain,
1508 enum iommu_attr attr, void *data)
1509{
0ff64f80 1510 struct iommu_domain_geometry *geometry;
d2e12160 1511 bool *paging;
0ff64f80 1512 int ret = 0;
69356712 1513 u32 *count;
0ff64f80
JR
1514
1515 switch (attr) {
1516 case DOMAIN_ATTR_GEOMETRY:
1517 geometry = data;
1518 *geometry = domain->geometry;
1519
d2e12160
JR
1520 break;
1521 case DOMAIN_ATTR_PAGING:
1522 paging = data;
1523 *paging = (domain->ops->pgsize_bitmap != 0UL);
69356712
JR
1524 break;
1525 case DOMAIN_ATTR_WINDOWS:
1526 count = data;
1527
1528 if (domain->ops->domain_get_windows != NULL)
1529 *count = domain->ops->domain_get_windows(domain);
1530 else
1531 ret = -ENODEV;
1532
0ff64f80
JR
1533 break;
1534 default:
1535 if (!domain->ops->domain_get_attr)
1536 return -EINVAL;
0cd76dd1 1537
0ff64f80
JR
1538 ret = domain->ops->domain_get_attr(domain, attr, data);
1539 }
1540
1541 return ret;
0cd76dd1
JR
1542}
1543EXPORT_SYMBOL_GPL(iommu_domain_get_attr);
1544
1545int iommu_domain_set_attr(struct iommu_domain *domain,
1546 enum iommu_attr attr, void *data)
1547{
69356712
JR
1548 int ret = 0;
1549 u32 *count;
1550
1551 switch (attr) {
1552 case DOMAIN_ATTR_WINDOWS:
1553 count = data;
1554
1555 if (domain->ops->domain_set_windows != NULL)
1556 ret = domain->ops->domain_set_windows(domain, *count);
1557 else
1558 ret = -ENODEV;
1460432c 1559
69356712
JR
1560 break;
1561 default:
1562 if (domain->ops->domain_set_attr == NULL)
1563 return -EINVAL;
1564
1565 ret = domain->ops->domain_set_attr(domain, attr, data);
1566 }
1567
1568 return ret;
1460432c 1569}
0cd76dd1 1570EXPORT_SYMBOL_GPL(iommu_domain_set_attr);
a1015c2b
JR
1571
1572void iommu_get_dm_regions(struct device *dev, struct list_head *list)
1573{
1574 const struct iommu_ops *ops = dev->bus->iommu_ops;
1575
1576 if (ops && ops->get_dm_regions)
1577 ops->get_dm_regions(dev, list);
1578}
1579
1580void iommu_put_dm_regions(struct device *dev, struct list_head *list)
1581{
1582 const struct iommu_ops *ops = dev->bus->iommu_ops;
1583
1584 if (ops && ops->put_dm_regions)
1585 ops->put_dm_regions(dev, list);
1586}
d290f1e7
JR
1587
1588/* Request that a device is direct mapped by the IOMMU */
1589int iommu_request_dm_for_dev(struct device *dev)
1590{
1591 struct iommu_domain *dm_domain;
1592 struct iommu_group *group;
1593 int ret;
1594
1595 /* Device must already be in a group before calling this function */
1596 group = iommu_group_get_for_dev(dev);
409e553d
DC
1597 if (IS_ERR(group))
1598 return PTR_ERR(group);
d290f1e7
JR
1599
1600 mutex_lock(&group->mutex);
1601
1602 /* Check if the default domain is already direct mapped */
1603 ret = 0;
1604 if (group->default_domain &&
1605 group->default_domain->type == IOMMU_DOMAIN_IDENTITY)
1606 goto out;
1607
1608 /* Don't change mappings of existing devices */
1609 ret = -EBUSY;
1610 if (iommu_group_device_count(group) != 1)
1611 goto out;
1612
1613 /* Allocate a direct mapped domain */
1614 ret = -ENOMEM;
1615 dm_domain = __iommu_domain_alloc(dev->bus, IOMMU_DOMAIN_IDENTITY);
1616 if (!dm_domain)
1617 goto out;
1618
1619 /* Attach the device to the domain */
1620 ret = __iommu_attach_group(dm_domain, group);
1621 if (ret) {
1622 iommu_domain_free(dm_domain);
1623 goto out;
1624 }
1625
1626 /* Make the direct mapped domain the default for this group */
1627 if (group->default_domain)
1628 iommu_domain_free(group->default_domain);
1629 group->default_domain = dm_domain;
1630
1631 pr_info("Using direct mapping for device %s\n", dev_name(dev));
1632
1633 ret = 0;
1634out:
1635 mutex_unlock(&group->mutex);
1636 iommu_group_put(group);
1637
1638 return ret;
1639}