Joerg Roedel | fc2100e | 2008-11-26 17:21:24 +0100 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2007-2008 Advanced Micro Devices, Inc. |
Joerg Roedel | 63ce3ae | 2015-02-04 16:12:55 +0100 | [diff] [blame] | 3 | * Author: Joerg Roedel <jroedel@suse.de> |
Joerg Roedel | fc2100e | 2008-11-26 17:21:24 +0100 | [diff] [blame] | 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 | |
Joerg Roedel | 92e7066 | 2015-05-28 18:41:24 +0200 | [diff] [blame] | 19 | #define pr_fmt(fmt) "iommu: " fmt |
Ohad Ben-Cohen | 7d3002c | 2011-11-10 11:32:26 +0200 | [diff] [blame] | 20 | |
Joerg Roedel | 905d66c | 2011-09-06 16:03:26 +0200 | [diff] [blame] | 21 | #include <linux/device.h> |
Ohad Ben-Cohen | 4099818 | 2011-09-02 13:32:32 -0400 | [diff] [blame] | 22 | #include <linux/kernel.h> |
Joerg Roedel | fc2100e | 2008-11-26 17:21:24 +0100 | [diff] [blame] | 23 | #include <linux/bug.h> |
| 24 | #include <linux/types.h> |
Andrew Morton | 60db402 | 2009-05-06 16:03:07 -0700 | [diff] [blame] | 25 | #include <linux/module.h> |
| 26 | #include <linux/slab.h> |
Joerg Roedel | fc2100e | 2008-11-26 17:21:24 +0100 | [diff] [blame] | 27 | #include <linux/errno.h> |
| 28 | #include <linux/iommu.h> |
Alex Williamson | d72e31c | 2012-05-30 14:18:53 -0600 | [diff] [blame] | 29 | #include <linux/idr.h> |
| 30 | #include <linux/notifier.h> |
| 31 | #include <linux/err.h> |
Alex Williamson | 104a1c1 | 2014-07-03 09:51:18 -0600 | [diff] [blame] | 32 | #include <linux/pci.h> |
Alex Williamson | f096c06 | 2014-09-19 10:03:06 -0600 | [diff] [blame] | 33 | #include <linux/bitops.h> |
Shuah Khan | 7f6db17 | 2013-08-15 11:59:23 -0600 | [diff] [blame] | 34 | #include <trace/events/iommu.h> |
Joerg Roedel | fc2100e | 2008-11-26 17:21:24 +0100 | [diff] [blame] | 35 | |
Alex Williamson | d72e31c | 2012-05-30 14:18:53 -0600 | [diff] [blame] | 36 | static struct kset *iommu_group_kset; |
| 37 | static struct ida iommu_group_ida; |
| 38 | static struct mutex iommu_group_mutex; |
| 39 | |
Thierry Reding | b22f643 | 2014-06-27 09:03:12 +0200 | [diff] [blame] | 40 | struct iommu_callback_data { |
| 41 | const struct iommu_ops *ops; |
| 42 | }; |
| 43 | |
Alex Williamson | d72e31c | 2012-05-30 14:18:53 -0600 | [diff] [blame] | 44 | struct 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 Roedel | 53723dc | 2015-05-28 18:41:29 +0200 | [diff] [blame] | 54 | struct iommu_domain *default_domain; |
Joerg Roedel | e39cb8a | 2015-05-28 18:41:31 +0200 | [diff] [blame] | 55 | struct iommu_domain *domain; |
Alex Williamson | d72e31c | 2012-05-30 14:18:53 -0600 | [diff] [blame] | 56 | }; |
| 57 | |
| 58 | struct iommu_device { |
| 59 | struct list_head list; |
| 60 | struct device *dev; |
| 61 | char *name; |
| 62 | }; |
| 63 | |
| 64 | struct 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) \ |
| 72 | struct 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 Roedel | 53723dc | 2015-05-28 18:41:29 +0200 | [diff] [blame] | 80 | static struct iommu_domain *__iommu_domain_alloc(struct bus_type *bus, |
| 81 | unsigned type); |
Joerg Roedel | e39cb8a | 2015-05-28 18:41:31 +0200 | [diff] [blame] | 82 | static int __iommu_attach_device(struct iommu_domain *domain, |
| 83 | struct device *dev); |
| 84 | static int __iommu_attach_group(struct iommu_domain *domain, |
| 85 | struct iommu_group *group); |
| 86 | static void __iommu_detach_group(struct iommu_domain *domain, |
| 87 | struct iommu_group *group); |
Joerg Roedel | 53723dc | 2015-05-28 18:41:29 +0200 | [diff] [blame] | 88 | |
Alex Williamson | d72e31c | 2012-05-30 14:18:53 -0600 | [diff] [blame] | 89 | static ssize_t iommu_group_attr_show(struct kobject *kobj, |
| 90 | struct attribute *__attr, char *buf) |
Alex Williamson | 1460432 | 2011-10-21 15:56:05 -0400 | [diff] [blame] | 91 | { |
Alex Williamson | d72e31c | 2012-05-30 14:18:53 -0600 | [diff] [blame] | 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; |
Alex Williamson | 1460432 | 2011-10-21 15:56:05 -0400 | [diff] [blame] | 95 | |
Alex Williamson | d72e31c | 2012-05-30 14:18:53 -0600 | [diff] [blame] | 96 | if (attr->show) |
| 97 | ret = attr->show(group, buf); |
| 98 | return ret; |
Alex Williamson | 1460432 | 2011-10-21 15:56:05 -0400 | [diff] [blame] | 99 | } |
Alex Williamson | d72e31c | 2012-05-30 14:18:53 -0600 | [diff] [blame] | 100 | |
| 101 | static 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 | |
| 114 | static const struct sysfs_ops iommu_group_sysfs_ops = { |
| 115 | .show = iommu_group_attr_show, |
| 116 | .store = iommu_group_attr_store, |
| 117 | }; |
| 118 | |
| 119 | static 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 | |
| 125 | static 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 | |
| 131 | static ssize_t iommu_group_show_name(struct iommu_group *group, char *buf) |
| 132 | { |
| 133 | return sprintf(buf, "%s\n", group->name); |
| 134 | } |
| 135 | |
| 136 | static IOMMU_GROUP_ATTR(name, S_IRUGO, iommu_group_show_name, NULL); |
| 137 | |
| 138 | static void iommu_group_release(struct kobject *kobj) |
| 139 | { |
| 140 | struct iommu_group *group = to_iommu_group(kobj); |
| 141 | |
Joerg Roedel | 269aa80 | 2015-05-28 18:41:25 +0200 | [diff] [blame] | 142 | pr_debug("Releasing group %d\n", group->id); |
| 143 | |
Alex Williamson | d72e31c | 2012-05-30 14:18:53 -0600 | [diff] [blame] | 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 | |
Joerg Roedel | 53723dc | 2015-05-28 18:41:29 +0200 | [diff] [blame] | 151 | if (group->default_domain) |
| 152 | iommu_domain_free(group->default_domain); |
| 153 | |
Alex Williamson | d72e31c | 2012-05-30 14:18:53 -0600 | [diff] [blame] | 154 | kfree(group->name); |
| 155 | kfree(group); |
| 156 | } |
| 157 | |
| 158 | static 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 | */ |
| 175 | struct 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 | |
| 191 | again: |
| 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 Roedel | 269aa80 | 2015-05-28 18:41:25 +0200 | [diff] [blame] | 226 | pr_debug("Allocated group %d\n", group->id); |
| 227 | |
Alex Williamson | d72e31c | 2012-05-30 14:18:53 -0600 | [diff] [blame] | 228 | return group; |
| 229 | } |
| 230 | EXPORT_SYMBOL_GPL(iommu_group_alloc); |
| 231 | |
Alexey Kardashevskiy | aa16bea | 2013-03-25 10:23:49 +1100 | [diff] [blame] | 232 | struct 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 | } |
| 259 | EXPORT_SYMBOL_GPL(iommu_group_get_by_id); |
| 260 | |
Alex Williamson | d72e31c | 2012-05-30 14:18:53 -0600 | [diff] [blame] | 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 | */ |
| 269 | void *iommu_group_get_iommudata(struct iommu_group *group) |
| 270 | { |
| 271 | return group->iommu_data; |
| 272 | } |
| 273 | EXPORT_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 | */ |
| 285 | void 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 | } |
| 291 | EXPORT_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 | */ |
| 301 | int 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 | } |
| 326 | EXPORT_SYMBOL_GPL(iommu_group_set_name); |
| 327 | |
Joerg Roedel | beed282 | 2015-05-28 18:41:34 +0200 | [diff] [blame] | 328 | static 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 | |
| 368 | out: |
| 369 | iommu_put_dm_regions(dev, &mappings); |
| 370 | |
| 371 | return ret; |
| 372 | } |
| 373 | |
Alex Williamson | d72e31c | 2012-05-30 14:18:53 -0600 | [diff] [blame] | 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 | */ |
| 382 | int iommu_group_add_device(struct iommu_group *group, struct device *dev) |
| 383 | { |
| 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; |
| 392 | |
| 393 | ret = sysfs_create_link(&dev->kobj, &group->kobj, "iommu_group"); |
| 394 | if (ret) { |
| 395 | kfree(device); |
| 396 | return ret; |
| 397 | } |
| 398 | |
| 399 | device->name = kasprintf(GFP_KERNEL, "%s", kobject_name(&dev->kobj)); |
| 400 | rename: |
| 401 | if (!device->name) { |
| 402 | sysfs_remove_link(&dev->kobj, "iommu_group"); |
| 403 | kfree(device); |
| 404 | return -ENOMEM; |
| 405 | } |
| 406 | |
| 407 | ret = sysfs_create_link_nowarn(group->devices_kobj, |
| 408 | &dev->kobj, device->name); |
| 409 | if (ret) { |
| 410 | kfree(device->name); |
| 411 | if (ret == -EEXIST && i >= 0) { |
| 412 | /* |
| 413 | * Account for the slim chance of collision |
| 414 | * and append an instance to the name. |
| 415 | */ |
| 416 | device->name = kasprintf(GFP_KERNEL, "%s.%d", |
| 417 | kobject_name(&dev->kobj), i++); |
| 418 | goto rename; |
| 419 | } |
| 420 | |
| 421 | sysfs_remove_link(&dev->kobj, "iommu_group"); |
| 422 | kfree(device); |
| 423 | return ret; |
| 424 | } |
| 425 | |
| 426 | kobject_get(group->devices_kobj); |
| 427 | |
| 428 | dev->iommu_group = group; |
| 429 | |
Joerg Roedel | beed282 | 2015-05-28 18:41:34 +0200 | [diff] [blame] | 430 | iommu_group_create_direct_mappings(group, dev); |
| 431 | |
Alex Williamson | d72e31c | 2012-05-30 14:18:53 -0600 | [diff] [blame] | 432 | mutex_lock(&group->mutex); |
| 433 | list_add_tail(&device->list, &group->devices); |
Joerg Roedel | e39cb8a | 2015-05-28 18:41:31 +0200 | [diff] [blame] | 434 | if (group->domain) |
| 435 | __iommu_attach_device(group->domain, dev); |
Alex Williamson | d72e31c | 2012-05-30 14:18:53 -0600 | [diff] [blame] | 436 | mutex_unlock(&group->mutex); |
| 437 | |
| 438 | /* Notify any listeners about change to group. */ |
| 439 | blocking_notifier_call_chain(&group->notifier, |
| 440 | IOMMU_GROUP_NOTIFY_ADD_DEVICE, dev); |
Shuah Khan | d1cf7e8 | 2013-08-15 11:59:24 -0600 | [diff] [blame] | 441 | |
| 442 | trace_add_device_to_group(group->id, dev); |
Joerg Roedel | 269aa80 | 2015-05-28 18:41:25 +0200 | [diff] [blame] | 443 | |
| 444 | pr_info("Adding device %s to group %d\n", dev_name(dev), group->id); |
| 445 | |
Alex Williamson | d72e31c | 2012-05-30 14:18:53 -0600 | [diff] [blame] | 446 | return 0; |
| 447 | } |
| 448 | EXPORT_SYMBOL_GPL(iommu_group_add_device); |
| 449 | |
| 450 | /** |
| 451 | * iommu_group_remove_device - remove a device from it's current group |
| 452 | * @dev: device to be removed |
| 453 | * |
| 454 | * This function is called by an iommu driver to remove the device from |
| 455 | * it's current group. This decrements the iommu group reference count. |
| 456 | */ |
| 457 | void iommu_group_remove_device(struct device *dev) |
| 458 | { |
| 459 | struct iommu_group *group = dev->iommu_group; |
| 460 | struct iommu_device *tmp_device, *device = NULL; |
| 461 | |
Joerg Roedel | 269aa80 | 2015-05-28 18:41:25 +0200 | [diff] [blame] | 462 | pr_info("Removing device %s from group %d\n", dev_name(dev), group->id); |
| 463 | |
Alex Williamson | d72e31c | 2012-05-30 14:18:53 -0600 | [diff] [blame] | 464 | /* Pre-notify listeners that a device is being removed. */ |
| 465 | blocking_notifier_call_chain(&group->notifier, |
| 466 | IOMMU_GROUP_NOTIFY_DEL_DEVICE, dev); |
| 467 | |
| 468 | mutex_lock(&group->mutex); |
| 469 | list_for_each_entry(tmp_device, &group->devices, list) { |
| 470 | if (tmp_device->dev == dev) { |
| 471 | device = tmp_device; |
| 472 | list_del(&device->list); |
| 473 | break; |
| 474 | } |
| 475 | } |
| 476 | mutex_unlock(&group->mutex); |
| 477 | |
| 478 | if (!device) |
| 479 | return; |
| 480 | |
| 481 | sysfs_remove_link(group->devices_kobj, device->name); |
| 482 | sysfs_remove_link(&dev->kobj, "iommu_group"); |
| 483 | |
Shuah Khan | 2e75708 | 2013-08-15 11:59:25 -0600 | [diff] [blame] | 484 | trace_remove_device_from_group(group->id, dev); |
| 485 | |
Alex Williamson | d72e31c | 2012-05-30 14:18:53 -0600 | [diff] [blame] | 486 | kfree(device->name); |
| 487 | kfree(device); |
| 488 | dev->iommu_group = NULL; |
| 489 | kobject_put(group->devices_kobj); |
| 490 | } |
| 491 | EXPORT_SYMBOL_GPL(iommu_group_remove_device); |
| 492 | |
Joerg Roedel | 426a273 | 2015-05-28 18:41:30 +0200 | [diff] [blame] | 493 | static int iommu_group_device_count(struct iommu_group *group) |
| 494 | { |
| 495 | struct iommu_device *entry; |
| 496 | int ret = 0; |
| 497 | |
| 498 | list_for_each_entry(entry, &group->devices, list) |
| 499 | ret++; |
| 500 | |
| 501 | return ret; |
| 502 | } |
| 503 | |
Alex Williamson | d72e31c | 2012-05-30 14:18:53 -0600 | [diff] [blame] | 504 | /** |
| 505 | * iommu_group_for_each_dev - iterate over each device in the group |
| 506 | * @group: the group |
| 507 | * @data: caller opaque data to be passed to callback function |
| 508 | * @fn: caller supplied callback function |
| 509 | * |
| 510 | * This function is called by group users to iterate over group devices. |
| 511 | * Callers should hold a reference count to the group during callback. |
| 512 | * The group->mutex is held across callbacks, which will block calls to |
| 513 | * iommu_group_add/remove_device. |
| 514 | */ |
Joerg Roedel | e39cb8a | 2015-05-28 18:41:31 +0200 | [diff] [blame] | 515 | static int __iommu_group_for_each_dev(struct iommu_group *group, void *data, |
| 516 | int (*fn)(struct device *, void *)) |
Alex Williamson | d72e31c | 2012-05-30 14:18:53 -0600 | [diff] [blame] | 517 | { |
| 518 | struct iommu_device *device; |
| 519 | int ret = 0; |
| 520 | |
Alex Williamson | d72e31c | 2012-05-30 14:18:53 -0600 | [diff] [blame] | 521 | list_for_each_entry(device, &group->devices, list) { |
| 522 | ret = fn(device->dev, data); |
| 523 | if (ret) |
| 524 | break; |
| 525 | } |
Joerg Roedel | e39cb8a | 2015-05-28 18:41:31 +0200 | [diff] [blame] | 526 | return ret; |
| 527 | } |
| 528 | |
| 529 | |
| 530 | int iommu_group_for_each_dev(struct iommu_group *group, void *data, |
| 531 | int (*fn)(struct device *, void *)) |
| 532 | { |
| 533 | int ret; |
| 534 | |
| 535 | mutex_lock(&group->mutex); |
| 536 | ret = __iommu_group_for_each_dev(group, data, fn); |
Alex Williamson | d72e31c | 2012-05-30 14:18:53 -0600 | [diff] [blame] | 537 | mutex_unlock(&group->mutex); |
Joerg Roedel | e39cb8a | 2015-05-28 18:41:31 +0200 | [diff] [blame] | 538 | |
Alex Williamson | d72e31c | 2012-05-30 14:18:53 -0600 | [diff] [blame] | 539 | return ret; |
| 540 | } |
| 541 | EXPORT_SYMBOL_GPL(iommu_group_for_each_dev); |
| 542 | |
| 543 | /** |
| 544 | * iommu_group_get - Return the group for a device and increment reference |
| 545 | * @dev: get the group that this device belongs to |
| 546 | * |
| 547 | * This function is called by iommu drivers and users to get the group |
| 548 | * for the specified device. If found, the group is returned and the group |
| 549 | * reference in incremented, else NULL. |
| 550 | */ |
| 551 | struct iommu_group *iommu_group_get(struct device *dev) |
| 552 | { |
| 553 | struct iommu_group *group = dev->iommu_group; |
| 554 | |
| 555 | if (group) |
| 556 | kobject_get(group->devices_kobj); |
| 557 | |
| 558 | return group; |
| 559 | } |
| 560 | EXPORT_SYMBOL_GPL(iommu_group_get); |
| 561 | |
| 562 | /** |
| 563 | * iommu_group_put - Decrement group reference |
| 564 | * @group: the group to use |
| 565 | * |
| 566 | * This function is called by iommu drivers and users to release the |
| 567 | * iommu group. Once the reference count is zero, the group is released. |
| 568 | */ |
| 569 | void iommu_group_put(struct iommu_group *group) |
| 570 | { |
| 571 | if (group) |
| 572 | kobject_put(group->devices_kobj); |
| 573 | } |
| 574 | EXPORT_SYMBOL_GPL(iommu_group_put); |
| 575 | |
| 576 | /** |
| 577 | * iommu_group_register_notifier - Register a notifier for group changes |
| 578 | * @group: the group to watch |
| 579 | * @nb: notifier block to signal |
| 580 | * |
| 581 | * This function allows iommu group users to track changes in a group. |
| 582 | * See include/linux/iommu.h for actions sent via this notifier. Caller |
| 583 | * should hold a reference to the group throughout notifier registration. |
| 584 | */ |
| 585 | int iommu_group_register_notifier(struct iommu_group *group, |
| 586 | struct notifier_block *nb) |
| 587 | { |
| 588 | return blocking_notifier_chain_register(&group->notifier, nb); |
| 589 | } |
| 590 | EXPORT_SYMBOL_GPL(iommu_group_register_notifier); |
| 591 | |
| 592 | /** |
| 593 | * iommu_group_unregister_notifier - Unregister a notifier |
| 594 | * @group: the group to watch |
| 595 | * @nb: notifier block to signal |
| 596 | * |
| 597 | * Unregister a previously registered group notifier block. |
| 598 | */ |
| 599 | int iommu_group_unregister_notifier(struct iommu_group *group, |
| 600 | struct notifier_block *nb) |
| 601 | { |
| 602 | return blocking_notifier_chain_unregister(&group->notifier, nb); |
| 603 | } |
| 604 | EXPORT_SYMBOL_GPL(iommu_group_unregister_notifier); |
| 605 | |
| 606 | /** |
| 607 | * iommu_group_id - Return ID for a group |
| 608 | * @group: the group to ID |
| 609 | * |
| 610 | * Return the unique ID for the group matching the sysfs group number. |
| 611 | */ |
| 612 | int iommu_group_id(struct iommu_group *group) |
| 613 | { |
| 614 | return group->id; |
| 615 | } |
| 616 | EXPORT_SYMBOL_GPL(iommu_group_id); |
Alex Williamson | 1460432 | 2011-10-21 15:56:05 -0400 | [diff] [blame] | 617 | |
Alex Williamson | f096c06 | 2014-09-19 10:03:06 -0600 | [diff] [blame] | 618 | static struct iommu_group *get_pci_alias_group(struct pci_dev *pdev, |
| 619 | unsigned long *devfns); |
| 620 | |
Alex Williamson | 104a1c1 | 2014-07-03 09:51:18 -0600 | [diff] [blame] | 621 | /* |
| 622 | * To consider a PCI device isolated, we require ACS to support Source |
| 623 | * Validation, Request Redirection, Completer Redirection, and Upstream |
| 624 | * Forwarding. This effectively means that devices cannot spoof their |
| 625 | * requester ID, requests and completions cannot be redirected, and all |
| 626 | * transactions are forwarded upstream, even as it passes through a |
| 627 | * bridge where the target device is downstream. |
| 628 | */ |
| 629 | #define REQ_ACS_FLAGS (PCI_ACS_SV | PCI_ACS_RR | PCI_ACS_CR | PCI_ACS_UF) |
| 630 | |
Alex Williamson | f096c06 | 2014-09-19 10:03:06 -0600 | [diff] [blame] | 631 | /* |
| 632 | * For multifunction devices which are not isolated from each other, find |
| 633 | * all the other non-isolated functions and look for existing groups. For |
| 634 | * each function, we also need to look for aliases to or from other devices |
| 635 | * that may already have a group. |
| 636 | */ |
| 637 | static struct iommu_group *get_pci_function_alias_group(struct pci_dev *pdev, |
| 638 | unsigned long *devfns) |
| 639 | { |
| 640 | struct pci_dev *tmp = NULL; |
| 641 | struct iommu_group *group; |
| 642 | |
| 643 | if (!pdev->multifunction || pci_acs_enabled(pdev, REQ_ACS_FLAGS)) |
| 644 | return NULL; |
| 645 | |
| 646 | for_each_pci_dev(tmp) { |
| 647 | if (tmp == pdev || tmp->bus != pdev->bus || |
| 648 | PCI_SLOT(tmp->devfn) != PCI_SLOT(pdev->devfn) || |
| 649 | pci_acs_enabled(tmp, REQ_ACS_FLAGS)) |
| 650 | continue; |
| 651 | |
| 652 | group = get_pci_alias_group(tmp, devfns); |
| 653 | if (group) { |
| 654 | pci_dev_put(tmp); |
| 655 | return group; |
| 656 | } |
| 657 | } |
| 658 | |
| 659 | return NULL; |
| 660 | } |
| 661 | |
| 662 | /* |
| 663 | * Look for aliases to or from the given device for exisiting groups. The |
| 664 | * dma_alias_devfn only supports aliases on the same bus, therefore the search |
| 665 | * space is quite small (especially since we're really only looking at pcie |
| 666 | * device, and therefore only expect multiple slots on the root complex or |
| 667 | * downstream switch ports). It's conceivable though that a pair of |
| 668 | * multifunction devices could have aliases between them that would cause a |
| 669 | * loop. To prevent this, we use a bitmap to track where we've been. |
| 670 | */ |
| 671 | static struct iommu_group *get_pci_alias_group(struct pci_dev *pdev, |
| 672 | unsigned long *devfns) |
| 673 | { |
| 674 | struct pci_dev *tmp = NULL; |
| 675 | struct iommu_group *group; |
| 676 | |
| 677 | if (test_and_set_bit(pdev->devfn & 0xff, devfns)) |
| 678 | return NULL; |
| 679 | |
| 680 | group = iommu_group_get(&pdev->dev); |
| 681 | if (group) |
| 682 | return group; |
| 683 | |
| 684 | for_each_pci_dev(tmp) { |
| 685 | if (tmp == pdev || tmp->bus != pdev->bus) |
| 686 | continue; |
| 687 | |
| 688 | /* We alias them or they alias us */ |
| 689 | if (((pdev->dev_flags & PCI_DEV_FLAGS_DMA_ALIAS_DEVFN) && |
| 690 | pdev->dma_alias_devfn == tmp->devfn) || |
| 691 | ((tmp->dev_flags & PCI_DEV_FLAGS_DMA_ALIAS_DEVFN) && |
| 692 | tmp->dma_alias_devfn == pdev->devfn)) { |
| 693 | |
| 694 | group = get_pci_alias_group(tmp, devfns); |
| 695 | if (group) { |
| 696 | pci_dev_put(tmp); |
| 697 | return group; |
| 698 | } |
| 699 | |
| 700 | group = get_pci_function_alias_group(tmp, devfns); |
| 701 | if (group) { |
| 702 | pci_dev_put(tmp); |
| 703 | return group; |
| 704 | } |
| 705 | } |
| 706 | } |
| 707 | |
| 708 | return NULL; |
| 709 | } |
| 710 | |
Alex Williamson | 104a1c1 | 2014-07-03 09:51:18 -0600 | [diff] [blame] | 711 | struct group_for_pci_data { |
| 712 | struct pci_dev *pdev; |
| 713 | struct iommu_group *group; |
| 714 | }; |
| 715 | |
| 716 | /* |
| 717 | * DMA alias iterator callback, return the last seen device. Stop and return |
| 718 | * the IOMMU group if we find one along the way. |
| 719 | */ |
| 720 | static int get_pci_alias_or_group(struct pci_dev *pdev, u16 alias, void *opaque) |
| 721 | { |
| 722 | struct group_for_pci_data *data = opaque; |
| 723 | |
| 724 | data->pdev = pdev; |
| 725 | data->group = iommu_group_get(&pdev->dev); |
| 726 | |
| 727 | return data->group != NULL; |
| 728 | } |
| 729 | |
| 730 | /* |
| 731 | * Use standard PCI bus topology, isolation features, and DMA alias quirks |
| 732 | * to find or create an IOMMU group for a device. |
| 733 | */ |
| 734 | static struct iommu_group *iommu_group_get_for_pci_dev(struct pci_dev *pdev) |
| 735 | { |
| 736 | struct group_for_pci_data data; |
| 737 | struct pci_bus *bus; |
| 738 | struct iommu_group *group = NULL; |
Alex Williamson | f096c06 | 2014-09-19 10:03:06 -0600 | [diff] [blame] | 739 | u64 devfns[4] = { 0 }; |
Alex Williamson | 104a1c1 | 2014-07-03 09:51:18 -0600 | [diff] [blame] | 740 | |
| 741 | /* |
| 742 | * Find the upstream DMA alias for the device. A device must not |
| 743 | * be aliased due to topology in order to have its own IOMMU group. |
| 744 | * If we find an alias along the way that already belongs to a |
| 745 | * group, use it. |
| 746 | */ |
| 747 | if (pci_for_each_dma_alias(pdev, get_pci_alias_or_group, &data)) |
| 748 | return data.group; |
| 749 | |
| 750 | pdev = data.pdev; |
| 751 | |
| 752 | /* |
| 753 | * Continue upstream from the point of minimum IOMMU granularity |
| 754 | * due to aliases to the point where devices are protected from |
| 755 | * peer-to-peer DMA by PCI ACS. Again, if we find an existing |
| 756 | * group, use it. |
| 757 | */ |
| 758 | for (bus = pdev->bus; !pci_is_root_bus(bus); bus = bus->parent) { |
| 759 | if (!bus->self) |
| 760 | continue; |
| 761 | |
| 762 | if (pci_acs_path_enabled(bus->self, NULL, REQ_ACS_FLAGS)) |
| 763 | break; |
| 764 | |
| 765 | pdev = bus->self; |
| 766 | |
| 767 | group = iommu_group_get(&pdev->dev); |
| 768 | if (group) |
| 769 | return group; |
| 770 | } |
| 771 | |
| 772 | /* |
Alex Williamson | f096c06 | 2014-09-19 10:03:06 -0600 | [diff] [blame] | 773 | * Look for existing groups on device aliases. If we alias another |
| 774 | * device or another device aliases us, use the same group. |
Alex Williamson | 104a1c1 | 2014-07-03 09:51:18 -0600 | [diff] [blame] | 775 | */ |
Alex Williamson | f096c06 | 2014-09-19 10:03:06 -0600 | [diff] [blame] | 776 | group = get_pci_alias_group(pdev, (unsigned long *)devfns); |
| 777 | if (group) |
| 778 | return group; |
Alex Williamson | 104a1c1 | 2014-07-03 09:51:18 -0600 | [diff] [blame] | 779 | |
| 780 | /* |
Alex Williamson | f096c06 | 2014-09-19 10:03:06 -0600 | [diff] [blame] | 781 | * Look for existing groups on non-isolated functions on the same |
| 782 | * slot and aliases of those funcions, if any. No need to clear |
| 783 | * the search bitmap, the tested devfns are still valid. |
Alex Williamson | 104a1c1 | 2014-07-03 09:51:18 -0600 | [diff] [blame] | 784 | */ |
Alex Williamson | f096c06 | 2014-09-19 10:03:06 -0600 | [diff] [blame] | 785 | group = get_pci_function_alias_group(pdev, (unsigned long *)devfns); |
| 786 | if (group) |
| 787 | return group; |
Alex Williamson | 104a1c1 | 2014-07-03 09:51:18 -0600 | [diff] [blame] | 788 | |
| 789 | /* No shared group found, allocate new */ |
Joerg Roedel | 53723dc | 2015-05-28 18:41:29 +0200 | [diff] [blame] | 790 | group = iommu_group_alloc(); |
| 791 | if (group) { |
| 792 | /* |
| 793 | * Try to allocate a default domain - needs support from the |
| 794 | * IOMMU driver. |
| 795 | */ |
| 796 | group->default_domain = __iommu_domain_alloc(pdev->dev.bus, |
| 797 | IOMMU_DOMAIN_DMA); |
Joerg Roedel | e39cb8a | 2015-05-28 18:41:31 +0200 | [diff] [blame] | 798 | group->domain = group->default_domain; |
Joerg Roedel | 53723dc | 2015-05-28 18:41:29 +0200 | [diff] [blame] | 799 | } |
| 800 | |
| 801 | return group; |
Alex Williamson | 104a1c1 | 2014-07-03 09:51:18 -0600 | [diff] [blame] | 802 | } |
| 803 | |
| 804 | /** |
| 805 | * iommu_group_get_for_dev - Find or create the IOMMU group for a device |
| 806 | * @dev: target device |
| 807 | * |
| 808 | * This function is intended to be called by IOMMU drivers and extended to |
| 809 | * support common, bus-defined algorithms when determining or creating the |
| 810 | * IOMMU group for a device. On success, the caller will hold a reference |
| 811 | * to the returned IOMMU group, which will already include the provided |
| 812 | * device. The reference should be released with iommu_group_put(). |
| 813 | */ |
| 814 | struct iommu_group *iommu_group_get_for_dev(struct device *dev) |
| 815 | { |
Joerg Roedel | c4a783b | 2014-08-21 22:32:08 +0200 | [diff] [blame] | 816 | struct iommu_group *group; |
Alex Williamson | 104a1c1 | 2014-07-03 09:51:18 -0600 | [diff] [blame] | 817 | int ret; |
| 818 | |
| 819 | group = iommu_group_get(dev); |
| 820 | if (group) |
| 821 | return group; |
| 822 | |
Joerg Roedel | c4a783b | 2014-08-21 22:32:08 +0200 | [diff] [blame] | 823 | if (!dev_is_pci(dev)) |
| 824 | return ERR_PTR(-EINVAL); |
| 825 | |
| 826 | group = iommu_group_get_for_pci_dev(to_pci_dev(dev)); |
Alex Williamson | 104a1c1 | 2014-07-03 09:51:18 -0600 | [diff] [blame] | 827 | |
| 828 | if (IS_ERR(group)) |
| 829 | return group; |
| 830 | |
| 831 | ret = iommu_group_add_device(group, dev); |
| 832 | if (ret) { |
| 833 | iommu_group_put(group); |
| 834 | return ERR_PTR(ret); |
| 835 | } |
| 836 | |
| 837 | return group; |
| 838 | } |
| 839 | |
Joerg Roedel | 6827ca8 | 2015-05-28 18:41:35 +0200 | [diff] [blame^] | 840 | struct iommu_domain *iommu_group_default_domain(struct iommu_group *group) |
| 841 | { |
| 842 | return group->default_domain; |
| 843 | } |
| 844 | |
Alex Williamson | 1460432 | 2011-10-21 15:56:05 -0400 | [diff] [blame] | 845 | static int add_iommu_group(struct device *dev, void *data) |
| 846 | { |
Thierry Reding | b22f643 | 2014-06-27 09:03:12 +0200 | [diff] [blame] | 847 | struct iommu_callback_data *cb = data; |
| 848 | const struct iommu_ops *ops = cb->ops; |
Alex Williamson | 1460432 | 2011-10-21 15:56:05 -0400 | [diff] [blame] | 849 | |
Alex Williamson | d72e31c | 2012-05-30 14:18:53 -0600 | [diff] [blame] | 850 | if (!ops->add_device) |
Marek Szyprowski | 461bfb3f | 2014-11-19 11:15:31 +0000 | [diff] [blame] | 851 | return 0; |
Alex Williamson | d72e31c | 2012-05-30 14:18:53 -0600 | [diff] [blame] | 852 | |
| 853 | WARN_ON(dev->iommu_group); |
| 854 | |
Joerg Roedel | 19762d7 | 2015-05-28 18:41:26 +0200 | [diff] [blame] | 855 | return ops->add_device(dev); |
Alex Williamson | 1460432 | 2011-10-21 15:56:05 -0400 | [diff] [blame] | 856 | } |
| 857 | |
Joerg Roedel | 8da3014 | 2015-05-28 18:41:27 +0200 | [diff] [blame] | 858 | static int remove_iommu_group(struct device *dev, void *data) |
| 859 | { |
| 860 | struct iommu_callback_data *cb = data; |
| 861 | const struct iommu_ops *ops = cb->ops; |
| 862 | |
| 863 | if (ops->remove_device && dev->iommu_group) |
| 864 | ops->remove_device(dev); |
| 865 | |
| 866 | return 0; |
| 867 | } |
| 868 | |
Alex Williamson | d72e31c | 2012-05-30 14:18:53 -0600 | [diff] [blame] | 869 | static int iommu_bus_notifier(struct notifier_block *nb, |
| 870 | unsigned long action, void *data) |
Alex Williamson | 1460432 | 2011-10-21 15:56:05 -0400 | [diff] [blame] | 871 | { |
| 872 | struct device *dev = data; |
Thierry Reding | b22f643 | 2014-06-27 09:03:12 +0200 | [diff] [blame] | 873 | const struct iommu_ops *ops = dev->bus->iommu_ops; |
Alex Williamson | d72e31c | 2012-05-30 14:18:53 -0600 | [diff] [blame] | 874 | struct iommu_group *group; |
| 875 | unsigned long group_action = 0; |
Alex Williamson | 1460432 | 2011-10-21 15:56:05 -0400 | [diff] [blame] | 876 | |
Alex Williamson | d72e31c | 2012-05-30 14:18:53 -0600 | [diff] [blame] | 877 | /* |
| 878 | * ADD/DEL call into iommu driver ops if provided, which may |
| 879 | * result in ADD/DEL notifiers to group->notifier |
| 880 | */ |
| 881 | if (action == BUS_NOTIFY_ADD_DEVICE) { |
| 882 | if (ops->add_device) |
| 883 | return ops->add_device(dev); |
Joerg Roedel | 843cb6d | 2015-05-28 18:41:28 +0200 | [diff] [blame] | 884 | } else if (action == BUS_NOTIFY_REMOVED_DEVICE) { |
Alex Williamson | d72e31c | 2012-05-30 14:18:53 -0600 | [diff] [blame] | 885 | if (ops->remove_device && dev->iommu_group) { |
| 886 | ops->remove_device(dev); |
| 887 | return 0; |
| 888 | } |
| 889 | } |
Alex Williamson | 1460432 | 2011-10-21 15:56:05 -0400 | [diff] [blame] | 890 | |
Alex Williamson | d72e31c | 2012-05-30 14:18:53 -0600 | [diff] [blame] | 891 | /* |
| 892 | * Remaining BUS_NOTIFYs get filtered and republished to the |
| 893 | * group, if anyone is listening |
| 894 | */ |
| 895 | group = iommu_group_get(dev); |
| 896 | if (!group) |
| 897 | return 0; |
| 898 | |
| 899 | switch (action) { |
| 900 | case BUS_NOTIFY_BIND_DRIVER: |
| 901 | group_action = IOMMU_GROUP_NOTIFY_BIND_DRIVER; |
| 902 | break; |
| 903 | case BUS_NOTIFY_BOUND_DRIVER: |
| 904 | group_action = IOMMU_GROUP_NOTIFY_BOUND_DRIVER; |
| 905 | break; |
| 906 | case BUS_NOTIFY_UNBIND_DRIVER: |
| 907 | group_action = IOMMU_GROUP_NOTIFY_UNBIND_DRIVER; |
| 908 | break; |
| 909 | case BUS_NOTIFY_UNBOUND_DRIVER: |
| 910 | group_action = IOMMU_GROUP_NOTIFY_UNBOUND_DRIVER; |
| 911 | break; |
| 912 | } |
| 913 | |
| 914 | if (group_action) |
| 915 | blocking_notifier_call_chain(&group->notifier, |
| 916 | group_action, dev); |
| 917 | |
| 918 | iommu_group_put(group); |
Alex Williamson | 1460432 | 2011-10-21 15:56:05 -0400 | [diff] [blame] | 919 | return 0; |
| 920 | } |
| 921 | |
Mark Salter | fb3e306 | 2014-09-21 13:58:24 -0400 | [diff] [blame] | 922 | static int iommu_bus_init(struct bus_type *bus, const struct iommu_ops *ops) |
Joerg Roedel | fc2100e | 2008-11-26 17:21:24 +0100 | [diff] [blame] | 923 | { |
Mark Salter | fb3e306 | 2014-09-21 13:58:24 -0400 | [diff] [blame] | 924 | int err; |
| 925 | struct notifier_block *nb; |
Thierry Reding | b22f643 | 2014-06-27 09:03:12 +0200 | [diff] [blame] | 926 | struct iommu_callback_data cb = { |
| 927 | .ops = ops, |
| 928 | }; |
| 929 | |
Mark Salter | fb3e306 | 2014-09-21 13:58:24 -0400 | [diff] [blame] | 930 | nb = kzalloc(sizeof(struct notifier_block), GFP_KERNEL); |
| 931 | if (!nb) |
| 932 | return -ENOMEM; |
| 933 | |
| 934 | nb->notifier_call = iommu_bus_notifier; |
| 935 | |
| 936 | err = bus_register_notifier(bus, nb); |
Joerg Roedel | 8da3014 | 2015-05-28 18:41:27 +0200 | [diff] [blame] | 937 | if (err) |
| 938 | goto out_free; |
Heiko Stübner | d7da6bd | 2014-10-29 01:22:56 +0100 | [diff] [blame] | 939 | |
| 940 | err = bus_for_each_dev(bus, NULL, &cb, add_iommu_group); |
Joerg Roedel | 8da3014 | 2015-05-28 18:41:27 +0200 | [diff] [blame] | 941 | if (err) |
| 942 | goto out_err; |
| 943 | |
Heiko Stübner | d7da6bd | 2014-10-29 01:22:56 +0100 | [diff] [blame] | 944 | |
| 945 | return 0; |
Joerg Roedel | 8da3014 | 2015-05-28 18:41:27 +0200 | [diff] [blame] | 946 | |
| 947 | out_err: |
| 948 | /* Clean up */ |
| 949 | bus_for_each_dev(bus, NULL, &cb, remove_iommu_group); |
| 950 | bus_unregister_notifier(bus, nb); |
| 951 | |
| 952 | out_free: |
| 953 | kfree(nb); |
| 954 | |
| 955 | return err; |
Joerg Roedel | fc2100e | 2008-11-26 17:21:24 +0100 | [diff] [blame] | 956 | } |
| 957 | |
Joerg Roedel | ff21776 | 2011-08-26 16:48:26 +0200 | [diff] [blame] | 958 | /** |
| 959 | * bus_set_iommu - set iommu-callbacks for the bus |
| 960 | * @bus: bus. |
| 961 | * @ops: the callbacks provided by the iommu-driver |
| 962 | * |
| 963 | * This function is called by an iommu driver to set the iommu methods |
| 964 | * used for a particular bus. Drivers for devices on that bus can use |
| 965 | * the iommu-api after these ops are registered. |
| 966 | * This special function is needed because IOMMUs are usually devices on |
| 967 | * the bus itself, so the iommu drivers are not initialized when the bus |
| 968 | * is set up. With this function the iommu-driver can set the iommu-ops |
| 969 | * afterwards. |
| 970 | */ |
Thierry Reding | b22f643 | 2014-06-27 09:03:12 +0200 | [diff] [blame] | 971 | int bus_set_iommu(struct bus_type *bus, const struct iommu_ops *ops) |
Joerg Roedel | fc2100e | 2008-11-26 17:21:24 +0100 | [diff] [blame] | 972 | { |
Heiko Stübner | d7da6bd | 2014-10-29 01:22:56 +0100 | [diff] [blame] | 973 | int err; |
| 974 | |
Joerg Roedel | ff21776 | 2011-08-26 16:48:26 +0200 | [diff] [blame] | 975 | if (bus->iommu_ops != NULL) |
| 976 | return -EBUSY; |
Joerg Roedel | fc2100e | 2008-11-26 17:21:24 +0100 | [diff] [blame] | 977 | |
Joerg Roedel | ff21776 | 2011-08-26 16:48:26 +0200 | [diff] [blame] | 978 | bus->iommu_ops = ops; |
| 979 | |
| 980 | /* Do IOMMU specific setup for this bus-type */ |
Heiko Stübner | d7da6bd | 2014-10-29 01:22:56 +0100 | [diff] [blame] | 981 | err = iommu_bus_init(bus, ops); |
| 982 | if (err) |
| 983 | bus->iommu_ops = NULL; |
| 984 | |
| 985 | return err; |
Joerg Roedel | fc2100e | 2008-11-26 17:21:24 +0100 | [diff] [blame] | 986 | } |
Joerg Roedel | ff21776 | 2011-08-26 16:48:26 +0200 | [diff] [blame] | 987 | EXPORT_SYMBOL_GPL(bus_set_iommu); |
| 988 | |
Joerg Roedel | a1b60c1 | 2011-09-06 18:46:34 +0200 | [diff] [blame] | 989 | bool iommu_present(struct bus_type *bus) |
Joerg Roedel | fc2100e | 2008-11-26 17:21:24 +0100 | [diff] [blame] | 990 | { |
Joerg Roedel | 94441c3 | 2011-09-06 18:58:54 +0200 | [diff] [blame] | 991 | return bus->iommu_ops != NULL; |
Joerg Roedel | fc2100e | 2008-11-26 17:21:24 +0100 | [diff] [blame] | 992 | } |
Joerg Roedel | a1b60c1 | 2011-09-06 18:46:34 +0200 | [diff] [blame] | 993 | EXPORT_SYMBOL_GPL(iommu_present); |
Joerg Roedel | fc2100e | 2008-11-26 17:21:24 +0100 | [diff] [blame] | 994 | |
Joerg Roedel | 3c0e0ca | 2014-09-03 18:47:25 +0200 | [diff] [blame] | 995 | bool iommu_capable(struct bus_type *bus, enum iommu_cap cap) |
| 996 | { |
| 997 | if (!bus->iommu_ops || !bus->iommu_ops->capable) |
| 998 | return false; |
| 999 | |
| 1000 | return bus->iommu_ops->capable(cap); |
| 1001 | } |
| 1002 | EXPORT_SYMBOL_GPL(iommu_capable); |
| 1003 | |
Ohad Ben-Cohen | 4f3f8d9 | 2011-09-13 15:25:23 -0400 | [diff] [blame] | 1004 | /** |
| 1005 | * iommu_set_fault_handler() - set a fault handler for an iommu domain |
| 1006 | * @domain: iommu domain |
| 1007 | * @handler: fault handler |
Ohad Ben-Cohen | 77ca233 | 2012-05-21 20:20:05 +0300 | [diff] [blame] | 1008 | * @token: user data, will be passed back to the fault handler |
Ohad Ben-Cohen | 0ed6d2d | 2011-09-27 07:36:40 -0400 | [diff] [blame] | 1009 | * |
| 1010 | * This function should be used by IOMMU users which want to be notified |
| 1011 | * whenever an IOMMU fault happens. |
| 1012 | * |
| 1013 | * The fault handler itself should return 0 on success, and an appropriate |
| 1014 | * error code otherwise. |
Ohad Ben-Cohen | 4f3f8d9 | 2011-09-13 15:25:23 -0400 | [diff] [blame] | 1015 | */ |
| 1016 | void iommu_set_fault_handler(struct iommu_domain *domain, |
Ohad Ben-Cohen | 77ca233 | 2012-05-21 20:20:05 +0300 | [diff] [blame] | 1017 | iommu_fault_handler_t handler, |
| 1018 | void *token) |
Ohad Ben-Cohen | 4f3f8d9 | 2011-09-13 15:25:23 -0400 | [diff] [blame] | 1019 | { |
| 1020 | BUG_ON(!domain); |
| 1021 | |
| 1022 | domain->handler = handler; |
Ohad Ben-Cohen | 77ca233 | 2012-05-21 20:20:05 +0300 | [diff] [blame] | 1023 | domain->handler_token = token; |
Ohad Ben-Cohen | 4f3f8d9 | 2011-09-13 15:25:23 -0400 | [diff] [blame] | 1024 | } |
Ohad Ben-Cohen | 30bd918 | 2011-09-26 09:11:46 -0400 | [diff] [blame] | 1025 | EXPORT_SYMBOL_GPL(iommu_set_fault_handler); |
Ohad Ben-Cohen | 4f3f8d9 | 2011-09-13 15:25:23 -0400 | [diff] [blame] | 1026 | |
Joerg Roedel | 53723dc | 2015-05-28 18:41:29 +0200 | [diff] [blame] | 1027 | static struct iommu_domain *__iommu_domain_alloc(struct bus_type *bus, |
| 1028 | unsigned type) |
Joerg Roedel | fc2100e | 2008-11-26 17:21:24 +0100 | [diff] [blame] | 1029 | { |
| 1030 | struct iommu_domain *domain; |
Joerg Roedel | fc2100e | 2008-11-26 17:21:24 +0100 | [diff] [blame] | 1031 | |
Joerg Roedel | 94441c3 | 2011-09-06 18:58:54 +0200 | [diff] [blame] | 1032 | if (bus == NULL || bus->iommu_ops == NULL) |
Joerg Roedel | 905d66c | 2011-09-06 16:03:26 +0200 | [diff] [blame] | 1033 | return NULL; |
| 1034 | |
Joerg Roedel | 53723dc | 2015-05-28 18:41:29 +0200 | [diff] [blame] | 1035 | domain = bus->iommu_ops->domain_alloc(type); |
Joerg Roedel | fc2100e | 2008-11-26 17:21:24 +0100 | [diff] [blame] | 1036 | if (!domain) |
| 1037 | return NULL; |
| 1038 | |
Joerg Roedel | 8539c7c | 2015-03-26 13:43:05 +0100 | [diff] [blame] | 1039 | domain->ops = bus->iommu_ops; |
Joerg Roedel | 53723dc | 2015-05-28 18:41:29 +0200 | [diff] [blame] | 1040 | domain->type = type; |
Joerg Roedel | 905d66c | 2011-09-06 16:03:26 +0200 | [diff] [blame] | 1041 | |
Joerg Roedel | fc2100e | 2008-11-26 17:21:24 +0100 | [diff] [blame] | 1042 | return domain; |
Joerg Roedel | fc2100e | 2008-11-26 17:21:24 +0100 | [diff] [blame] | 1043 | } |
Joerg Roedel | 53723dc | 2015-05-28 18:41:29 +0200 | [diff] [blame] | 1044 | |
| 1045 | struct iommu_domain *iommu_domain_alloc(struct bus_type *bus) |
| 1046 | { |
| 1047 | return __iommu_domain_alloc(bus, IOMMU_DOMAIN_UNMANAGED); |
| 1048 | } |
Joerg Roedel | fc2100e | 2008-11-26 17:21:24 +0100 | [diff] [blame] | 1049 | EXPORT_SYMBOL_GPL(iommu_domain_alloc); |
| 1050 | |
| 1051 | void iommu_domain_free(struct iommu_domain *domain) |
| 1052 | { |
Joerg Roedel | 89be34a | 2015-03-26 13:43:19 +0100 | [diff] [blame] | 1053 | domain->ops->domain_free(domain); |
Joerg Roedel | fc2100e | 2008-11-26 17:21:24 +0100 | [diff] [blame] | 1054 | } |
| 1055 | EXPORT_SYMBOL_GPL(iommu_domain_free); |
| 1056 | |
Joerg Roedel | 426a273 | 2015-05-28 18:41:30 +0200 | [diff] [blame] | 1057 | static int __iommu_attach_device(struct iommu_domain *domain, |
| 1058 | struct device *dev) |
Joerg Roedel | fc2100e | 2008-11-26 17:21:24 +0100 | [diff] [blame] | 1059 | { |
Shuah Khan | b54db77 | 2013-08-15 11:59:26 -0600 | [diff] [blame] | 1060 | int ret; |
Joerg Roedel | e5aa7f0 | 2011-09-06 16:44:29 +0200 | [diff] [blame] | 1061 | if (unlikely(domain->ops->attach_dev == NULL)) |
| 1062 | return -ENODEV; |
| 1063 | |
Shuah Khan | b54db77 | 2013-08-15 11:59:26 -0600 | [diff] [blame] | 1064 | ret = domain->ops->attach_dev(domain, dev); |
| 1065 | if (!ret) |
| 1066 | trace_attach_device_to_domain(dev); |
| 1067 | return ret; |
Joerg Roedel | fc2100e | 2008-11-26 17:21:24 +0100 | [diff] [blame] | 1068 | } |
Joerg Roedel | 426a273 | 2015-05-28 18:41:30 +0200 | [diff] [blame] | 1069 | |
| 1070 | int iommu_attach_device(struct iommu_domain *domain, struct device *dev) |
| 1071 | { |
| 1072 | struct iommu_group *group; |
| 1073 | int ret; |
| 1074 | |
| 1075 | group = iommu_group_get(dev); |
| 1076 | /* FIXME: Remove this when groups a mandatory for iommu drivers */ |
| 1077 | if (group == NULL) |
| 1078 | return __iommu_attach_device(domain, dev); |
| 1079 | |
| 1080 | /* |
| 1081 | * We have a group - lock it to make sure the device-count doesn't |
| 1082 | * change while we are attaching |
| 1083 | */ |
| 1084 | mutex_lock(&group->mutex); |
| 1085 | ret = -EINVAL; |
| 1086 | if (iommu_group_device_count(group) != 1) |
| 1087 | goto out_unlock; |
| 1088 | |
Joerg Roedel | e39cb8a | 2015-05-28 18:41:31 +0200 | [diff] [blame] | 1089 | ret = __iommu_attach_group(domain, group); |
Joerg Roedel | 426a273 | 2015-05-28 18:41:30 +0200 | [diff] [blame] | 1090 | |
| 1091 | out_unlock: |
| 1092 | mutex_unlock(&group->mutex); |
| 1093 | iommu_group_put(group); |
| 1094 | |
| 1095 | return ret; |
| 1096 | } |
Joerg Roedel | fc2100e | 2008-11-26 17:21:24 +0100 | [diff] [blame] | 1097 | EXPORT_SYMBOL_GPL(iommu_attach_device); |
| 1098 | |
Joerg Roedel | 426a273 | 2015-05-28 18:41:30 +0200 | [diff] [blame] | 1099 | static void __iommu_detach_device(struct iommu_domain *domain, |
| 1100 | struct device *dev) |
Joerg Roedel | fc2100e | 2008-11-26 17:21:24 +0100 | [diff] [blame] | 1101 | { |
Joerg Roedel | e5aa7f0 | 2011-09-06 16:44:29 +0200 | [diff] [blame] | 1102 | if (unlikely(domain->ops->detach_dev == NULL)) |
| 1103 | return; |
| 1104 | |
| 1105 | domain->ops->detach_dev(domain, dev); |
Shuah Khan | 6998063 | 2013-08-15 11:59:27 -0600 | [diff] [blame] | 1106 | trace_detach_device_from_domain(dev); |
Joerg Roedel | fc2100e | 2008-11-26 17:21:24 +0100 | [diff] [blame] | 1107 | } |
Joerg Roedel | 426a273 | 2015-05-28 18:41:30 +0200 | [diff] [blame] | 1108 | |
| 1109 | void iommu_detach_device(struct iommu_domain *domain, struct device *dev) |
| 1110 | { |
| 1111 | struct iommu_group *group; |
| 1112 | |
| 1113 | group = iommu_group_get(dev); |
| 1114 | /* FIXME: Remove this when groups a mandatory for iommu drivers */ |
| 1115 | if (group == NULL) |
| 1116 | return __iommu_detach_device(domain, dev); |
| 1117 | |
| 1118 | mutex_lock(&group->mutex); |
| 1119 | if (iommu_group_device_count(group) != 1) { |
| 1120 | WARN_ON(1); |
| 1121 | goto out_unlock; |
| 1122 | } |
| 1123 | |
Joerg Roedel | e39cb8a | 2015-05-28 18:41:31 +0200 | [diff] [blame] | 1124 | __iommu_detach_group(domain, group); |
Joerg Roedel | 426a273 | 2015-05-28 18:41:30 +0200 | [diff] [blame] | 1125 | |
| 1126 | out_unlock: |
| 1127 | mutex_unlock(&group->mutex); |
| 1128 | iommu_group_put(group); |
| 1129 | } |
Joerg Roedel | fc2100e | 2008-11-26 17:21:24 +0100 | [diff] [blame] | 1130 | EXPORT_SYMBOL_GPL(iommu_detach_device); |
| 1131 | |
Joerg Roedel | 2c1296d | 2015-05-28 18:41:32 +0200 | [diff] [blame] | 1132 | struct iommu_domain *iommu_get_domain_for_dev(struct device *dev) |
| 1133 | { |
| 1134 | struct iommu_domain *domain; |
| 1135 | struct iommu_group *group; |
| 1136 | |
| 1137 | group = iommu_group_get(dev); |
| 1138 | /* FIXME: Remove this when groups a mandatory for iommu drivers */ |
| 1139 | if (group == NULL) |
| 1140 | return NULL; |
| 1141 | |
| 1142 | domain = group->domain; |
| 1143 | |
| 1144 | iommu_group_put(group); |
| 1145 | |
| 1146 | return domain; |
| 1147 | } |
| 1148 | EXPORT_SYMBOL_GPL(iommu_get_domain_for_dev); |
| 1149 | |
Alex Williamson | d72e31c | 2012-05-30 14:18:53 -0600 | [diff] [blame] | 1150 | /* |
| 1151 | * IOMMU groups are really the natrual working unit of the IOMMU, but |
| 1152 | * the IOMMU API works on domains and devices. Bridge that gap by |
| 1153 | * iterating over the devices in a group. Ideally we'd have a single |
| 1154 | * device which represents the requestor ID of the group, but we also |
| 1155 | * allow IOMMU drivers to create policy defined minimum sets, where |
| 1156 | * the physical hardware may be able to distiguish members, but we |
| 1157 | * wish to group them at a higher level (ex. untrusted multi-function |
| 1158 | * PCI devices). Thus we attach each device. |
| 1159 | */ |
| 1160 | static int iommu_group_do_attach_device(struct device *dev, void *data) |
| 1161 | { |
| 1162 | struct iommu_domain *domain = data; |
| 1163 | |
Joerg Roedel | 426a273 | 2015-05-28 18:41:30 +0200 | [diff] [blame] | 1164 | return __iommu_attach_device(domain, dev); |
Alex Williamson | d72e31c | 2012-05-30 14:18:53 -0600 | [diff] [blame] | 1165 | } |
| 1166 | |
Joerg Roedel | e39cb8a | 2015-05-28 18:41:31 +0200 | [diff] [blame] | 1167 | static int __iommu_attach_group(struct iommu_domain *domain, |
| 1168 | struct iommu_group *group) |
| 1169 | { |
| 1170 | int ret; |
| 1171 | |
| 1172 | if (group->default_domain && group->domain != group->default_domain) |
| 1173 | return -EBUSY; |
| 1174 | |
| 1175 | ret = __iommu_group_for_each_dev(group, domain, |
| 1176 | iommu_group_do_attach_device); |
| 1177 | if (ret == 0) |
| 1178 | group->domain = domain; |
| 1179 | |
| 1180 | return ret; |
| 1181 | } |
| 1182 | |
Alex Williamson | d72e31c | 2012-05-30 14:18:53 -0600 | [diff] [blame] | 1183 | int iommu_attach_group(struct iommu_domain *domain, struct iommu_group *group) |
| 1184 | { |
Joerg Roedel | e39cb8a | 2015-05-28 18:41:31 +0200 | [diff] [blame] | 1185 | int ret; |
| 1186 | |
| 1187 | mutex_lock(&group->mutex); |
| 1188 | ret = __iommu_attach_group(domain, group); |
| 1189 | mutex_unlock(&group->mutex); |
| 1190 | |
| 1191 | return ret; |
Alex Williamson | d72e31c | 2012-05-30 14:18:53 -0600 | [diff] [blame] | 1192 | } |
| 1193 | EXPORT_SYMBOL_GPL(iommu_attach_group); |
| 1194 | |
| 1195 | static int iommu_group_do_detach_device(struct device *dev, void *data) |
| 1196 | { |
| 1197 | struct iommu_domain *domain = data; |
| 1198 | |
Joerg Roedel | 426a273 | 2015-05-28 18:41:30 +0200 | [diff] [blame] | 1199 | __iommu_detach_device(domain, dev); |
Alex Williamson | d72e31c | 2012-05-30 14:18:53 -0600 | [diff] [blame] | 1200 | |
| 1201 | return 0; |
| 1202 | } |
| 1203 | |
Joerg Roedel | e39cb8a | 2015-05-28 18:41:31 +0200 | [diff] [blame] | 1204 | static void __iommu_detach_group(struct iommu_domain *domain, |
| 1205 | struct iommu_group *group) |
| 1206 | { |
| 1207 | int ret; |
| 1208 | |
| 1209 | if (!group->default_domain) { |
| 1210 | __iommu_group_for_each_dev(group, domain, |
| 1211 | iommu_group_do_detach_device); |
| 1212 | group->domain = NULL; |
| 1213 | return; |
| 1214 | } |
| 1215 | |
| 1216 | if (group->domain == group->default_domain) |
| 1217 | return; |
| 1218 | |
| 1219 | /* Detach by re-attaching to the default domain */ |
| 1220 | ret = __iommu_group_for_each_dev(group, group->default_domain, |
| 1221 | iommu_group_do_attach_device); |
| 1222 | if (ret != 0) |
| 1223 | WARN_ON(1); |
| 1224 | else |
| 1225 | group->domain = group->default_domain; |
| 1226 | } |
| 1227 | |
Alex Williamson | d72e31c | 2012-05-30 14:18:53 -0600 | [diff] [blame] | 1228 | void iommu_detach_group(struct iommu_domain *domain, struct iommu_group *group) |
| 1229 | { |
Joerg Roedel | e39cb8a | 2015-05-28 18:41:31 +0200 | [diff] [blame] | 1230 | mutex_lock(&group->mutex); |
| 1231 | __iommu_detach_group(domain, group); |
| 1232 | mutex_unlock(&group->mutex); |
Alex Williamson | d72e31c | 2012-05-30 14:18:53 -0600 | [diff] [blame] | 1233 | } |
| 1234 | EXPORT_SYMBOL_GPL(iommu_detach_group); |
| 1235 | |
Varun Sethi | bb5547ac | 2013-03-29 01:23:58 +0530 | [diff] [blame] | 1236 | phys_addr_t iommu_iova_to_phys(struct iommu_domain *domain, dma_addr_t iova) |
Joerg Roedel | fc2100e | 2008-11-26 17:21:24 +0100 | [diff] [blame] | 1237 | { |
Joerg Roedel | e5aa7f0 | 2011-09-06 16:44:29 +0200 | [diff] [blame] | 1238 | if (unlikely(domain->ops->iova_to_phys == NULL)) |
| 1239 | return 0; |
| 1240 | |
| 1241 | return domain->ops->iova_to_phys(domain, iova); |
Joerg Roedel | fc2100e | 2008-11-26 17:21:24 +0100 | [diff] [blame] | 1242 | } |
| 1243 | EXPORT_SYMBOL_GPL(iommu_iova_to_phys); |
Sheng Yang | dbb9fd8 | 2009-03-18 15:33:06 +0800 | [diff] [blame] | 1244 | |
Alex Williamson | bd13969 | 2013-06-17 19:57:34 -0600 | [diff] [blame] | 1245 | static size_t iommu_pgsize(struct iommu_domain *domain, |
| 1246 | unsigned long addr_merge, size_t size) |
| 1247 | { |
| 1248 | unsigned int pgsize_idx; |
| 1249 | size_t pgsize; |
| 1250 | |
| 1251 | /* Max page size that still fits into 'size' */ |
| 1252 | pgsize_idx = __fls(size); |
| 1253 | |
| 1254 | /* need to consider alignment requirements ? */ |
| 1255 | if (likely(addr_merge)) { |
| 1256 | /* Max page size allowed by address */ |
| 1257 | unsigned int align_pgsize_idx = __ffs(addr_merge); |
| 1258 | pgsize_idx = min(pgsize_idx, align_pgsize_idx); |
| 1259 | } |
| 1260 | |
| 1261 | /* build a mask of acceptable page sizes */ |
| 1262 | pgsize = (1UL << (pgsize_idx + 1)) - 1; |
| 1263 | |
| 1264 | /* throw away page sizes not supported by the hardware */ |
| 1265 | pgsize &= domain->ops->pgsize_bitmap; |
| 1266 | |
| 1267 | /* make sure we're still sane */ |
| 1268 | BUG_ON(!pgsize); |
| 1269 | |
| 1270 | /* pick the biggest page */ |
| 1271 | pgsize_idx = __fls(pgsize); |
| 1272 | pgsize = 1UL << pgsize_idx; |
| 1273 | |
| 1274 | return pgsize; |
| 1275 | } |
| 1276 | |
Joerg Roedel | cefc53c | 2010-01-08 13:35:09 +0100 | [diff] [blame] | 1277 | int iommu_map(struct iommu_domain *domain, unsigned long iova, |
Ohad Ben-Cohen | 7d3002c | 2011-11-10 11:32:26 +0200 | [diff] [blame] | 1278 | phys_addr_t paddr, size_t size, int prot) |
Joerg Roedel | cefc53c | 2010-01-08 13:35:09 +0100 | [diff] [blame] | 1279 | { |
Ohad Ben-Cohen | 7d3002c | 2011-11-10 11:32:26 +0200 | [diff] [blame] | 1280 | unsigned long orig_iova = iova; |
| 1281 | unsigned int min_pagesz; |
| 1282 | size_t orig_size = size; |
| 1283 | int ret = 0; |
Joerg Roedel | cefc53c | 2010-01-08 13:35:09 +0100 | [diff] [blame] | 1284 | |
Joerg Roedel | 9db4ad9 | 2014-08-19 00:19:26 +0200 | [diff] [blame] | 1285 | if (unlikely(domain->ops->map == NULL || |
Joerg Roedel | 5788651 | 2013-01-29 13:41:09 +0100 | [diff] [blame] | 1286 | domain->ops->pgsize_bitmap == 0UL)) |
Joerg Roedel | e5aa7f0 | 2011-09-06 16:44:29 +0200 | [diff] [blame] | 1287 | return -ENODEV; |
Joerg Roedel | cefc53c | 2010-01-08 13:35:09 +0100 | [diff] [blame] | 1288 | |
Joerg Roedel | a10315e | 2015-03-26 13:43:06 +0100 | [diff] [blame] | 1289 | if (unlikely(!(domain->type & __IOMMU_DOMAIN_PAGING))) |
| 1290 | return -EINVAL; |
| 1291 | |
Ohad Ben-Cohen | 7d3002c | 2011-11-10 11:32:26 +0200 | [diff] [blame] | 1292 | /* find out the minimum page size supported */ |
| 1293 | min_pagesz = 1 << __ffs(domain->ops->pgsize_bitmap); |
Joerg Roedel | cefc53c | 2010-01-08 13:35:09 +0100 | [diff] [blame] | 1294 | |
Ohad Ben-Cohen | 7d3002c | 2011-11-10 11:32:26 +0200 | [diff] [blame] | 1295 | /* |
| 1296 | * both the virtual address and the physical one, as well as |
| 1297 | * the size of the mapping, must be aligned (at least) to the |
| 1298 | * size of the smallest page supported by the hardware |
| 1299 | */ |
| 1300 | if (!IS_ALIGNED(iova | paddr | size, min_pagesz)) { |
Fabio Estevam | abedb04 | 2013-08-22 10:25:42 -0300 | [diff] [blame] | 1301 | pr_err("unaligned: iova 0x%lx pa %pa size 0x%zx min_pagesz 0x%x\n", |
Joe Perches | 6197ca8 | 2013-06-23 12:29:04 -0700 | [diff] [blame] | 1302 | iova, &paddr, size, min_pagesz); |
Ohad Ben-Cohen | 7d3002c | 2011-11-10 11:32:26 +0200 | [diff] [blame] | 1303 | return -EINVAL; |
| 1304 | } |
Joerg Roedel | cefc53c | 2010-01-08 13:35:09 +0100 | [diff] [blame] | 1305 | |
Fabio Estevam | abedb04 | 2013-08-22 10:25:42 -0300 | [diff] [blame] | 1306 | pr_debug("map: iova 0x%lx pa %pa size 0x%zx\n", iova, &paddr, size); |
Ohad Ben-Cohen | 7d3002c | 2011-11-10 11:32:26 +0200 | [diff] [blame] | 1307 | |
| 1308 | while (size) { |
Alex Williamson | bd13969 | 2013-06-17 19:57:34 -0600 | [diff] [blame] | 1309 | size_t pgsize = iommu_pgsize(domain, iova | paddr, size); |
Ohad Ben-Cohen | 7d3002c | 2011-11-10 11:32:26 +0200 | [diff] [blame] | 1310 | |
Fabio Estevam | abedb04 | 2013-08-22 10:25:42 -0300 | [diff] [blame] | 1311 | pr_debug("mapping: iova 0x%lx pa %pa pgsize 0x%zx\n", |
Joe Perches | 6197ca8 | 2013-06-23 12:29:04 -0700 | [diff] [blame] | 1312 | iova, &paddr, pgsize); |
Ohad Ben-Cohen | 7d3002c | 2011-11-10 11:32:26 +0200 | [diff] [blame] | 1313 | |
| 1314 | ret = domain->ops->map(domain, iova, paddr, pgsize, prot); |
| 1315 | if (ret) |
| 1316 | break; |
| 1317 | |
| 1318 | iova += pgsize; |
| 1319 | paddr += pgsize; |
| 1320 | size -= pgsize; |
| 1321 | } |
| 1322 | |
| 1323 | /* unroll mapping in case something went wrong */ |
| 1324 | if (ret) |
| 1325 | iommu_unmap(domain, orig_iova, orig_size - size); |
Shuah Khan | e0be7c8 | 2013-08-15 11:59:28 -0600 | [diff] [blame] | 1326 | else |
Shuah Khan | 860cd64d | 2015-01-15 19:29:43 -0700 | [diff] [blame] | 1327 | trace_map(orig_iova, paddr, orig_size); |
Ohad Ben-Cohen | 7d3002c | 2011-11-10 11:32:26 +0200 | [diff] [blame] | 1328 | |
| 1329 | return ret; |
Joerg Roedel | cefc53c | 2010-01-08 13:35:09 +0100 | [diff] [blame] | 1330 | } |
| 1331 | EXPORT_SYMBOL_GPL(iommu_map); |
| 1332 | |
Ohad Ben-Cohen | 7d3002c | 2011-11-10 11:32:26 +0200 | [diff] [blame] | 1333 | size_t iommu_unmap(struct iommu_domain *domain, unsigned long iova, size_t size) |
Joerg Roedel | cefc53c | 2010-01-08 13:35:09 +0100 | [diff] [blame] | 1334 | { |
Ohad Ben-Cohen | 7d3002c | 2011-11-10 11:32:26 +0200 | [diff] [blame] | 1335 | size_t unmapped_page, unmapped = 0; |
| 1336 | unsigned int min_pagesz; |
Shuah Khan | 6fd492f | 2015-01-16 16:47:19 -0700 | [diff] [blame] | 1337 | unsigned long orig_iova = iova; |
Joerg Roedel | cefc53c | 2010-01-08 13:35:09 +0100 | [diff] [blame] | 1338 | |
Joerg Roedel | 5788651 | 2013-01-29 13:41:09 +0100 | [diff] [blame] | 1339 | if (unlikely(domain->ops->unmap == NULL || |
| 1340 | domain->ops->pgsize_bitmap == 0UL)) |
Joerg Roedel | e5aa7f0 | 2011-09-06 16:44:29 +0200 | [diff] [blame] | 1341 | return -ENODEV; |
Joerg Roedel | cefc53c | 2010-01-08 13:35:09 +0100 | [diff] [blame] | 1342 | |
Joerg Roedel | a10315e | 2015-03-26 13:43:06 +0100 | [diff] [blame] | 1343 | if (unlikely(!(domain->type & __IOMMU_DOMAIN_PAGING))) |
| 1344 | return -EINVAL; |
| 1345 | |
Ohad Ben-Cohen | 7d3002c | 2011-11-10 11:32:26 +0200 | [diff] [blame] | 1346 | /* find out the minimum page size supported */ |
| 1347 | min_pagesz = 1 << __ffs(domain->ops->pgsize_bitmap); |
Joerg Roedel | cefc53c | 2010-01-08 13:35:09 +0100 | [diff] [blame] | 1348 | |
Ohad Ben-Cohen | 7d3002c | 2011-11-10 11:32:26 +0200 | [diff] [blame] | 1349 | /* |
| 1350 | * The virtual address, as well as the size of the mapping, must be |
| 1351 | * aligned (at least) to the size of the smallest page supported |
| 1352 | * by the hardware |
| 1353 | */ |
| 1354 | if (!IS_ALIGNED(iova | size, min_pagesz)) { |
Joe Perches | 6197ca8 | 2013-06-23 12:29:04 -0700 | [diff] [blame] | 1355 | pr_err("unaligned: iova 0x%lx size 0x%zx min_pagesz 0x%x\n", |
| 1356 | iova, size, min_pagesz); |
Ohad Ben-Cohen | 7d3002c | 2011-11-10 11:32:26 +0200 | [diff] [blame] | 1357 | return -EINVAL; |
| 1358 | } |
Joerg Roedel | cefc53c | 2010-01-08 13:35:09 +0100 | [diff] [blame] | 1359 | |
Joe Perches | 6197ca8 | 2013-06-23 12:29:04 -0700 | [diff] [blame] | 1360 | pr_debug("unmap this: iova 0x%lx size 0x%zx\n", iova, size); |
Ohad Ben-Cohen | 5009065 | 2011-11-10 11:32:25 +0200 | [diff] [blame] | 1361 | |
Ohad Ben-Cohen | 7d3002c | 2011-11-10 11:32:26 +0200 | [diff] [blame] | 1362 | /* |
| 1363 | * Keep iterating until we either unmap 'size' bytes (or more) |
| 1364 | * or we hit an area that isn't mapped. |
| 1365 | */ |
| 1366 | while (unmapped < size) { |
Alex Williamson | bd13969 | 2013-06-17 19:57:34 -0600 | [diff] [blame] | 1367 | size_t pgsize = iommu_pgsize(domain, iova, size - unmapped); |
Ohad Ben-Cohen | 7d3002c | 2011-11-10 11:32:26 +0200 | [diff] [blame] | 1368 | |
Alex Williamson | bd13969 | 2013-06-17 19:57:34 -0600 | [diff] [blame] | 1369 | unmapped_page = domain->ops->unmap(domain, iova, pgsize); |
Ohad Ben-Cohen | 7d3002c | 2011-11-10 11:32:26 +0200 | [diff] [blame] | 1370 | if (!unmapped_page) |
| 1371 | break; |
| 1372 | |
Joe Perches | 6197ca8 | 2013-06-23 12:29:04 -0700 | [diff] [blame] | 1373 | pr_debug("unmapped: iova 0x%lx size 0x%zx\n", |
| 1374 | iova, unmapped_page); |
Ohad Ben-Cohen | 7d3002c | 2011-11-10 11:32:26 +0200 | [diff] [blame] | 1375 | |
| 1376 | iova += unmapped_page; |
| 1377 | unmapped += unmapped_page; |
| 1378 | } |
| 1379 | |
Shuah Khan | db8614d | 2015-01-16 20:53:17 -0700 | [diff] [blame] | 1380 | trace_unmap(orig_iova, size, unmapped); |
Ohad Ben-Cohen | 7d3002c | 2011-11-10 11:32:26 +0200 | [diff] [blame] | 1381 | return unmapped; |
Joerg Roedel | cefc53c | 2010-01-08 13:35:09 +0100 | [diff] [blame] | 1382 | } |
| 1383 | EXPORT_SYMBOL_GPL(iommu_unmap); |
Alex Williamson | 1460432 | 2011-10-21 15:56:05 -0400 | [diff] [blame] | 1384 | |
Olav Haugan | 315786e | 2014-10-25 09:55:16 -0700 | [diff] [blame] | 1385 | size_t default_iommu_map_sg(struct iommu_domain *domain, unsigned long iova, |
| 1386 | struct scatterlist *sg, unsigned int nents, int prot) |
| 1387 | { |
Joerg Roedel | 38ec010 | 2014-11-04 14:53:51 +0100 | [diff] [blame] | 1388 | struct scatterlist *s; |
Olav Haugan | 315786e | 2014-10-25 09:55:16 -0700 | [diff] [blame] | 1389 | size_t mapped = 0; |
Robin Murphy | 18f2340 | 2014-11-25 17:50:55 +0000 | [diff] [blame] | 1390 | unsigned int i, min_pagesz; |
Joerg Roedel | 38ec010 | 2014-11-04 14:53:51 +0100 | [diff] [blame] | 1391 | int ret; |
Olav Haugan | 315786e | 2014-10-25 09:55:16 -0700 | [diff] [blame] | 1392 | |
Robin Murphy | 18f2340 | 2014-11-25 17:50:55 +0000 | [diff] [blame] | 1393 | if (unlikely(domain->ops->pgsize_bitmap == 0UL)) |
| 1394 | return 0; |
Olav Haugan | 315786e | 2014-10-25 09:55:16 -0700 | [diff] [blame] | 1395 | |
Robin Murphy | 18f2340 | 2014-11-25 17:50:55 +0000 | [diff] [blame] | 1396 | min_pagesz = 1 << __ffs(domain->ops->pgsize_bitmap); |
| 1397 | |
| 1398 | for_each_sg(sg, s, nents, i) { |
| 1399 | phys_addr_t phys = page_to_phys(sg_page(s)) + s->offset; |
| 1400 | |
| 1401 | /* |
| 1402 | * We are mapping on IOMMU page boundaries, so offset within |
| 1403 | * the page must be 0. However, the IOMMU may support pages |
| 1404 | * smaller than PAGE_SIZE, so s->offset may still represent |
| 1405 | * an offset of that boundary within the CPU page. |
| 1406 | */ |
| 1407 | if (!IS_ALIGNED(s->offset, min_pagesz)) |
Joerg Roedel | 38ec010 | 2014-11-04 14:53:51 +0100 | [diff] [blame] | 1408 | goto out_err; |
| 1409 | |
| 1410 | ret = iommu_map(domain, iova + mapped, phys, s->length, prot); |
| 1411 | if (ret) |
| 1412 | goto out_err; |
| 1413 | |
| 1414 | mapped += s->length; |
Olav Haugan | 315786e | 2014-10-25 09:55:16 -0700 | [diff] [blame] | 1415 | } |
| 1416 | |
| 1417 | return mapped; |
Joerg Roedel | 38ec010 | 2014-11-04 14:53:51 +0100 | [diff] [blame] | 1418 | |
| 1419 | out_err: |
| 1420 | /* undo mappings already done */ |
| 1421 | iommu_unmap(domain, iova, mapped); |
| 1422 | |
| 1423 | return 0; |
| 1424 | |
Olav Haugan | 315786e | 2014-10-25 09:55:16 -0700 | [diff] [blame] | 1425 | } |
| 1426 | EXPORT_SYMBOL_GPL(default_iommu_map_sg); |
Joerg Roedel | d7787d5 | 2013-01-29 14:26:20 +0100 | [diff] [blame] | 1427 | |
| 1428 | int iommu_domain_window_enable(struct iommu_domain *domain, u32 wnd_nr, |
Varun Sethi | 80f97f0 | 2013-03-29 01:24:00 +0530 | [diff] [blame] | 1429 | phys_addr_t paddr, u64 size, int prot) |
Joerg Roedel | d7787d5 | 2013-01-29 14:26:20 +0100 | [diff] [blame] | 1430 | { |
| 1431 | if (unlikely(domain->ops->domain_window_enable == NULL)) |
| 1432 | return -ENODEV; |
| 1433 | |
Varun Sethi | 80f97f0 | 2013-03-29 01:24:00 +0530 | [diff] [blame] | 1434 | return domain->ops->domain_window_enable(domain, wnd_nr, paddr, size, |
| 1435 | prot); |
Joerg Roedel | d7787d5 | 2013-01-29 14:26:20 +0100 | [diff] [blame] | 1436 | } |
| 1437 | EXPORT_SYMBOL_GPL(iommu_domain_window_enable); |
| 1438 | |
| 1439 | void iommu_domain_window_disable(struct iommu_domain *domain, u32 wnd_nr) |
| 1440 | { |
| 1441 | if (unlikely(domain->ops->domain_window_disable == NULL)) |
| 1442 | return; |
| 1443 | |
| 1444 | return domain->ops->domain_window_disable(domain, wnd_nr); |
| 1445 | } |
| 1446 | EXPORT_SYMBOL_GPL(iommu_domain_window_disable); |
| 1447 | |
Alex Williamson | d72e31c | 2012-05-30 14:18:53 -0600 | [diff] [blame] | 1448 | static int __init iommu_init(void) |
Alex Williamson | 1460432 | 2011-10-21 15:56:05 -0400 | [diff] [blame] | 1449 | { |
Alex Williamson | d72e31c | 2012-05-30 14:18:53 -0600 | [diff] [blame] | 1450 | iommu_group_kset = kset_create_and_add("iommu_groups", |
| 1451 | NULL, kernel_kobj); |
| 1452 | ida_init(&iommu_group_ida); |
| 1453 | mutex_init(&iommu_group_mutex); |
Alex Williamson | 1460432 | 2011-10-21 15:56:05 -0400 | [diff] [blame] | 1454 | |
Alex Williamson | d72e31c | 2012-05-30 14:18:53 -0600 | [diff] [blame] | 1455 | BUG_ON(!iommu_group_kset); |
| 1456 | |
| 1457 | return 0; |
Alex Williamson | 1460432 | 2011-10-21 15:56:05 -0400 | [diff] [blame] | 1458 | } |
Alexey Kardashevskiy | 097e363 | 2013-01-07 18:51:52 +1100 | [diff] [blame] | 1459 | arch_initcall(iommu_init); |
Joerg Roedel | 0cd76dd | 2012-01-26 19:40:52 +0100 | [diff] [blame] | 1460 | |
| 1461 | int iommu_domain_get_attr(struct iommu_domain *domain, |
| 1462 | enum iommu_attr attr, void *data) |
| 1463 | { |
Joerg Roedel | 0ff64f8 | 2012-01-26 19:40:53 +0100 | [diff] [blame] | 1464 | struct iommu_domain_geometry *geometry; |
Joerg Roedel | d2e1216 | 2013-01-29 13:49:04 +0100 | [diff] [blame] | 1465 | bool *paging; |
Joerg Roedel | 0ff64f8 | 2012-01-26 19:40:53 +0100 | [diff] [blame] | 1466 | int ret = 0; |
Joerg Roedel | 6935671 | 2013-02-04 14:00:01 +0100 | [diff] [blame] | 1467 | u32 *count; |
Joerg Roedel | 0cd76dd | 2012-01-26 19:40:52 +0100 | [diff] [blame] | 1468 | |
Joerg Roedel | 0ff64f8 | 2012-01-26 19:40:53 +0100 | [diff] [blame] | 1469 | switch (attr) { |
| 1470 | case DOMAIN_ATTR_GEOMETRY: |
| 1471 | geometry = data; |
| 1472 | *geometry = domain->geometry; |
| 1473 | |
| 1474 | break; |
Joerg Roedel | d2e1216 | 2013-01-29 13:49:04 +0100 | [diff] [blame] | 1475 | case DOMAIN_ATTR_PAGING: |
| 1476 | paging = data; |
| 1477 | *paging = (domain->ops->pgsize_bitmap != 0UL); |
| 1478 | break; |
Joerg Roedel | 6935671 | 2013-02-04 14:00:01 +0100 | [diff] [blame] | 1479 | case DOMAIN_ATTR_WINDOWS: |
| 1480 | count = data; |
| 1481 | |
| 1482 | if (domain->ops->domain_get_windows != NULL) |
| 1483 | *count = domain->ops->domain_get_windows(domain); |
| 1484 | else |
| 1485 | ret = -ENODEV; |
| 1486 | |
| 1487 | break; |
Joerg Roedel | 0ff64f8 | 2012-01-26 19:40:53 +0100 | [diff] [blame] | 1488 | default: |
| 1489 | if (!domain->ops->domain_get_attr) |
| 1490 | return -EINVAL; |
| 1491 | |
| 1492 | ret = domain->ops->domain_get_attr(domain, attr, data); |
| 1493 | } |
| 1494 | |
| 1495 | return ret; |
Joerg Roedel | 0cd76dd | 2012-01-26 19:40:52 +0100 | [diff] [blame] | 1496 | } |
| 1497 | EXPORT_SYMBOL_GPL(iommu_domain_get_attr); |
| 1498 | |
| 1499 | int iommu_domain_set_attr(struct iommu_domain *domain, |
| 1500 | enum iommu_attr attr, void *data) |
| 1501 | { |
Joerg Roedel | 6935671 | 2013-02-04 14:00:01 +0100 | [diff] [blame] | 1502 | int ret = 0; |
| 1503 | u32 *count; |
Joerg Roedel | 0cd76dd | 2012-01-26 19:40:52 +0100 | [diff] [blame] | 1504 | |
Joerg Roedel | 6935671 | 2013-02-04 14:00:01 +0100 | [diff] [blame] | 1505 | switch (attr) { |
| 1506 | case DOMAIN_ATTR_WINDOWS: |
| 1507 | count = data; |
| 1508 | |
| 1509 | if (domain->ops->domain_set_windows != NULL) |
| 1510 | ret = domain->ops->domain_set_windows(domain, *count); |
| 1511 | else |
| 1512 | ret = -ENODEV; |
| 1513 | |
| 1514 | break; |
| 1515 | default: |
| 1516 | if (domain->ops->domain_set_attr == NULL) |
| 1517 | return -EINVAL; |
| 1518 | |
| 1519 | ret = domain->ops->domain_set_attr(domain, attr, data); |
| 1520 | } |
| 1521 | |
| 1522 | return ret; |
Joerg Roedel | 0cd76dd | 2012-01-26 19:40:52 +0100 | [diff] [blame] | 1523 | } |
| 1524 | EXPORT_SYMBOL_GPL(iommu_domain_set_attr); |
Joerg Roedel | a1015c2 | 2015-05-28 18:41:33 +0200 | [diff] [blame] | 1525 | |
| 1526 | void iommu_get_dm_regions(struct device *dev, struct list_head *list) |
| 1527 | { |
| 1528 | const struct iommu_ops *ops = dev->bus->iommu_ops; |
| 1529 | |
| 1530 | if (ops && ops->get_dm_regions) |
| 1531 | ops->get_dm_regions(dev, list); |
| 1532 | } |
| 1533 | |
| 1534 | void iommu_put_dm_regions(struct device *dev, struct list_head *list) |
| 1535 | { |
| 1536 | const struct iommu_ops *ops = dev->bus->iommu_ops; |
| 1537 | |
| 1538 | if (ops && ops->put_dm_regions) |
| 1539 | ops->put_dm_regions(dev, list); |
| 1540 | } |