blob: 6b8d6e7771e1bb755d4825e0472a7e73e8f7365c [file] [log] [blame]
Joerg Roedelfc2100e2008-11-26 17:21:24 +01001/*
2 * Copyright (C) 2007-2008 Advanced Micro Devices, Inc.
Joerg Roedel63ce3ae2015-02-04 16:12:55 +01003 * Author: Joerg Roedel <jroedel@suse.de>
Joerg Roedelfc2100e2008-11-26 17:21:24 +01004 *
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
Joerg Roedel92e70662015-05-28 18:41:24 +020019#define pr_fmt(fmt) "iommu: " fmt
Ohad Ben-Cohen7d3002c2011-11-10 11:32:26 +020020
Joerg Roedel905d66c2011-09-06 16:03:26 +020021#include <linux/device.h>
Ohad Ben-Cohen40998182011-09-02 13:32:32 -040022#include <linux/kernel.h>
Joerg Roedelfc2100e2008-11-26 17:21:24 +010023#include <linux/bug.h>
24#include <linux/types.h>
Andrew Morton60db4022009-05-06 16:03:07 -070025#include <linux/module.h>
26#include <linux/slab.h>
Joerg Roedelfc2100e2008-11-26 17:21:24 +010027#include <linux/errno.h>
28#include <linux/iommu.h>
Alex Williamsond72e31c2012-05-30 14:18:53 -060029#include <linux/idr.h>
30#include <linux/notifier.h>
31#include <linux/err.h>
Alex Williamson104a1c12014-07-03 09:51:18 -060032#include <linux/pci.h>
Alex Williamsonf096c062014-09-19 10:03:06 -060033#include <linux/bitops.h>
Shuah Khan7f6db172013-08-15 11:59:23 -060034#include <trace/events/iommu.h>
Joerg Roedelfc2100e2008-11-26 17:21:24 +010035
Alex Williamsond72e31c2012-05-30 14:18:53 -060036static struct kset *iommu_group_kset;
37static struct ida iommu_group_ida;
38static struct mutex iommu_group_mutex;
39
Thierry Redingb22f6432014-06-27 09:03:12 +020040struct iommu_callback_data {
41 const struct iommu_ops *ops;
42};
43
Alex Williamsond72e31c2012-05-30 14:18:53 -060044struct 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;
Joerg Roedel53723dc2015-05-28 18:41:29 +020054 struct iommu_domain *default_domain;
Joerg Roedele39cb8a2015-05-28 18:41:31 +020055 struct iommu_domain *domain;
Alex Williamsond72e31c2012-05-30 14:18:53 -060056};
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)
74
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)
79
Joerg Roedel53723dc2015-05-28 18:41:29 +020080static struct iommu_domain *__iommu_domain_alloc(struct bus_type *bus,
81 unsigned type);
Joerg Roedele39cb8a2015-05-28 18:41:31 +020082static 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);
Joerg Roedel53723dc2015-05-28 18:41:29 +020088
Alex Williamsond72e31c2012-05-30 14:18:53 -060089static ssize_t iommu_group_attr_show(struct kobject *kobj,
90 struct attribute *__attr, char *buf)
Alex Williamson14604322011-10-21 15:56:05 -040091{
Alex Williamsond72e31c2012-05-30 14:18:53 -060092 struct iommu_group_attribute *attr = to_iommu_group_attr(__attr);
93 struct iommu_group *group = to_iommu_group(kobj);
94 ssize_t ret = -EIO;
Alex Williamson14604322011-10-21 15:56:05 -040095
Alex Williamsond72e31c2012-05-30 14:18:53 -060096 if (attr->show)
97 ret = attr->show(group, buf);
98 return ret;
Alex Williamson14604322011-10-21 15:56:05 -040099}
Alex Williamsond72e31c2012-05-30 14:18:53 -0600100
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;
108
109 if (attr->store)
110 ret = attr->store(group, buf, count);
111 return ret;
112}
113
114static const struct sysfs_ops iommu_group_sysfs_ops = {
115 .show = iommu_group_attr_show,
116 .store = iommu_group_attr_store,
117};
118
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);
123}
124
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
Joerg Roedel269aa802015-05-28 18:41:25 +0200142 pr_debug("Releasing group %d\n", group->id);
143
Alex Williamsond72e31c2012-05-30 14:18:53 -0600144 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
Joerg Roedel53723dc2015-05-28 18:41:29 +0200151 if (group->default_domain)
152 iommu_domain_free(group->default_domain);
153
Alex Williamsond72e31c2012-05-30 14:18:53 -0600154 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)
176{
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);
202
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
Joerg Roedel269aa802015-05-28 18:41:25 +0200226 pr_debug("Allocated group %d\n", group->id);
227
Alex Williamsond72e31c2012-05-30 14:18:53 -0600228 return group;
229}
230EXPORT_SYMBOL_GPL(iommu_group_alloc);
231
Alexey Kardashevskiyaa16bea2013-03-25 10:23:49 +1100232struct 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
Alex Williamsond72e31c2012-05-30 14:18:53 -0600261/**
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))
287{
288 group->iommu_data = iommu_data;
289 group->iommu_data_release = release;
290}
291EXPORT_SYMBOL_GPL(iommu_group_set_iommudata);
292
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 }
323
324 return 0;
325}
326EXPORT_SYMBOL_GPL(iommu_group_set_name);
327
328/**
329 * iommu_group_add_device - add a device to an iommu group
330 * @group: the group into which to add the device (reference should be held)
331 * @dev: the device
332 *
333 * This function is called by an iommu driver to add a device into a
334 * group. Adding a device increments the group reference count.
335 */
336int iommu_group_add_device(struct iommu_group *group, struct device *dev)
337{
338 int ret, i = 0;
339 struct iommu_device *device;
340
341 device = kzalloc(sizeof(*device), GFP_KERNEL);
342 if (!device)
343 return -ENOMEM;
344
345 device->dev = dev;
346
347 ret = sysfs_create_link(&dev->kobj, &group->kobj, "iommu_group");
348 if (ret) {
349 kfree(device);
350 return ret;
351 }
352
353 device->name = kasprintf(GFP_KERNEL, "%s", kobject_name(&dev->kobj));
354rename:
355 if (!device->name) {
356 sysfs_remove_link(&dev->kobj, "iommu_group");
357 kfree(device);
358 return -ENOMEM;
359 }
360
361 ret = sysfs_create_link_nowarn(group->devices_kobj,
362 &dev->kobj, device->name);
363 if (ret) {
364 kfree(device->name);
365 if (ret == -EEXIST && i >= 0) {
366 /*
367 * Account for the slim chance of collision
368 * and append an instance to the name.
369 */
370 device->name = kasprintf(GFP_KERNEL, "%s.%d",
371 kobject_name(&dev->kobj), i++);
372 goto rename;
373 }
374
375 sysfs_remove_link(&dev->kobj, "iommu_group");
376 kfree(device);
377 return ret;
378 }
379
380 kobject_get(group->devices_kobj);
381
382 dev->iommu_group = group;
383
384 mutex_lock(&group->mutex);
385 list_add_tail(&device->list, &group->devices);
Joerg Roedele39cb8a2015-05-28 18:41:31 +0200386 if (group->domain)
387 __iommu_attach_device(group->domain, dev);
Alex Williamsond72e31c2012-05-30 14:18:53 -0600388 mutex_unlock(&group->mutex);
389
390 /* Notify any listeners about change to group. */
391 blocking_notifier_call_chain(&group->notifier,
392 IOMMU_GROUP_NOTIFY_ADD_DEVICE, dev);
Shuah Khand1cf7e82013-08-15 11:59:24 -0600393
394 trace_add_device_to_group(group->id, dev);
Joerg Roedel269aa802015-05-28 18:41:25 +0200395
396 pr_info("Adding device %s to group %d\n", dev_name(dev), group->id);
397
Alex Williamsond72e31c2012-05-30 14:18:53 -0600398 return 0;
399}
400EXPORT_SYMBOL_GPL(iommu_group_add_device);
401
402/**
403 * iommu_group_remove_device - remove a device from it's current group
404 * @dev: device to be removed
405 *
406 * This function is called by an iommu driver to remove the device from
407 * it's current group. This decrements the iommu group reference count.
408 */
409void iommu_group_remove_device(struct device *dev)
410{
411 struct iommu_group *group = dev->iommu_group;
412 struct iommu_device *tmp_device, *device = NULL;
413
Joerg Roedel269aa802015-05-28 18:41:25 +0200414 pr_info("Removing device %s from group %d\n", dev_name(dev), group->id);
415
Alex Williamsond72e31c2012-05-30 14:18:53 -0600416 /* Pre-notify listeners that a device is being removed. */
417 blocking_notifier_call_chain(&group->notifier,
418 IOMMU_GROUP_NOTIFY_DEL_DEVICE, dev);
419
420 mutex_lock(&group->mutex);
421 list_for_each_entry(tmp_device, &group->devices, list) {
422 if (tmp_device->dev == dev) {
423 device = tmp_device;
424 list_del(&device->list);
425 break;
426 }
427 }
428 mutex_unlock(&group->mutex);
429
430 if (!device)
431 return;
432
433 sysfs_remove_link(group->devices_kobj, device->name);
434 sysfs_remove_link(&dev->kobj, "iommu_group");
435
Shuah Khan2e757082013-08-15 11:59:25 -0600436 trace_remove_device_from_group(group->id, dev);
437
Alex Williamsond72e31c2012-05-30 14:18:53 -0600438 kfree(device->name);
439 kfree(device);
440 dev->iommu_group = NULL;
441 kobject_put(group->devices_kobj);
442}
443EXPORT_SYMBOL_GPL(iommu_group_remove_device);
444
Joerg Roedel426a2732015-05-28 18:41:30 +0200445static int iommu_group_device_count(struct iommu_group *group)
446{
447 struct iommu_device *entry;
448 int ret = 0;
449
450 list_for_each_entry(entry, &group->devices, list)
451 ret++;
452
453 return ret;
454}
455
Alex Williamsond72e31c2012-05-30 14:18:53 -0600456/**
457 * iommu_group_for_each_dev - iterate over each device in the group
458 * @group: the group
459 * @data: caller opaque data to be passed to callback function
460 * @fn: caller supplied callback function
461 *
462 * This function is called by group users to iterate over group devices.
463 * Callers should hold a reference count to the group during callback.
464 * The group->mutex is held across callbacks, which will block calls to
465 * iommu_group_add/remove_device.
466 */
Joerg Roedele39cb8a2015-05-28 18:41:31 +0200467static int __iommu_group_for_each_dev(struct iommu_group *group, void *data,
468 int (*fn)(struct device *, void *))
Alex Williamsond72e31c2012-05-30 14:18:53 -0600469{
470 struct iommu_device *device;
471 int ret = 0;
472
Alex Williamsond72e31c2012-05-30 14:18:53 -0600473 list_for_each_entry(device, &group->devices, list) {
474 ret = fn(device->dev, data);
475 if (ret)
476 break;
477 }
Joerg Roedele39cb8a2015-05-28 18:41:31 +0200478 return ret;
479}
480
481
482int iommu_group_for_each_dev(struct iommu_group *group, void *data,
483 int (*fn)(struct device *, void *))
484{
485 int ret;
486
487 mutex_lock(&group->mutex);
488 ret = __iommu_group_for_each_dev(group, data, fn);
Alex Williamsond72e31c2012-05-30 14:18:53 -0600489 mutex_unlock(&group->mutex);
Joerg Roedele39cb8a2015-05-28 18:41:31 +0200490
Alex Williamsond72e31c2012-05-30 14:18:53 -0600491 return ret;
492}
493EXPORT_SYMBOL_GPL(iommu_group_for_each_dev);
494
495/**
496 * iommu_group_get - Return the group for a device and increment reference
497 * @dev: get the group that this device belongs to
498 *
499 * This function is called by iommu drivers and users to get the group
500 * for the specified device. If found, the group is returned and the group
501 * reference in incremented, else NULL.
502 */
503struct iommu_group *iommu_group_get(struct device *dev)
504{
505 struct iommu_group *group = dev->iommu_group;
506
507 if (group)
508 kobject_get(group->devices_kobj);
509
510 return group;
511}
512EXPORT_SYMBOL_GPL(iommu_group_get);
513
514/**
515 * iommu_group_put - Decrement group reference
516 * @group: the group to use
517 *
518 * This function is called by iommu drivers and users to release the
519 * iommu group. Once the reference count is zero, the group is released.
520 */
521void iommu_group_put(struct iommu_group *group)
522{
523 if (group)
524 kobject_put(group->devices_kobj);
525}
526EXPORT_SYMBOL_GPL(iommu_group_put);
527
528/**
529 * iommu_group_register_notifier - Register a notifier for group changes
530 * @group: the group to watch
531 * @nb: notifier block to signal
532 *
533 * This function allows iommu group users to track changes in a group.
534 * See include/linux/iommu.h for actions sent via this notifier. Caller
535 * should hold a reference to the group throughout notifier registration.
536 */
537int iommu_group_register_notifier(struct iommu_group *group,
538 struct notifier_block *nb)
539{
540 return blocking_notifier_chain_register(&group->notifier, nb);
541}
542EXPORT_SYMBOL_GPL(iommu_group_register_notifier);
543
544/**
545 * iommu_group_unregister_notifier - Unregister a notifier
546 * @group: the group to watch
547 * @nb: notifier block to signal
548 *
549 * Unregister a previously registered group notifier block.
550 */
551int iommu_group_unregister_notifier(struct iommu_group *group,
552 struct notifier_block *nb)
553{
554 return blocking_notifier_chain_unregister(&group->notifier, nb);
555}
556EXPORT_SYMBOL_GPL(iommu_group_unregister_notifier);
557
558/**
559 * iommu_group_id - Return ID for a group
560 * @group: the group to ID
561 *
562 * Return the unique ID for the group matching the sysfs group number.
563 */
564int iommu_group_id(struct iommu_group *group)
565{
566 return group->id;
567}
568EXPORT_SYMBOL_GPL(iommu_group_id);
Alex Williamson14604322011-10-21 15:56:05 -0400569
Alex Williamsonf096c062014-09-19 10:03:06 -0600570static struct iommu_group *get_pci_alias_group(struct pci_dev *pdev,
571 unsigned long *devfns);
572
Alex Williamson104a1c12014-07-03 09:51:18 -0600573/*
574 * To consider a PCI device isolated, we require ACS to support Source
575 * Validation, Request Redirection, Completer Redirection, and Upstream
576 * Forwarding. This effectively means that devices cannot spoof their
577 * requester ID, requests and completions cannot be redirected, and all
578 * transactions are forwarded upstream, even as it passes through a
579 * bridge where the target device is downstream.
580 */
581#define REQ_ACS_FLAGS (PCI_ACS_SV | PCI_ACS_RR | PCI_ACS_CR | PCI_ACS_UF)
582
Alex Williamsonf096c062014-09-19 10:03:06 -0600583/*
584 * For multifunction devices which are not isolated from each other, find
585 * all the other non-isolated functions and look for existing groups. For
586 * each function, we also need to look for aliases to or from other devices
587 * that may already have a group.
588 */
589static struct iommu_group *get_pci_function_alias_group(struct pci_dev *pdev,
590 unsigned long *devfns)
591{
592 struct pci_dev *tmp = NULL;
593 struct iommu_group *group;
594
595 if (!pdev->multifunction || pci_acs_enabled(pdev, REQ_ACS_FLAGS))
596 return NULL;
597
598 for_each_pci_dev(tmp) {
599 if (tmp == pdev || tmp->bus != pdev->bus ||
600 PCI_SLOT(tmp->devfn) != PCI_SLOT(pdev->devfn) ||
601 pci_acs_enabled(tmp, REQ_ACS_FLAGS))
602 continue;
603
604 group = get_pci_alias_group(tmp, devfns);
605 if (group) {
606 pci_dev_put(tmp);
607 return group;
608 }
609 }
610
611 return NULL;
612}
613
614/*
615 * Look for aliases to or from the given device for exisiting groups. The
616 * dma_alias_devfn only supports aliases on the same bus, therefore the search
617 * space is quite small (especially since we're really only looking at pcie
618 * device, and therefore only expect multiple slots on the root complex or
619 * downstream switch ports). It's conceivable though that a pair of
620 * multifunction devices could have aliases between them that would cause a
621 * loop. To prevent this, we use a bitmap to track where we've been.
622 */
623static struct iommu_group *get_pci_alias_group(struct pci_dev *pdev,
624 unsigned long *devfns)
625{
626 struct pci_dev *tmp = NULL;
627 struct iommu_group *group;
628
629 if (test_and_set_bit(pdev->devfn & 0xff, devfns))
630 return NULL;
631
632 group = iommu_group_get(&pdev->dev);
633 if (group)
634 return group;
635
636 for_each_pci_dev(tmp) {
637 if (tmp == pdev || tmp->bus != pdev->bus)
638 continue;
639
640 /* We alias them or they alias us */
641 if (((pdev->dev_flags & PCI_DEV_FLAGS_DMA_ALIAS_DEVFN) &&
642 pdev->dma_alias_devfn == tmp->devfn) ||
643 ((tmp->dev_flags & PCI_DEV_FLAGS_DMA_ALIAS_DEVFN) &&
644 tmp->dma_alias_devfn == pdev->devfn)) {
645
646 group = get_pci_alias_group(tmp, devfns);
647 if (group) {
648 pci_dev_put(tmp);
649 return group;
650 }
651
652 group = get_pci_function_alias_group(tmp, devfns);
653 if (group) {
654 pci_dev_put(tmp);
655 return group;
656 }
657 }
658 }
659
660 return NULL;
661}
662
Alex Williamson104a1c12014-07-03 09:51:18 -0600663struct group_for_pci_data {
664 struct pci_dev *pdev;
665 struct iommu_group *group;
666};
667
668/*
669 * DMA alias iterator callback, return the last seen device. Stop and return
670 * the IOMMU group if we find one along the way.
671 */
672static int get_pci_alias_or_group(struct pci_dev *pdev, u16 alias, void *opaque)
673{
674 struct group_for_pci_data *data = opaque;
675
676 data->pdev = pdev;
677 data->group = iommu_group_get(&pdev->dev);
678
679 return data->group != NULL;
680}
681
682/*
683 * Use standard PCI bus topology, isolation features, and DMA alias quirks
684 * to find or create an IOMMU group for a device.
685 */
686static struct iommu_group *iommu_group_get_for_pci_dev(struct pci_dev *pdev)
687{
688 struct group_for_pci_data data;
689 struct pci_bus *bus;
690 struct iommu_group *group = NULL;
Alex Williamsonf096c062014-09-19 10:03:06 -0600691 u64 devfns[4] = { 0 };
Alex Williamson104a1c12014-07-03 09:51:18 -0600692
693 /*
694 * Find the upstream DMA alias for the device. A device must not
695 * be aliased due to topology in order to have its own IOMMU group.
696 * If we find an alias along the way that already belongs to a
697 * group, use it.
698 */
699 if (pci_for_each_dma_alias(pdev, get_pci_alias_or_group, &data))
700 return data.group;
701
702 pdev = data.pdev;
703
704 /*
705 * Continue upstream from the point of minimum IOMMU granularity
706 * due to aliases to the point where devices are protected from
707 * peer-to-peer DMA by PCI ACS. Again, if we find an existing
708 * group, use it.
709 */
710 for (bus = pdev->bus; !pci_is_root_bus(bus); bus = bus->parent) {
711 if (!bus->self)
712 continue;
713
714 if (pci_acs_path_enabled(bus->self, NULL, REQ_ACS_FLAGS))
715 break;
716
717 pdev = bus->self;
718
719 group = iommu_group_get(&pdev->dev);
720 if (group)
721 return group;
722 }
723
724 /*
Alex Williamsonf096c062014-09-19 10:03:06 -0600725 * Look for existing groups on device aliases. If we alias another
726 * device or another device aliases us, use the same group.
Alex Williamson104a1c12014-07-03 09:51:18 -0600727 */
Alex Williamsonf096c062014-09-19 10:03:06 -0600728 group = get_pci_alias_group(pdev, (unsigned long *)devfns);
729 if (group)
730 return group;
Alex Williamson104a1c12014-07-03 09:51:18 -0600731
732 /*
Alex Williamsonf096c062014-09-19 10:03:06 -0600733 * Look for existing groups on non-isolated functions on the same
734 * slot and aliases of those funcions, if any. No need to clear
735 * the search bitmap, the tested devfns are still valid.
Alex Williamson104a1c12014-07-03 09:51:18 -0600736 */
Alex Williamsonf096c062014-09-19 10:03:06 -0600737 group = get_pci_function_alias_group(pdev, (unsigned long *)devfns);
738 if (group)
739 return group;
Alex Williamson104a1c12014-07-03 09:51:18 -0600740
741 /* No shared group found, allocate new */
Joerg Roedel53723dc2015-05-28 18:41:29 +0200742 group = iommu_group_alloc();
743 if (group) {
744 /*
745 * Try to allocate a default domain - needs support from the
746 * IOMMU driver.
747 */
748 group->default_domain = __iommu_domain_alloc(pdev->dev.bus,
749 IOMMU_DOMAIN_DMA);
Joerg Roedele39cb8a2015-05-28 18:41:31 +0200750 group->domain = group->default_domain;
Joerg Roedel53723dc2015-05-28 18:41:29 +0200751 }
752
753 return group;
Alex Williamson104a1c12014-07-03 09:51:18 -0600754}
755
756/**
757 * iommu_group_get_for_dev - Find or create the IOMMU group for a device
758 * @dev: target device
759 *
760 * This function is intended to be called by IOMMU drivers and extended to
761 * support common, bus-defined algorithms when determining or creating the
762 * IOMMU group for a device. On success, the caller will hold a reference
763 * to the returned IOMMU group, which will already include the provided
764 * device. The reference should be released with iommu_group_put().
765 */
766struct iommu_group *iommu_group_get_for_dev(struct device *dev)
767{
Joerg Roedelc4a783b2014-08-21 22:32:08 +0200768 struct iommu_group *group;
Alex Williamson104a1c12014-07-03 09:51:18 -0600769 int ret;
770
771 group = iommu_group_get(dev);
772 if (group)
773 return group;
774
Joerg Roedelc4a783b2014-08-21 22:32:08 +0200775 if (!dev_is_pci(dev))
776 return ERR_PTR(-EINVAL);
777
778 group = iommu_group_get_for_pci_dev(to_pci_dev(dev));
Alex Williamson104a1c12014-07-03 09:51:18 -0600779
780 if (IS_ERR(group))
781 return group;
782
783 ret = iommu_group_add_device(group, dev);
784 if (ret) {
785 iommu_group_put(group);
786 return ERR_PTR(ret);
787 }
788
789 return group;
790}
791
Alex Williamson14604322011-10-21 15:56:05 -0400792static int add_iommu_group(struct device *dev, void *data)
793{
Thierry Redingb22f6432014-06-27 09:03:12 +0200794 struct iommu_callback_data *cb = data;
795 const struct iommu_ops *ops = cb->ops;
Alex Williamson14604322011-10-21 15:56:05 -0400796
Alex Williamsond72e31c2012-05-30 14:18:53 -0600797 if (!ops->add_device)
Marek Szyprowski461bfb3f2014-11-19 11:15:31 +0000798 return 0;
Alex Williamsond72e31c2012-05-30 14:18:53 -0600799
800 WARN_ON(dev->iommu_group);
801
Joerg Roedel19762d72015-05-28 18:41:26 +0200802 return ops->add_device(dev);
Alex Williamson14604322011-10-21 15:56:05 -0400803}
804
Joerg Roedel8da30142015-05-28 18:41:27 +0200805static int remove_iommu_group(struct device *dev, void *data)
806{
807 struct iommu_callback_data *cb = data;
808 const struct iommu_ops *ops = cb->ops;
809
810 if (ops->remove_device && dev->iommu_group)
811 ops->remove_device(dev);
812
813 return 0;
814}
815
Alex Williamsond72e31c2012-05-30 14:18:53 -0600816static int iommu_bus_notifier(struct notifier_block *nb,
817 unsigned long action, void *data)
Alex Williamson14604322011-10-21 15:56:05 -0400818{
819 struct device *dev = data;
Thierry Redingb22f6432014-06-27 09:03:12 +0200820 const struct iommu_ops *ops = dev->bus->iommu_ops;
Alex Williamsond72e31c2012-05-30 14:18:53 -0600821 struct iommu_group *group;
822 unsigned long group_action = 0;
Alex Williamson14604322011-10-21 15:56:05 -0400823
Alex Williamsond72e31c2012-05-30 14:18:53 -0600824 /*
825 * ADD/DEL call into iommu driver ops if provided, which may
826 * result in ADD/DEL notifiers to group->notifier
827 */
828 if (action == BUS_NOTIFY_ADD_DEVICE) {
829 if (ops->add_device)
830 return ops->add_device(dev);
Joerg Roedel843cb6d2015-05-28 18:41:28 +0200831 } else if (action == BUS_NOTIFY_REMOVED_DEVICE) {
Alex Williamsond72e31c2012-05-30 14:18:53 -0600832 if (ops->remove_device && dev->iommu_group) {
833 ops->remove_device(dev);
834 return 0;
835 }
836 }
Alex Williamson14604322011-10-21 15:56:05 -0400837
Alex Williamsond72e31c2012-05-30 14:18:53 -0600838 /*
839 * Remaining BUS_NOTIFYs get filtered and republished to the
840 * group, if anyone is listening
841 */
842 group = iommu_group_get(dev);
843 if (!group)
844 return 0;
845
846 switch (action) {
847 case BUS_NOTIFY_BIND_DRIVER:
848 group_action = IOMMU_GROUP_NOTIFY_BIND_DRIVER;
849 break;
850 case BUS_NOTIFY_BOUND_DRIVER:
851 group_action = IOMMU_GROUP_NOTIFY_BOUND_DRIVER;
852 break;
853 case BUS_NOTIFY_UNBIND_DRIVER:
854 group_action = IOMMU_GROUP_NOTIFY_UNBIND_DRIVER;
855 break;
856 case BUS_NOTIFY_UNBOUND_DRIVER:
857 group_action = IOMMU_GROUP_NOTIFY_UNBOUND_DRIVER;
858 break;
859 }
860
861 if (group_action)
862 blocking_notifier_call_chain(&group->notifier,
863 group_action, dev);
864
865 iommu_group_put(group);
Alex Williamson14604322011-10-21 15:56:05 -0400866 return 0;
867}
868
Mark Salterfb3e3062014-09-21 13:58:24 -0400869static int iommu_bus_init(struct bus_type *bus, const struct iommu_ops *ops)
Joerg Roedelfc2100e2008-11-26 17:21:24 +0100870{
Mark Salterfb3e3062014-09-21 13:58:24 -0400871 int err;
872 struct notifier_block *nb;
Thierry Redingb22f6432014-06-27 09:03:12 +0200873 struct iommu_callback_data cb = {
874 .ops = ops,
875 };
876
Mark Salterfb3e3062014-09-21 13:58:24 -0400877 nb = kzalloc(sizeof(struct notifier_block), GFP_KERNEL);
878 if (!nb)
879 return -ENOMEM;
880
881 nb->notifier_call = iommu_bus_notifier;
882
883 err = bus_register_notifier(bus, nb);
Joerg Roedel8da30142015-05-28 18:41:27 +0200884 if (err)
885 goto out_free;
Heiko Stübnerd7da6bd2014-10-29 01:22:56 +0100886
887 err = bus_for_each_dev(bus, NULL, &cb, add_iommu_group);
Joerg Roedel8da30142015-05-28 18:41:27 +0200888 if (err)
889 goto out_err;
890
Heiko Stübnerd7da6bd2014-10-29 01:22:56 +0100891
892 return 0;
Joerg Roedel8da30142015-05-28 18:41:27 +0200893
894out_err:
895 /* Clean up */
896 bus_for_each_dev(bus, NULL, &cb, remove_iommu_group);
897 bus_unregister_notifier(bus, nb);
898
899out_free:
900 kfree(nb);
901
902 return err;
Joerg Roedelfc2100e2008-11-26 17:21:24 +0100903}
904
Joerg Roedelff217762011-08-26 16:48:26 +0200905/**
906 * bus_set_iommu - set iommu-callbacks for the bus
907 * @bus: bus.
908 * @ops: the callbacks provided by the iommu-driver
909 *
910 * This function is called by an iommu driver to set the iommu methods
911 * used for a particular bus. Drivers for devices on that bus can use
912 * the iommu-api after these ops are registered.
913 * This special function is needed because IOMMUs are usually devices on
914 * the bus itself, so the iommu drivers are not initialized when the bus
915 * is set up. With this function the iommu-driver can set the iommu-ops
916 * afterwards.
917 */
Thierry Redingb22f6432014-06-27 09:03:12 +0200918int bus_set_iommu(struct bus_type *bus, const struct iommu_ops *ops)
Joerg Roedelfc2100e2008-11-26 17:21:24 +0100919{
Heiko Stübnerd7da6bd2014-10-29 01:22:56 +0100920 int err;
921
Joerg Roedelff217762011-08-26 16:48:26 +0200922 if (bus->iommu_ops != NULL)
923 return -EBUSY;
Joerg Roedelfc2100e2008-11-26 17:21:24 +0100924
Joerg Roedelff217762011-08-26 16:48:26 +0200925 bus->iommu_ops = ops;
926
927 /* Do IOMMU specific setup for this bus-type */
Heiko Stübnerd7da6bd2014-10-29 01:22:56 +0100928 err = iommu_bus_init(bus, ops);
929 if (err)
930 bus->iommu_ops = NULL;
931
932 return err;
Joerg Roedelfc2100e2008-11-26 17:21:24 +0100933}
Joerg Roedelff217762011-08-26 16:48:26 +0200934EXPORT_SYMBOL_GPL(bus_set_iommu);
935
Joerg Roedela1b60c12011-09-06 18:46:34 +0200936bool iommu_present(struct bus_type *bus)
Joerg Roedelfc2100e2008-11-26 17:21:24 +0100937{
Joerg Roedel94441c32011-09-06 18:58:54 +0200938 return bus->iommu_ops != NULL;
Joerg Roedelfc2100e2008-11-26 17:21:24 +0100939}
Joerg Roedela1b60c12011-09-06 18:46:34 +0200940EXPORT_SYMBOL_GPL(iommu_present);
Joerg Roedelfc2100e2008-11-26 17:21:24 +0100941
Joerg Roedel3c0e0ca2014-09-03 18:47:25 +0200942bool iommu_capable(struct bus_type *bus, enum iommu_cap cap)
943{
944 if (!bus->iommu_ops || !bus->iommu_ops->capable)
945 return false;
946
947 return bus->iommu_ops->capable(cap);
948}
949EXPORT_SYMBOL_GPL(iommu_capable);
950
Ohad Ben-Cohen4f3f8d92011-09-13 15:25:23 -0400951/**
952 * iommu_set_fault_handler() - set a fault handler for an iommu domain
953 * @domain: iommu domain
954 * @handler: fault handler
Ohad Ben-Cohen77ca2332012-05-21 20:20:05 +0300955 * @token: user data, will be passed back to the fault handler
Ohad Ben-Cohen0ed6d2d2011-09-27 07:36:40 -0400956 *
957 * This function should be used by IOMMU users which want to be notified
958 * whenever an IOMMU fault happens.
959 *
960 * The fault handler itself should return 0 on success, and an appropriate
961 * error code otherwise.
Ohad Ben-Cohen4f3f8d92011-09-13 15:25:23 -0400962 */
963void iommu_set_fault_handler(struct iommu_domain *domain,
Ohad Ben-Cohen77ca2332012-05-21 20:20:05 +0300964 iommu_fault_handler_t handler,
965 void *token)
Ohad Ben-Cohen4f3f8d92011-09-13 15:25:23 -0400966{
967 BUG_ON(!domain);
968
969 domain->handler = handler;
Ohad Ben-Cohen77ca2332012-05-21 20:20:05 +0300970 domain->handler_token = token;
Ohad Ben-Cohen4f3f8d92011-09-13 15:25:23 -0400971}
Ohad Ben-Cohen30bd9182011-09-26 09:11:46 -0400972EXPORT_SYMBOL_GPL(iommu_set_fault_handler);
Ohad Ben-Cohen4f3f8d92011-09-13 15:25:23 -0400973
Joerg Roedel53723dc2015-05-28 18:41:29 +0200974static struct iommu_domain *__iommu_domain_alloc(struct bus_type *bus,
975 unsigned type)
Joerg Roedelfc2100e2008-11-26 17:21:24 +0100976{
977 struct iommu_domain *domain;
Joerg Roedelfc2100e2008-11-26 17:21:24 +0100978
Joerg Roedel94441c32011-09-06 18:58:54 +0200979 if (bus == NULL || bus->iommu_ops == NULL)
Joerg Roedel905d66c2011-09-06 16:03:26 +0200980 return NULL;
981
Joerg Roedel53723dc2015-05-28 18:41:29 +0200982 domain = bus->iommu_ops->domain_alloc(type);
Joerg Roedelfc2100e2008-11-26 17:21:24 +0100983 if (!domain)
984 return NULL;
985
Joerg Roedel8539c7c2015-03-26 13:43:05 +0100986 domain->ops = bus->iommu_ops;
Joerg Roedel53723dc2015-05-28 18:41:29 +0200987 domain->type = type;
Joerg Roedel905d66c2011-09-06 16:03:26 +0200988
Joerg Roedelfc2100e2008-11-26 17:21:24 +0100989 return domain;
Joerg Roedelfc2100e2008-11-26 17:21:24 +0100990}
Joerg Roedel53723dc2015-05-28 18:41:29 +0200991
992struct iommu_domain *iommu_domain_alloc(struct bus_type *bus)
993{
994 return __iommu_domain_alloc(bus, IOMMU_DOMAIN_UNMANAGED);
995}
Joerg Roedelfc2100e2008-11-26 17:21:24 +0100996EXPORT_SYMBOL_GPL(iommu_domain_alloc);
997
998void iommu_domain_free(struct iommu_domain *domain)
999{
Joerg Roedel89be34a2015-03-26 13:43:19 +01001000 domain->ops->domain_free(domain);
Joerg Roedelfc2100e2008-11-26 17:21:24 +01001001}
1002EXPORT_SYMBOL_GPL(iommu_domain_free);
1003
Joerg Roedel426a2732015-05-28 18:41:30 +02001004static int __iommu_attach_device(struct iommu_domain *domain,
1005 struct device *dev)
Joerg Roedelfc2100e2008-11-26 17:21:24 +01001006{
Shuah Khanb54db772013-08-15 11:59:26 -06001007 int ret;
Joerg Roedele5aa7f02011-09-06 16:44:29 +02001008 if (unlikely(domain->ops->attach_dev == NULL))
1009 return -ENODEV;
1010
Shuah Khanb54db772013-08-15 11:59:26 -06001011 ret = domain->ops->attach_dev(domain, dev);
1012 if (!ret)
1013 trace_attach_device_to_domain(dev);
1014 return ret;
Joerg Roedelfc2100e2008-11-26 17:21:24 +01001015}
Joerg Roedel426a2732015-05-28 18:41:30 +02001016
1017int iommu_attach_device(struct iommu_domain *domain, struct device *dev)
1018{
1019 struct iommu_group *group;
1020 int ret;
1021
1022 group = iommu_group_get(dev);
1023 /* FIXME: Remove this when groups a mandatory for iommu drivers */
1024 if (group == NULL)
1025 return __iommu_attach_device(domain, dev);
1026
1027 /*
1028 * We have a group - lock it to make sure the device-count doesn't
1029 * change while we are attaching
1030 */
1031 mutex_lock(&group->mutex);
1032 ret = -EINVAL;
1033 if (iommu_group_device_count(group) != 1)
1034 goto out_unlock;
1035
Joerg Roedele39cb8a2015-05-28 18:41:31 +02001036 ret = __iommu_attach_group(domain, group);
Joerg Roedel426a2732015-05-28 18:41:30 +02001037
1038out_unlock:
1039 mutex_unlock(&group->mutex);
1040 iommu_group_put(group);
1041
1042 return ret;
1043}
Joerg Roedelfc2100e2008-11-26 17:21:24 +01001044EXPORT_SYMBOL_GPL(iommu_attach_device);
1045
Joerg Roedel426a2732015-05-28 18:41:30 +02001046static void __iommu_detach_device(struct iommu_domain *domain,
1047 struct device *dev)
Joerg Roedelfc2100e2008-11-26 17:21:24 +01001048{
Joerg Roedele5aa7f02011-09-06 16:44:29 +02001049 if (unlikely(domain->ops->detach_dev == NULL))
1050 return;
1051
1052 domain->ops->detach_dev(domain, dev);
Shuah Khan69980632013-08-15 11:59:27 -06001053 trace_detach_device_from_domain(dev);
Joerg Roedelfc2100e2008-11-26 17:21:24 +01001054}
Joerg Roedel426a2732015-05-28 18:41:30 +02001055
1056void iommu_detach_device(struct iommu_domain *domain, struct device *dev)
1057{
1058 struct iommu_group *group;
1059
1060 group = iommu_group_get(dev);
1061 /* FIXME: Remove this when groups a mandatory for iommu drivers */
1062 if (group == NULL)
1063 return __iommu_detach_device(domain, dev);
1064
1065 mutex_lock(&group->mutex);
1066 if (iommu_group_device_count(group) != 1) {
1067 WARN_ON(1);
1068 goto out_unlock;
1069 }
1070
Joerg Roedele39cb8a2015-05-28 18:41:31 +02001071 __iommu_detach_group(domain, group);
Joerg Roedel426a2732015-05-28 18:41:30 +02001072
1073out_unlock:
1074 mutex_unlock(&group->mutex);
1075 iommu_group_put(group);
1076}
Joerg Roedelfc2100e2008-11-26 17:21:24 +01001077EXPORT_SYMBOL_GPL(iommu_detach_device);
1078
Joerg Roedel2c1296d2015-05-28 18:41:32 +02001079struct iommu_domain *iommu_get_domain_for_dev(struct device *dev)
1080{
1081 struct iommu_domain *domain;
1082 struct iommu_group *group;
1083
1084 group = iommu_group_get(dev);
1085 /* FIXME: Remove this when groups a mandatory for iommu drivers */
1086 if (group == NULL)
1087 return NULL;
1088
1089 domain = group->domain;
1090
1091 iommu_group_put(group);
1092
1093 return domain;
1094}
1095EXPORT_SYMBOL_GPL(iommu_get_domain_for_dev);
1096
Alex Williamsond72e31c2012-05-30 14:18:53 -06001097/*
1098 * IOMMU groups are really the natrual working unit of the IOMMU, but
1099 * the IOMMU API works on domains and devices. Bridge that gap by
1100 * iterating over the devices in a group. Ideally we'd have a single
1101 * device which represents the requestor ID of the group, but we also
1102 * allow IOMMU drivers to create policy defined minimum sets, where
1103 * the physical hardware may be able to distiguish members, but we
1104 * wish to group them at a higher level (ex. untrusted multi-function
1105 * PCI devices). Thus we attach each device.
1106 */
1107static int iommu_group_do_attach_device(struct device *dev, void *data)
1108{
1109 struct iommu_domain *domain = data;
1110
Joerg Roedel426a2732015-05-28 18:41:30 +02001111 return __iommu_attach_device(domain, dev);
Alex Williamsond72e31c2012-05-30 14:18:53 -06001112}
1113
Joerg Roedele39cb8a2015-05-28 18:41:31 +02001114static int __iommu_attach_group(struct iommu_domain *domain,
1115 struct iommu_group *group)
1116{
1117 int ret;
1118
1119 if (group->default_domain && group->domain != group->default_domain)
1120 return -EBUSY;
1121
1122 ret = __iommu_group_for_each_dev(group, domain,
1123 iommu_group_do_attach_device);
1124 if (ret == 0)
1125 group->domain = domain;
1126
1127 return ret;
1128}
1129
Alex Williamsond72e31c2012-05-30 14:18:53 -06001130int iommu_attach_group(struct iommu_domain *domain, struct iommu_group *group)
1131{
Joerg Roedele39cb8a2015-05-28 18:41:31 +02001132 int ret;
1133
1134 mutex_lock(&group->mutex);
1135 ret = __iommu_attach_group(domain, group);
1136 mutex_unlock(&group->mutex);
1137
1138 return ret;
Alex Williamsond72e31c2012-05-30 14:18:53 -06001139}
1140EXPORT_SYMBOL_GPL(iommu_attach_group);
1141
1142static int iommu_group_do_detach_device(struct device *dev, void *data)
1143{
1144 struct iommu_domain *domain = data;
1145
Joerg Roedel426a2732015-05-28 18:41:30 +02001146 __iommu_detach_device(domain, dev);
Alex Williamsond72e31c2012-05-30 14:18:53 -06001147
1148 return 0;
1149}
1150
Joerg Roedele39cb8a2015-05-28 18:41:31 +02001151static void __iommu_detach_group(struct iommu_domain *domain,
1152 struct iommu_group *group)
1153{
1154 int ret;
1155
1156 if (!group->default_domain) {
1157 __iommu_group_for_each_dev(group, domain,
1158 iommu_group_do_detach_device);
1159 group->domain = NULL;
1160 return;
1161 }
1162
1163 if (group->domain == group->default_domain)
1164 return;
1165
1166 /* Detach by re-attaching to the default domain */
1167 ret = __iommu_group_for_each_dev(group, group->default_domain,
1168 iommu_group_do_attach_device);
1169 if (ret != 0)
1170 WARN_ON(1);
1171 else
1172 group->domain = group->default_domain;
1173}
1174
Alex Williamsond72e31c2012-05-30 14:18:53 -06001175void iommu_detach_group(struct iommu_domain *domain, struct iommu_group *group)
1176{
Joerg Roedele39cb8a2015-05-28 18:41:31 +02001177 mutex_lock(&group->mutex);
1178 __iommu_detach_group(domain, group);
1179 mutex_unlock(&group->mutex);
Alex Williamsond72e31c2012-05-30 14:18:53 -06001180}
1181EXPORT_SYMBOL_GPL(iommu_detach_group);
1182
Varun Sethibb5547ac2013-03-29 01:23:58 +05301183phys_addr_t iommu_iova_to_phys(struct iommu_domain *domain, dma_addr_t iova)
Joerg Roedelfc2100e2008-11-26 17:21:24 +01001184{
Joerg Roedele5aa7f02011-09-06 16:44:29 +02001185 if (unlikely(domain->ops->iova_to_phys == NULL))
1186 return 0;
1187
1188 return domain->ops->iova_to_phys(domain, iova);
Joerg Roedelfc2100e2008-11-26 17:21:24 +01001189}
1190EXPORT_SYMBOL_GPL(iommu_iova_to_phys);
Sheng Yangdbb9fd82009-03-18 15:33:06 +08001191
Alex Williamsonbd139692013-06-17 19:57:34 -06001192static size_t iommu_pgsize(struct iommu_domain *domain,
1193 unsigned long addr_merge, size_t size)
1194{
1195 unsigned int pgsize_idx;
1196 size_t pgsize;
1197
1198 /* Max page size that still fits into 'size' */
1199 pgsize_idx = __fls(size);
1200
1201 /* need to consider alignment requirements ? */
1202 if (likely(addr_merge)) {
1203 /* Max page size allowed by address */
1204 unsigned int align_pgsize_idx = __ffs(addr_merge);
1205 pgsize_idx = min(pgsize_idx, align_pgsize_idx);
1206 }
1207
1208 /* build a mask of acceptable page sizes */
1209 pgsize = (1UL << (pgsize_idx + 1)) - 1;
1210
1211 /* throw away page sizes not supported by the hardware */
1212 pgsize &= domain->ops->pgsize_bitmap;
1213
1214 /* make sure we're still sane */
1215 BUG_ON(!pgsize);
1216
1217 /* pick the biggest page */
1218 pgsize_idx = __fls(pgsize);
1219 pgsize = 1UL << pgsize_idx;
1220
1221 return pgsize;
1222}
1223
Joerg Roedelcefc53c2010-01-08 13:35:09 +01001224int iommu_map(struct iommu_domain *domain, unsigned long iova,
Ohad Ben-Cohen7d3002c2011-11-10 11:32:26 +02001225 phys_addr_t paddr, size_t size, int prot)
Joerg Roedelcefc53c2010-01-08 13:35:09 +01001226{
Ohad Ben-Cohen7d3002c2011-11-10 11:32:26 +02001227 unsigned long orig_iova = iova;
1228 unsigned int min_pagesz;
1229 size_t orig_size = size;
1230 int ret = 0;
Joerg Roedelcefc53c2010-01-08 13:35:09 +01001231
Joerg Roedel9db4ad92014-08-19 00:19:26 +02001232 if (unlikely(domain->ops->map == NULL ||
Joerg Roedel57886512013-01-29 13:41:09 +01001233 domain->ops->pgsize_bitmap == 0UL))
Joerg Roedele5aa7f02011-09-06 16:44:29 +02001234 return -ENODEV;
Joerg Roedelcefc53c2010-01-08 13:35:09 +01001235
Joerg Roedela10315e2015-03-26 13:43:06 +01001236 if (unlikely(!(domain->type & __IOMMU_DOMAIN_PAGING)))
1237 return -EINVAL;
1238
Ohad Ben-Cohen7d3002c2011-11-10 11:32:26 +02001239 /* find out the minimum page size supported */
1240 min_pagesz = 1 << __ffs(domain->ops->pgsize_bitmap);
Joerg Roedelcefc53c2010-01-08 13:35:09 +01001241
Ohad Ben-Cohen7d3002c2011-11-10 11:32:26 +02001242 /*
1243 * both the virtual address and the physical one, as well as
1244 * the size of the mapping, must be aligned (at least) to the
1245 * size of the smallest page supported by the hardware
1246 */
1247 if (!IS_ALIGNED(iova | paddr | size, min_pagesz)) {
Fabio Estevamabedb042013-08-22 10:25:42 -03001248 pr_err("unaligned: iova 0x%lx pa %pa size 0x%zx min_pagesz 0x%x\n",
Joe Perches6197ca82013-06-23 12:29:04 -07001249 iova, &paddr, size, min_pagesz);
Ohad Ben-Cohen7d3002c2011-11-10 11:32:26 +02001250 return -EINVAL;
1251 }
Joerg Roedelcefc53c2010-01-08 13:35:09 +01001252
Fabio Estevamabedb042013-08-22 10:25:42 -03001253 pr_debug("map: iova 0x%lx pa %pa size 0x%zx\n", iova, &paddr, size);
Ohad Ben-Cohen7d3002c2011-11-10 11:32:26 +02001254
1255 while (size) {
Alex Williamsonbd139692013-06-17 19:57:34 -06001256 size_t pgsize = iommu_pgsize(domain, iova | paddr, size);
Ohad Ben-Cohen7d3002c2011-11-10 11:32:26 +02001257
Fabio Estevamabedb042013-08-22 10:25:42 -03001258 pr_debug("mapping: iova 0x%lx pa %pa pgsize 0x%zx\n",
Joe Perches6197ca82013-06-23 12:29:04 -07001259 iova, &paddr, pgsize);
Ohad Ben-Cohen7d3002c2011-11-10 11:32:26 +02001260
1261 ret = domain->ops->map(domain, iova, paddr, pgsize, prot);
1262 if (ret)
1263 break;
1264
1265 iova += pgsize;
1266 paddr += pgsize;
1267 size -= pgsize;
1268 }
1269
1270 /* unroll mapping in case something went wrong */
1271 if (ret)
1272 iommu_unmap(domain, orig_iova, orig_size - size);
Shuah Khane0be7c82013-08-15 11:59:28 -06001273 else
Shuah Khan860cd642015-01-15 19:29:43 -07001274 trace_map(orig_iova, paddr, orig_size);
Ohad Ben-Cohen7d3002c2011-11-10 11:32:26 +02001275
1276 return ret;
Joerg Roedelcefc53c2010-01-08 13:35:09 +01001277}
1278EXPORT_SYMBOL_GPL(iommu_map);
1279
Ohad Ben-Cohen7d3002c2011-11-10 11:32:26 +02001280size_t iommu_unmap(struct iommu_domain *domain, unsigned long iova, size_t size)
Joerg Roedelcefc53c2010-01-08 13:35:09 +01001281{
Ohad Ben-Cohen7d3002c2011-11-10 11:32:26 +02001282 size_t unmapped_page, unmapped = 0;
1283 unsigned int min_pagesz;
Shuah Khan6fd492f2015-01-16 16:47:19 -07001284 unsigned long orig_iova = iova;
Joerg Roedelcefc53c2010-01-08 13:35:09 +01001285
Joerg Roedel57886512013-01-29 13:41:09 +01001286 if (unlikely(domain->ops->unmap == NULL ||
1287 domain->ops->pgsize_bitmap == 0UL))
Joerg Roedele5aa7f02011-09-06 16:44:29 +02001288 return -ENODEV;
Joerg Roedelcefc53c2010-01-08 13:35:09 +01001289
Joerg Roedela10315e2015-03-26 13:43:06 +01001290 if (unlikely(!(domain->type & __IOMMU_DOMAIN_PAGING)))
1291 return -EINVAL;
1292
Ohad Ben-Cohen7d3002c2011-11-10 11:32:26 +02001293 /* find out the minimum page size supported */
1294 min_pagesz = 1 << __ffs(domain->ops->pgsize_bitmap);
Joerg Roedelcefc53c2010-01-08 13:35:09 +01001295
Ohad Ben-Cohen7d3002c2011-11-10 11:32:26 +02001296 /*
1297 * The virtual address, as well as the size of the mapping, must be
1298 * aligned (at least) to the size of the smallest page supported
1299 * by the hardware
1300 */
1301 if (!IS_ALIGNED(iova | size, min_pagesz)) {
Joe Perches6197ca82013-06-23 12:29:04 -07001302 pr_err("unaligned: iova 0x%lx size 0x%zx min_pagesz 0x%x\n",
1303 iova, size, min_pagesz);
Ohad Ben-Cohen7d3002c2011-11-10 11:32:26 +02001304 return -EINVAL;
1305 }
Joerg Roedelcefc53c2010-01-08 13:35:09 +01001306
Joe Perches6197ca82013-06-23 12:29:04 -07001307 pr_debug("unmap this: iova 0x%lx size 0x%zx\n", iova, size);
Ohad Ben-Cohen50090652011-11-10 11:32:25 +02001308
Ohad Ben-Cohen7d3002c2011-11-10 11:32:26 +02001309 /*
1310 * Keep iterating until we either unmap 'size' bytes (or more)
1311 * or we hit an area that isn't mapped.
1312 */
1313 while (unmapped < size) {
Alex Williamsonbd139692013-06-17 19:57:34 -06001314 size_t pgsize = iommu_pgsize(domain, iova, size - unmapped);
Ohad Ben-Cohen7d3002c2011-11-10 11:32:26 +02001315
Alex Williamsonbd139692013-06-17 19:57:34 -06001316 unmapped_page = domain->ops->unmap(domain, iova, pgsize);
Ohad Ben-Cohen7d3002c2011-11-10 11:32:26 +02001317 if (!unmapped_page)
1318 break;
1319
Joe Perches6197ca82013-06-23 12:29:04 -07001320 pr_debug("unmapped: iova 0x%lx size 0x%zx\n",
1321 iova, unmapped_page);
Ohad Ben-Cohen7d3002c2011-11-10 11:32:26 +02001322
1323 iova += unmapped_page;
1324 unmapped += unmapped_page;
1325 }
1326
Shuah Khandb8614d2015-01-16 20:53:17 -07001327 trace_unmap(orig_iova, size, unmapped);
Ohad Ben-Cohen7d3002c2011-11-10 11:32:26 +02001328 return unmapped;
Joerg Roedelcefc53c2010-01-08 13:35:09 +01001329}
1330EXPORT_SYMBOL_GPL(iommu_unmap);
Alex Williamson14604322011-10-21 15:56:05 -04001331
Olav Haugan315786e2014-10-25 09:55:16 -07001332size_t default_iommu_map_sg(struct iommu_domain *domain, unsigned long iova,
1333 struct scatterlist *sg, unsigned int nents, int prot)
1334{
Joerg Roedel38ec0102014-11-04 14:53:51 +01001335 struct scatterlist *s;
Olav Haugan315786e2014-10-25 09:55:16 -07001336 size_t mapped = 0;
Robin Murphy18f23402014-11-25 17:50:55 +00001337 unsigned int i, min_pagesz;
Joerg Roedel38ec0102014-11-04 14:53:51 +01001338 int ret;
Olav Haugan315786e2014-10-25 09:55:16 -07001339
Robin Murphy18f23402014-11-25 17:50:55 +00001340 if (unlikely(domain->ops->pgsize_bitmap == 0UL))
1341 return 0;
Olav Haugan315786e2014-10-25 09:55:16 -07001342
Robin Murphy18f23402014-11-25 17:50:55 +00001343 min_pagesz = 1 << __ffs(domain->ops->pgsize_bitmap);
1344
1345 for_each_sg(sg, s, nents, i) {
1346 phys_addr_t phys = page_to_phys(sg_page(s)) + s->offset;
1347
1348 /*
1349 * We are mapping on IOMMU page boundaries, so offset within
1350 * the page must be 0. However, the IOMMU may support pages
1351 * smaller than PAGE_SIZE, so s->offset may still represent
1352 * an offset of that boundary within the CPU page.
1353 */
1354 if (!IS_ALIGNED(s->offset, min_pagesz))
Joerg Roedel38ec0102014-11-04 14:53:51 +01001355 goto out_err;
1356
1357 ret = iommu_map(domain, iova + mapped, phys, s->length, prot);
1358 if (ret)
1359 goto out_err;
1360
1361 mapped += s->length;
Olav Haugan315786e2014-10-25 09:55:16 -07001362 }
1363
1364 return mapped;
Joerg Roedel38ec0102014-11-04 14:53:51 +01001365
1366out_err:
1367 /* undo mappings already done */
1368 iommu_unmap(domain, iova, mapped);
1369
1370 return 0;
1371
Olav Haugan315786e2014-10-25 09:55:16 -07001372}
1373EXPORT_SYMBOL_GPL(default_iommu_map_sg);
Joerg Roedeld7787d52013-01-29 14:26:20 +01001374
1375int iommu_domain_window_enable(struct iommu_domain *domain, u32 wnd_nr,
Varun Sethi80f97f02013-03-29 01:24:00 +05301376 phys_addr_t paddr, u64 size, int prot)
Joerg Roedeld7787d52013-01-29 14:26:20 +01001377{
1378 if (unlikely(domain->ops->domain_window_enable == NULL))
1379 return -ENODEV;
1380
Varun Sethi80f97f02013-03-29 01:24:00 +05301381 return domain->ops->domain_window_enable(domain, wnd_nr, paddr, size,
1382 prot);
Joerg Roedeld7787d52013-01-29 14:26:20 +01001383}
1384EXPORT_SYMBOL_GPL(iommu_domain_window_enable);
1385
1386void iommu_domain_window_disable(struct iommu_domain *domain, u32 wnd_nr)
1387{
1388 if (unlikely(domain->ops->domain_window_disable == NULL))
1389 return;
1390
1391 return domain->ops->domain_window_disable(domain, wnd_nr);
1392}
1393EXPORT_SYMBOL_GPL(iommu_domain_window_disable);
1394
Alex Williamsond72e31c2012-05-30 14:18:53 -06001395static int __init iommu_init(void)
Alex Williamson14604322011-10-21 15:56:05 -04001396{
Alex Williamsond72e31c2012-05-30 14:18:53 -06001397 iommu_group_kset = kset_create_and_add("iommu_groups",
1398 NULL, kernel_kobj);
1399 ida_init(&iommu_group_ida);
1400 mutex_init(&iommu_group_mutex);
Alex Williamson14604322011-10-21 15:56:05 -04001401
Alex Williamsond72e31c2012-05-30 14:18:53 -06001402 BUG_ON(!iommu_group_kset);
1403
1404 return 0;
Alex Williamson14604322011-10-21 15:56:05 -04001405}
Alexey Kardashevskiy097e3632013-01-07 18:51:52 +11001406arch_initcall(iommu_init);
Joerg Roedel0cd76dd2012-01-26 19:40:52 +01001407
1408int iommu_domain_get_attr(struct iommu_domain *domain,
1409 enum iommu_attr attr, void *data)
1410{
Joerg Roedel0ff64f82012-01-26 19:40:53 +01001411 struct iommu_domain_geometry *geometry;
Joerg Roedeld2e12162013-01-29 13:49:04 +01001412 bool *paging;
Joerg Roedel0ff64f82012-01-26 19:40:53 +01001413 int ret = 0;
Joerg Roedel69356712013-02-04 14:00:01 +01001414 u32 *count;
Joerg Roedel0cd76dd2012-01-26 19:40:52 +01001415
Joerg Roedel0ff64f82012-01-26 19:40:53 +01001416 switch (attr) {
1417 case DOMAIN_ATTR_GEOMETRY:
1418 geometry = data;
1419 *geometry = domain->geometry;
1420
1421 break;
Joerg Roedeld2e12162013-01-29 13:49:04 +01001422 case DOMAIN_ATTR_PAGING:
1423 paging = data;
1424 *paging = (domain->ops->pgsize_bitmap != 0UL);
1425 break;
Joerg Roedel69356712013-02-04 14:00:01 +01001426 case DOMAIN_ATTR_WINDOWS:
1427 count = data;
1428
1429 if (domain->ops->domain_get_windows != NULL)
1430 *count = domain->ops->domain_get_windows(domain);
1431 else
1432 ret = -ENODEV;
1433
1434 break;
Joerg Roedel0ff64f82012-01-26 19:40:53 +01001435 default:
1436 if (!domain->ops->domain_get_attr)
1437 return -EINVAL;
1438
1439 ret = domain->ops->domain_get_attr(domain, attr, data);
1440 }
1441
1442 return ret;
Joerg Roedel0cd76dd2012-01-26 19:40:52 +01001443}
1444EXPORT_SYMBOL_GPL(iommu_domain_get_attr);
1445
1446int iommu_domain_set_attr(struct iommu_domain *domain,
1447 enum iommu_attr attr, void *data)
1448{
Joerg Roedel69356712013-02-04 14:00:01 +01001449 int ret = 0;
1450 u32 *count;
Joerg Roedel0cd76dd2012-01-26 19:40:52 +01001451
Joerg Roedel69356712013-02-04 14:00:01 +01001452 switch (attr) {
1453 case DOMAIN_ATTR_WINDOWS:
1454 count = data;
1455
1456 if (domain->ops->domain_set_windows != NULL)
1457 ret = domain->ops->domain_set_windows(domain, *count);
1458 else
1459 ret = -ENODEV;
1460
1461 break;
1462 default:
1463 if (domain->ops->domain_set_attr == NULL)
1464 return -EINVAL;
1465
1466 ret = domain->ops->domain_set_attr(domain, attr, data);
1467 }
1468
1469 return ret;
Joerg Roedel0cd76dd2012-01-26 19:40:52 +01001470}
1471EXPORT_SYMBOL_GPL(iommu_domain_set_attr);
Joerg Roedela1015c22015-05-28 18:41:33 +02001472
1473void iommu_get_dm_regions(struct device *dev, struct list_head *list)
1474{
1475 const struct iommu_ops *ops = dev->bus->iommu_ops;
1476
1477 if (ops && ops->get_dm_regions)
1478 ops->get_dm_regions(dev, list);
1479}
1480
1481void iommu_put_dm_regions(struct device *dev, struct list_head *list)
1482{
1483 const struct iommu_ops *ops = dev->bus->iommu_ops;
1484
1485 if (ops && ops->put_dm_regions)
1486 ops->put_dm_regions(dev, list);
1487}