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; |
Alex Williamson | d72e31c | 2012-05-30 14:18:53 -0600 | [diff] [blame] | 55 | }; |
| 56 | |
| 57 | struct iommu_device { |
| 58 | struct list_head list; |
| 59 | struct device *dev; |
| 60 | char *name; |
| 61 | }; |
| 62 | |
| 63 | struct iommu_group_attribute { |
| 64 | struct attribute attr; |
| 65 | ssize_t (*show)(struct iommu_group *group, char *buf); |
| 66 | ssize_t (*store)(struct iommu_group *group, |
| 67 | const char *buf, size_t count); |
| 68 | }; |
| 69 | |
| 70 | #define IOMMU_GROUP_ATTR(_name, _mode, _show, _store) \ |
| 71 | struct iommu_group_attribute iommu_group_attr_##_name = \ |
| 72 | __ATTR(_name, _mode, _show, _store) |
| 73 | |
| 74 | #define to_iommu_group_attr(_attr) \ |
| 75 | container_of(_attr, struct iommu_group_attribute, attr) |
| 76 | #define to_iommu_group(_kobj) \ |
| 77 | container_of(_kobj, struct iommu_group, kobj) |
| 78 | |
Joerg Roedel | 53723dc | 2015-05-28 18:41:29 +0200 | [diff] [blame] | 79 | static struct iommu_domain *__iommu_domain_alloc(struct bus_type *bus, |
| 80 | unsigned type); |
| 81 | |
Alex Williamson | d72e31c | 2012-05-30 14:18:53 -0600 | [diff] [blame] | 82 | static ssize_t iommu_group_attr_show(struct kobject *kobj, |
| 83 | struct attribute *__attr, char *buf) |
Alex Williamson | 1460432 | 2011-10-21 15:56:05 -0400 | [diff] [blame] | 84 | { |
Alex Williamson | d72e31c | 2012-05-30 14:18:53 -0600 | [diff] [blame] | 85 | struct iommu_group_attribute *attr = to_iommu_group_attr(__attr); |
| 86 | struct iommu_group *group = to_iommu_group(kobj); |
| 87 | ssize_t ret = -EIO; |
Alex Williamson | 1460432 | 2011-10-21 15:56:05 -0400 | [diff] [blame] | 88 | |
Alex Williamson | d72e31c | 2012-05-30 14:18:53 -0600 | [diff] [blame] | 89 | if (attr->show) |
| 90 | ret = attr->show(group, buf); |
| 91 | return ret; |
Alex Williamson | 1460432 | 2011-10-21 15:56:05 -0400 | [diff] [blame] | 92 | } |
Alex Williamson | d72e31c | 2012-05-30 14:18:53 -0600 | [diff] [blame] | 93 | |
| 94 | static ssize_t iommu_group_attr_store(struct kobject *kobj, |
| 95 | struct attribute *__attr, |
| 96 | const char *buf, size_t count) |
| 97 | { |
| 98 | struct iommu_group_attribute *attr = to_iommu_group_attr(__attr); |
| 99 | struct iommu_group *group = to_iommu_group(kobj); |
| 100 | ssize_t ret = -EIO; |
| 101 | |
| 102 | if (attr->store) |
| 103 | ret = attr->store(group, buf, count); |
| 104 | return ret; |
| 105 | } |
| 106 | |
| 107 | static const struct sysfs_ops iommu_group_sysfs_ops = { |
| 108 | .show = iommu_group_attr_show, |
| 109 | .store = iommu_group_attr_store, |
| 110 | }; |
| 111 | |
| 112 | static int iommu_group_create_file(struct iommu_group *group, |
| 113 | struct iommu_group_attribute *attr) |
| 114 | { |
| 115 | return sysfs_create_file(&group->kobj, &attr->attr); |
| 116 | } |
| 117 | |
| 118 | static void iommu_group_remove_file(struct iommu_group *group, |
| 119 | struct iommu_group_attribute *attr) |
| 120 | { |
| 121 | sysfs_remove_file(&group->kobj, &attr->attr); |
| 122 | } |
| 123 | |
| 124 | static ssize_t iommu_group_show_name(struct iommu_group *group, char *buf) |
| 125 | { |
| 126 | return sprintf(buf, "%s\n", group->name); |
| 127 | } |
| 128 | |
| 129 | static IOMMU_GROUP_ATTR(name, S_IRUGO, iommu_group_show_name, NULL); |
| 130 | |
| 131 | static void iommu_group_release(struct kobject *kobj) |
| 132 | { |
| 133 | struct iommu_group *group = to_iommu_group(kobj); |
| 134 | |
Joerg Roedel | 269aa80 | 2015-05-28 18:41:25 +0200 | [diff] [blame] | 135 | pr_debug("Releasing group %d\n", group->id); |
| 136 | |
Alex Williamson | d72e31c | 2012-05-30 14:18:53 -0600 | [diff] [blame] | 137 | if (group->iommu_data_release) |
| 138 | group->iommu_data_release(group->iommu_data); |
| 139 | |
| 140 | mutex_lock(&iommu_group_mutex); |
| 141 | ida_remove(&iommu_group_ida, group->id); |
| 142 | mutex_unlock(&iommu_group_mutex); |
| 143 | |
Joerg Roedel | 53723dc | 2015-05-28 18:41:29 +0200 | [diff] [blame] | 144 | if (group->default_domain) |
| 145 | iommu_domain_free(group->default_domain); |
| 146 | |
Alex Williamson | d72e31c | 2012-05-30 14:18:53 -0600 | [diff] [blame] | 147 | kfree(group->name); |
| 148 | kfree(group); |
| 149 | } |
| 150 | |
| 151 | static struct kobj_type iommu_group_ktype = { |
| 152 | .sysfs_ops = &iommu_group_sysfs_ops, |
| 153 | .release = iommu_group_release, |
| 154 | }; |
| 155 | |
| 156 | /** |
| 157 | * iommu_group_alloc - Allocate a new group |
| 158 | * @name: Optional name to associate with group, visible in sysfs |
| 159 | * |
| 160 | * This function is called by an iommu driver to allocate a new iommu |
| 161 | * group. The iommu group represents the minimum granularity of the iommu. |
| 162 | * Upon successful return, the caller holds a reference to the supplied |
| 163 | * group in order to hold the group until devices are added. Use |
| 164 | * iommu_group_put() to release this extra reference count, allowing the |
| 165 | * group to be automatically reclaimed once it has no devices or external |
| 166 | * references. |
| 167 | */ |
| 168 | struct iommu_group *iommu_group_alloc(void) |
| 169 | { |
| 170 | struct iommu_group *group; |
| 171 | int ret; |
| 172 | |
| 173 | group = kzalloc(sizeof(*group), GFP_KERNEL); |
| 174 | if (!group) |
| 175 | return ERR_PTR(-ENOMEM); |
| 176 | |
| 177 | group->kobj.kset = iommu_group_kset; |
| 178 | mutex_init(&group->mutex); |
| 179 | INIT_LIST_HEAD(&group->devices); |
| 180 | BLOCKING_INIT_NOTIFIER_HEAD(&group->notifier); |
| 181 | |
| 182 | mutex_lock(&iommu_group_mutex); |
| 183 | |
| 184 | again: |
| 185 | if (unlikely(0 == ida_pre_get(&iommu_group_ida, GFP_KERNEL))) { |
| 186 | kfree(group); |
| 187 | mutex_unlock(&iommu_group_mutex); |
| 188 | return ERR_PTR(-ENOMEM); |
| 189 | } |
| 190 | |
| 191 | if (-EAGAIN == ida_get_new(&iommu_group_ida, &group->id)) |
| 192 | goto again; |
| 193 | |
| 194 | mutex_unlock(&iommu_group_mutex); |
| 195 | |
| 196 | ret = kobject_init_and_add(&group->kobj, &iommu_group_ktype, |
| 197 | NULL, "%d", group->id); |
| 198 | if (ret) { |
| 199 | mutex_lock(&iommu_group_mutex); |
| 200 | ida_remove(&iommu_group_ida, group->id); |
| 201 | mutex_unlock(&iommu_group_mutex); |
| 202 | kfree(group); |
| 203 | return ERR_PTR(ret); |
| 204 | } |
| 205 | |
| 206 | group->devices_kobj = kobject_create_and_add("devices", &group->kobj); |
| 207 | if (!group->devices_kobj) { |
| 208 | kobject_put(&group->kobj); /* triggers .release & free */ |
| 209 | return ERR_PTR(-ENOMEM); |
| 210 | } |
| 211 | |
| 212 | /* |
| 213 | * The devices_kobj holds a reference on the group kobject, so |
| 214 | * as long as that exists so will the group. We can therefore |
| 215 | * use the devices_kobj for reference counting. |
| 216 | */ |
| 217 | kobject_put(&group->kobj); |
| 218 | |
Joerg Roedel | 269aa80 | 2015-05-28 18:41:25 +0200 | [diff] [blame] | 219 | pr_debug("Allocated group %d\n", group->id); |
| 220 | |
Alex Williamson | d72e31c | 2012-05-30 14:18:53 -0600 | [diff] [blame] | 221 | return group; |
| 222 | } |
| 223 | EXPORT_SYMBOL_GPL(iommu_group_alloc); |
| 224 | |
Alexey Kardashevskiy | aa16bea | 2013-03-25 10:23:49 +1100 | [diff] [blame] | 225 | struct iommu_group *iommu_group_get_by_id(int id) |
| 226 | { |
| 227 | struct kobject *group_kobj; |
| 228 | struct iommu_group *group; |
| 229 | const char *name; |
| 230 | |
| 231 | if (!iommu_group_kset) |
| 232 | return NULL; |
| 233 | |
| 234 | name = kasprintf(GFP_KERNEL, "%d", id); |
| 235 | if (!name) |
| 236 | return NULL; |
| 237 | |
| 238 | group_kobj = kset_find_obj(iommu_group_kset, name); |
| 239 | kfree(name); |
| 240 | |
| 241 | if (!group_kobj) |
| 242 | return NULL; |
| 243 | |
| 244 | group = container_of(group_kobj, struct iommu_group, kobj); |
| 245 | BUG_ON(group->id != id); |
| 246 | |
| 247 | kobject_get(group->devices_kobj); |
| 248 | kobject_put(&group->kobj); |
| 249 | |
| 250 | return group; |
| 251 | } |
| 252 | EXPORT_SYMBOL_GPL(iommu_group_get_by_id); |
| 253 | |
Alex Williamson | d72e31c | 2012-05-30 14:18:53 -0600 | [diff] [blame] | 254 | /** |
| 255 | * iommu_group_get_iommudata - retrieve iommu_data registered for a group |
| 256 | * @group: the group |
| 257 | * |
| 258 | * iommu drivers can store data in the group for use when doing iommu |
| 259 | * operations. This function provides a way to retrieve it. Caller |
| 260 | * should hold a group reference. |
| 261 | */ |
| 262 | void *iommu_group_get_iommudata(struct iommu_group *group) |
| 263 | { |
| 264 | return group->iommu_data; |
| 265 | } |
| 266 | EXPORT_SYMBOL_GPL(iommu_group_get_iommudata); |
| 267 | |
| 268 | /** |
| 269 | * iommu_group_set_iommudata - set iommu_data for a group |
| 270 | * @group: the group |
| 271 | * @iommu_data: new data |
| 272 | * @release: release function for iommu_data |
| 273 | * |
| 274 | * iommu drivers can store data in the group for use when doing iommu |
| 275 | * operations. This function provides a way to set the data after |
| 276 | * the group has been allocated. Caller should hold a group reference. |
| 277 | */ |
| 278 | void iommu_group_set_iommudata(struct iommu_group *group, void *iommu_data, |
| 279 | void (*release)(void *iommu_data)) |
| 280 | { |
| 281 | group->iommu_data = iommu_data; |
| 282 | group->iommu_data_release = release; |
| 283 | } |
| 284 | EXPORT_SYMBOL_GPL(iommu_group_set_iommudata); |
| 285 | |
| 286 | /** |
| 287 | * iommu_group_set_name - set name for a group |
| 288 | * @group: the group |
| 289 | * @name: name |
| 290 | * |
| 291 | * Allow iommu driver to set a name for a group. When set it will |
| 292 | * appear in a name attribute file under the group in sysfs. |
| 293 | */ |
| 294 | int iommu_group_set_name(struct iommu_group *group, const char *name) |
| 295 | { |
| 296 | int ret; |
| 297 | |
| 298 | if (group->name) { |
| 299 | iommu_group_remove_file(group, &iommu_group_attr_name); |
| 300 | kfree(group->name); |
| 301 | group->name = NULL; |
| 302 | if (!name) |
| 303 | return 0; |
| 304 | } |
| 305 | |
| 306 | group->name = kstrdup(name, GFP_KERNEL); |
| 307 | if (!group->name) |
| 308 | return -ENOMEM; |
| 309 | |
| 310 | ret = iommu_group_create_file(group, &iommu_group_attr_name); |
| 311 | if (ret) { |
| 312 | kfree(group->name); |
| 313 | group->name = NULL; |
| 314 | return ret; |
| 315 | } |
| 316 | |
| 317 | return 0; |
| 318 | } |
| 319 | EXPORT_SYMBOL_GPL(iommu_group_set_name); |
| 320 | |
| 321 | /** |
| 322 | * iommu_group_add_device - add a device to an iommu group |
| 323 | * @group: the group into which to add the device (reference should be held) |
| 324 | * @dev: the device |
| 325 | * |
| 326 | * This function is called by an iommu driver to add a device into a |
| 327 | * group. Adding a device increments the group reference count. |
| 328 | */ |
| 329 | int iommu_group_add_device(struct iommu_group *group, struct device *dev) |
| 330 | { |
| 331 | int ret, i = 0; |
| 332 | struct iommu_device *device; |
| 333 | |
| 334 | device = kzalloc(sizeof(*device), GFP_KERNEL); |
| 335 | if (!device) |
| 336 | return -ENOMEM; |
| 337 | |
| 338 | device->dev = dev; |
| 339 | |
| 340 | ret = sysfs_create_link(&dev->kobj, &group->kobj, "iommu_group"); |
| 341 | if (ret) { |
| 342 | kfree(device); |
| 343 | return ret; |
| 344 | } |
| 345 | |
| 346 | device->name = kasprintf(GFP_KERNEL, "%s", kobject_name(&dev->kobj)); |
| 347 | rename: |
| 348 | if (!device->name) { |
| 349 | sysfs_remove_link(&dev->kobj, "iommu_group"); |
| 350 | kfree(device); |
| 351 | return -ENOMEM; |
| 352 | } |
| 353 | |
| 354 | ret = sysfs_create_link_nowarn(group->devices_kobj, |
| 355 | &dev->kobj, device->name); |
| 356 | if (ret) { |
| 357 | kfree(device->name); |
| 358 | if (ret == -EEXIST && i >= 0) { |
| 359 | /* |
| 360 | * Account for the slim chance of collision |
| 361 | * and append an instance to the name. |
| 362 | */ |
| 363 | device->name = kasprintf(GFP_KERNEL, "%s.%d", |
| 364 | kobject_name(&dev->kobj), i++); |
| 365 | goto rename; |
| 366 | } |
| 367 | |
| 368 | sysfs_remove_link(&dev->kobj, "iommu_group"); |
| 369 | kfree(device); |
| 370 | return ret; |
| 371 | } |
| 372 | |
| 373 | kobject_get(group->devices_kobj); |
| 374 | |
| 375 | dev->iommu_group = group; |
| 376 | |
| 377 | mutex_lock(&group->mutex); |
| 378 | list_add_tail(&device->list, &group->devices); |
| 379 | mutex_unlock(&group->mutex); |
| 380 | |
| 381 | /* Notify any listeners about change to group. */ |
| 382 | blocking_notifier_call_chain(&group->notifier, |
| 383 | IOMMU_GROUP_NOTIFY_ADD_DEVICE, dev); |
Shuah Khan | d1cf7e8 | 2013-08-15 11:59:24 -0600 | [diff] [blame] | 384 | |
| 385 | trace_add_device_to_group(group->id, dev); |
Joerg Roedel | 269aa80 | 2015-05-28 18:41:25 +0200 | [diff] [blame] | 386 | |
| 387 | pr_info("Adding device %s to group %d\n", dev_name(dev), group->id); |
| 388 | |
Alex Williamson | d72e31c | 2012-05-30 14:18:53 -0600 | [diff] [blame] | 389 | return 0; |
| 390 | } |
| 391 | EXPORT_SYMBOL_GPL(iommu_group_add_device); |
| 392 | |
| 393 | /** |
| 394 | * iommu_group_remove_device - remove a device from it's current group |
| 395 | * @dev: device to be removed |
| 396 | * |
| 397 | * This function is called by an iommu driver to remove the device from |
| 398 | * it's current group. This decrements the iommu group reference count. |
| 399 | */ |
| 400 | void iommu_group_remove_device(struct device *dev) |
| 401 | { |
| 402 | struct iommu_group *group = dev->iommu_group; |
| 403 | struct iommu_device *tmp_device, *device = NULL; |
| 404 | |
Joerg Roedel | 269aa80 | 2015-05-28 18:41:25 +0200 | [diff] [blame] | 405 | pr_info("Removing device %s from group %d\n", dev_name(dev), group->id); |
| 406 | |
Alex Williamson | d72e31c | 2012-05-30 14:18:53 -0600 | [diff] [blame] | 407 | /* Pre-notify listeners that a device is being removed. */ |
| 408 | blocking_notifier_call_chain(&group->notifier, |
| 409 | IOMMU_GROUP_NOTIFY_DEL_DEVICE, dev); |
| 410 | |
| 411 | mutex_lock(&group->mutex); |
| 412 | list_for_each_entry(tmp_device, &group->devices, list) { |
| 413 | if (tmp_device->dev == dev) { |
| 414 | device = tmp_device; |
| 415 | list_del(&device->list); |
| 416 | break; |
| 417 | } |
| 418 | } |
| 419 | mutex_unlock(&group->mutex); |
| 420 | |
| 421 | if (!device) |
| 422 | return; |
| 423 | |
| 424 | sysfs_remove_link(group->devices_kobj, device->name); |
| 425 | sysfs_remove_link(&dev->kobj, "iommu_group"); |
| 426 | |
Shuah Khan | 2e75708 | 2013-08-15 11:59:25 -0600 | [diff] [blame] | 427 | trace_remove_device_from_group(group->id, dev); |
| 428 | |
Alex Williamson | d72e31c | 2012-05-30 14:18:53 -0600 | [diff] [blame] | 429 | kfree(device->name); |
| 430 | kfree(device); |
| 431 | dev->iommu_group = NULL; |
| 432 | kobject_put(group->devices_kobj); |
| 433 | } |
| 434 | EXPORT_SYMBOL_GPL(iommu_group_remove_device); |
| 435 | |
Joerg Roedel | 426a273 | 2015-05-28 18:41:30 +0200 | [diff] [blame^] | 436 | static int iommu_group_device_count(struct iommu_group *group) |
| 437 | { |
| 438 | struct iommu_device *entry; |
| 439 | int ret = 0; |
| 440 | |
| 441 | list_for_each_entry(entry, &group->devices, list) |
| 442 | ret++; |
| 443 | |
| 444 | return ret; |
| 445 | } |
| 446 | |
Alex Williamson | d72e31c | 2012-05-30 14:18:53 -0600 | [diff] [blame] | 447 | /** |
| 448 | * iommu_group_for_each_dev - iterate over each device in the group |
| 449 | * @group: the group |
| 450 | * @data: caller opaque data to be passed to callback function |
| 451 | * @fn: caller supplied callback function |
| 452 | * |
| 453 | * This function is called by group users to iterate over group devices. |
| 454 | * Callers should hold a reference count to the group during callback. |
| 455 | * The group->mutex is held across callbacks, which will block calls to |
| 456 | * iommu_group_add/remove_device. |
| 457 | */ |
| 458 | int iommu_group_for_each_dev(struct iommu_group *group, void *data, |
| 459 | int (*fn)(struct device *, void *)) |
| 460 | { |
| 461 | struct iommu_device *device; |
| 462 | int ret = 0; |
| 463 | |
| 464 | mutex_lock(&group->mutex); |
| 465 | list_for_each_entry(device, &group->devices, list) { |
| 466 | ret = fn(device->dev, data); |
| 467 | if (ret) |
| 468 | break; |
| 469 | } |
| 470 | mutex_unlock(&group->mutex); |
| 471 | return ret; |
| 472 | } |
| 473 | EXPORT_SYMBOL_GPL(iommu_group_for_each_dev); |
| 474 | |
| 475 | /** |
| 476 | * iommu_group_get - Return the group for a device and increment reference |
| 477 | * @dev: get the group that this device belongs to |
| 478 | * |
| 479 | * This function is called by iommu drivers and users to get the group |
| 480 | * for the specified device. If found, the group is returned and the group |
| 481 | * reference in incremented, else NULL. |
| 482 | */ |
| 483 | struct iommu_group *iommu_group_get(struct device *dev) |
| 484 | { |
| 485 | struct iommu_group *group = dev->iommu_group; |
| 486 | |
| 487 | if (group) |
| 488 | kobject_get(group->devices_kobj); |
| 489 | |
| 490 | return group; |
| 491 | } |
| 492 | EXPORT_SYMBOL_GPL(iommu_group_get); |
| 493 | |
| 494 | /** |
| 495 | * iommu_group_put - Decrement group reference |
| 496 | * @group: the group to use |
| 497 | * |
| 498 | * This function is called by iommu drivers and users to release the |
| 499 | * iommu group. Once the reference count is zero, the group is released. |
| 500 | */ |
| 501 | void iommu_group_put(struct iommu_group *group) |
| 502 | { |
| 503 | if (group) |
| 504 | kobject_put(group->devices_kobj); |
| 505 | } |
| 506 | EXPORT_SYMBOL_GPL(iommu_group_put); |
| 507 | |
| 508 | /** |
| 509 | * iommu_group_register_notifier - Register a notifier for group changes |
| 510 | * @group: the group to watch |
| 511 | * @nb: notifier block to signal |
| 512 | * |
| 513 | * This function allows iommu group users to track changes in a group. |
| 514 | * See include/linux/iommu.h for actions sent via this notifier. Caller |
| 515 | * should hold a reference to the group throughout notifier registration. |
| 516 | */ |
| 517 | int iommu_group_register_notifier(struct iommu_group *group, |
| 518 | struct notifier_block *nb) |
| 519 | { |
| 520 | return blocking_notifier_chain_register(&group->notifier, nb); |
| 521 | } |
| 522 | EXPORT_SYMBOL_GPL(iommu_group_register_notifier); |
| 523 | |
| 524 | /** |
| 525 | * iommu_group_unregister_notifier - Unregister a notifier |
| 526 | * @group: the group to watch |
| 527 | * @nb: notifier block to signal |
| 528 | * |
| 529 | * Unregister a previously registered group notifier block. |
| 530 | */ |
| 531 | int iommu_group_unregister_notifier(struct iommu_group *group, |
| 532 | struct notifier_block *nb) |
| 533 | { |
| 534 | return blocking_notifier_chain_unregister(&group->notifier, nb); |
| 535 | } |
| 536 | EXPORT_SYMBOL_GPL(iommu_group_unregister_notifier); |
| 537 | |
| 538 | /** |
| 539 | * iommu_group_id - Return ID for a group |
| 540 | * @group: the group to ID |
| 541 | * |
| 542 | * Return the unique ID for the group matching the sysfs group number. |
| 543 | */ |
| 544 | int iommu_group_id(struct iommu_group *group) |
| 545 | { |
| 546 | return group->id; |
| 547 | } |
| 548 | EXPORT_SYMBOL_GPL(iommu_group_id); |
Alex Williamson | 1460432 | 2011-10-21 15:56:05 -0400 | [diff] [blame] | 549 | |
Alex Williamson | f096c06 | 2014-09-19 10:03:06 -0600 | [diff] [blame] | 550 | static struct iommu_group *get_pci_alias_group(struct pci_dev *pdev, |
| 551 | unsigned long *devfns); |
| 552 | |
Alex Williamson | 104a1c1 | 2014-07-03 09:51:18 -0600 | [diff] [blame] | 553 | /* |
| 554 | * To consider a PCI device isolated, we require ACS to support Source |
| 555 | * Validation, Request Redirection, Completer Redirection, and Upstream |
| 556 | * Forwarding. This effectively means that devices cannot spoof their |
| 557 | * requester ID, requests and completions cannot be redirected, and all |
| 558 | * transactions are forwarded upstream, even as it passes through a |
| 559 | * bridge where the target device is downstream. |
| 560 | */ |
| 561 | #define REQ_ACS_FLAGS (PCI_ACS_SV | PCI_ACS_RR | PCI_ACS_CR | PCI_ACS_UF) |
| 562 | |
Alex Williamson | f096c06 | 2014-09-19 10:03:06 -0600 | [diff] [blame] | 563 | /* |
| 564 | * For multifunction devices which are not isolated from each other, find |
| 565 | * all the other non-isolated functions and look for existing groups. For |
| 566 | * each function, we also need to look for aliases to or from other devices |
| 567 | * that may already have a group. |
| 568 | */ |
| 569 | static struct iommu_group *get_pci_function_alias_group(struct pci_dev *pdev, |
| 570 | unsigned long *devfns) |
| 571 | { |
| 572 | struct pci_dev *tmp = NULL; |
| 573 | struct iommu_group *group; |
| 574 | |
| 575 | if (!pdev->multifunction || pci_acs_enabled(pdev, REQ_ACS_FLAGS)) |
| 576 | return NULL; |
| 577 | |
| 578 | for_each_pci_dev(tmp) { |
| 579 | if (tmp == pdev || tmp->bus != pdev->bus || |
| 580 | PCI_SLOT(tmp->devfn) != PCI_SLOT(pdev->devfn) || |
| 581 | pci_acs_enabled(tmp, REQ_ACS_FLAGS)) |
| 582 | continue; |
| 583 | |
| 584 | group = get_pci_alias_group(tmp, devfns); |
| 585 | if (group) { |
| 586 | pci_dev_put(tmp); |
| 587 | return group; |
| 588 | } |
| 589 | } |
| 590 | |
| 591 | return NULL; |
| 592 | } |
| 593 | |
| 594 | /* |
| 595 | * Look for aliases to or from the given device for exisiting groups. The |
| 596 | * dma_alias_devfn only supports aliases on the same bus, therefore the search |
| 597 | * space is quite small (especially since we're really only looking at pcie |
| 598 | * device, and therefore only expect multiple slots on the root complex or |
| 599 | * downstream switch ports). It's conceivable though that a pair of |
| 600 | * multifunction devices could have aliases between them that would cause a |
| 601 | * loop. To prevent this, we use a bitmap to track where we've been. |
| 602 | */ |
| 603 | static struct iommu_group *get_pci_alias_group(struct pci_dev *pdev, |
| 604 | unsigned long *devfns) |
| 605 | { |
| 606 | struct pci_dev *tmp = NULL; |
| 607 | struct iommu_group *group; |
| 608 | |
| 609 | if (test_and_set_bit(pdev->devfn & 0xff, devfns)) |
| 610 | return NULL; |
| 611 | |
| 612 | group = iommu_group_get(&pdev->dev); |
| 613 | if (group) |
| 614 | return group; |
| 615 | |
| 616 | for_each_pci_dev(tmp) { |
| 617 | if (tmp == pdev || tmp->bus != pdev->bus) |
| 618 | continue; |
| 619 | |
| 620 | /* We alias them or they alias us */ |
| 621 | if (((pdev->dev_flags & PCI_DEV_FLAGS_DMA_ALIAS_DEVFN) && |
| 622 | pdev->dma_alias_devfn == tmp->devfn) || |
| 623 | ((tmp->dev_flags & PCI_DEV_FLAGS_DMA_ALIAS_DEVFN) && |
| 624 | tmp->dma_alias_devfn == pdev->devfn)) { |
| 625 | |
| 626 | group = get_pci_alias_group(tmp, devfns); |
| 627 | if (group) { |
| 628 | pci_dev_put(tmp); |
| 629 | return group; |
| 630 | } |
| 631 | |
| 632 | group = get_pci_function_alias_group(tmp, devfns); |
| 633 | if (group) { |
| 634 | pci_dev_put(tmp); |
| 635 | return group; |
| 636 | } |
| 637 | } |
| 638 | } |
| 639 | |
| 640 | return NULL; |
| 641 | } |
| 642 | |
Alex Williamson | 104a1c1 | 2014-07-03 09:51:18 -0600 | [diff] [blame] | 643 | struct group_for_pci_data { |
| 644 | struct pci_dev *pdev; |
| 645 | struct iommu_group *group; |
| 646 | }; |
| 647 | |
| 648 | /* |
| 649 | * DMA alias iterator callback, return the last seen device. Stop and return |
| 650 | * the IOMMU group if we find one along the way. |
| 651 | */ |
| 652 | static int get_pci_alias_or_group(struct pci_dev *pdev, u16 alias, void *opaque) |
| 653 | { |
| 654 | struct group_for_pci_data *data = opaque; |
| 655 | |
| 656 | data->pdev = pdev; |
| 657 | data->group = iommu_group_get(&pdev->dev); |
| 658 | |
| 659 | return data->group != NULL; |
| 660 | } |
| 661 | |
| 662 | /* |
| 663 | * Use standard PCI bus topology, isolation features, and DMA alias quirks |
| 664 | * to find or create an IOMMU group for a device. |
| 665 | */ |
| 666 | static struct iommu_group *iommu_group_get_for_pci_dev(struct pci_dev *pdev) |
| 667 | { |
| 668 | struct group_for_pci_data data; |
| 669 | struct pci_bus *bus; |
| 670 | struct iommu_group *group = NULL; |
Alex Williamson | f096c06 | 2014-09-19 10:03:06 -0600 | [diff] [blame] | 671 | u64 devfns[4] = { 0 }; |
Alex Williamson | 104a1c1 | 2014-07-03 09:51:18 -0600 | [diff] [blame] | 672 | |
| 673 | /* |
| 674 | * Find the upstream DMA alias for the device. A device must not |
| 675 | * be aliased due to topology in order to have its own IOMMU group. |
| 676 | * If we find an alias along the way that already belongs to a |
| 677 | * group, use it. |
| 678 | */ |
| 679 | if (pci_for_each_dma_alias(pdev, get_pci_alias_or_group, &data)) |
| 680 | return data.group; |
| 681 | |
| 682 | pdev = data.pdev; |
| 683 | |
| 684 | /* |
| 685 | * Continue upstream from the point of minimum IOMMU granularity |
| 686 | * due to aliases to the point where devices are protected from |
| 687 | * peer-to-peer DMA by PCI ACS. Again, if we find an existing |
| 688 | * group, use it. |
| 689 | */ |
| 690 | for (bus = pdev->bus; !pci_is_root_bus(bus); bus = bus->parent) { |
| 691 | if (!bus->self) |
| 692 | continue; |
| 693 | |
| 694 | if (pci_acs_path_enabled(bus->self, NULL, REQ_ACS_FLAGS)) |
| 695 | break; |
| 696 | |
| 697 | pdev = bus->self; |
| 698 | |
| 699 | group = iommu_group_get(&pdev->dev); |
| 700 | if (group) |
| 701 | return group; |
| 702 | } |
| 703 | |
| 704 | /* |
Alex Williamson | f096c06 | 2014-09-19 10:03:06 -0600 | [diff] [blame] | 705 | * Look for existing groups on device aliases. If we alias another |
| 706 | * device or another device aliases us, use the same group. |
Alex Williamson | 104a1c1 | 2014-07-03 09:51:18 -0600 | [diff] [blame] | 707 | */ |
Alex Williamson | f096c06 | 2014-09-19 10:03:06 -0600 | [diff] [blame] | 708 | group = get_pci_alias_group(pdev, (unsigned long *)devfns); |
| 709 | if (group) |
| 710 | return group; |
Alex Williamson | 104a1c1 | 2014-07-03 09:51:18 -0600 | [diff] [blame] | 711 | |
| 712 | /* |
Alex Williamson | f096c06 | 2014-09-19 10:03:06 -0600 | [diff] [blame] | 713 | * Look for existing groups on non-isolated functions on the same |
| 714 | * slot and aliases of those funcions, if any. No need to clear |
| 715 | * the search bitmap, the tested devfns are still valid. |
Alex Williamson | 104a1c1 | 2014-07-03 09:51:18 -0600 | [diff] [blame] | 716 | */ |
Alex Williamson | f096c06 | 2014-09-19 10:03:06 -0600 | [diff] [blame] | 717 | group = get_pci_function_alias_group(pdev, (unsigned long *)devfns); |
| 718 | if (group) |
| 719 | return group; |
Alex Williamson | 104a1c1 | 2014-07-03 09:51:18 -0600 | [diff] [blame] | 720 | |
| 721 | /* No shared group found, allocate new */ |
Joerg Roedel | 53723dc | 2015-05-28 18:41:29 +0200 | [diff] [blame] | 722 | group = iommu_group_alloc(); |
| 723 | if (group) { |
| 724 | /* |
| 725 | * Try to allocate a default domain - needs support from the |
| 726 | * IOMMU driver. |
| 727 | */ |
| 728 | group->default_domain = __iommu_domain_alloc(pdev->dev.bus, |
| 729 | IOMMU_DOMAIN_DMA); |
| 730 | } |
| 731 | |
| 732 | return group; |
Alex Williamson | 104a1c1 | 2014-07-03 09:51:18 -0600 | [diff] [blame] | 733 | } |
| 734 | |
| 735 | /** |
| 736 | * iommu_group_get_for_dev - Find or create the IOMMU group for a device |
| 737 | * @dev: target device |
| 738 | * |
| 739 | * This function is intended to be called by IOMMU drivers and extended to |
| 740 | * support common, bus-defined algorithms when determining or creating the |
| 741 | * IOMMU group for a device. On success, the caller will hold a reference |
| 742 | * to the returned IOMMU group, which will already include the provided |
| 743 | * device. The reference should be released with iommu_group_put(). |
| 744 | */ |
| 745 | struct iommu_group *iommu_group_get_for_dev(struct device *dev) |
| 746 | { |
Joerg Roedel | c4a783b | 2014-08-21 22:32:08 +0200 | [diff] [blame] | 747 | struct iommu_group *group; |
Alex Williamson | 104a1c1 | 2014-07-03 09:51:18 -0600 | [diff] [blame] | 748 | int ret; |
| 749 | |
| 750 | group = iommu_group_get(dev); |
| 751 | if (group) |
| 752 | return group; |
| 753 | |
Joerg Roedel | c4a783b | 2014-08-21 22:32:08 +0200 | [diff] [blame] | 754 | if (!dev_is_pci(dev)) |
| 755 | return ERR_PTR(-EINVAL); |
| 756 | |
| 757 | group = iommu_group_get_for_pci_dev(to_pci_dev(dev)); |
Alex Williamson | 104a1c1 | 2014-07-03 09:51:18 -0600 | [diff] [blame] | 758 | |
| 759 | if (IS_ERR(group)) |
| 760 | return group; |
| 761 | |
| 762 | ret = iommu_group_add_device(group, dev); |
| 763 | if (ret) { |
| 764 | iommu_group_put(group); |
| 765 | return ERR_PTR(ret); |
| 766 | } |
| 767 | |
| 768 | return group; |
| 769 | } |
| 770 | |
Alex Williamson | 1460432 | 2011-10-21 15:56:05 -0400 | [diff] [blame] | 771 | static int add_iommu_group(struct device *dev, void *data) |
| 772 | { |
Thierry Reding | b22f643 | 2014-06-27 09:03:12 +0200 | [diff] [blame] | 773 | struct iommu_callback_data *cb = data; |
| 774 | const struct iommu_ops *ops = cb->ops; |
Alex Williamson | 1460432 | 2011-10-21 15:56:05 -0400 | [diff] [blame] | 775 | |
Alex Williamson | d72e31c | 2012-05-30 14:18:53 -0600 | [diff] [blame] | 776 | if (!ops->add_device) |
Marek Szyprowski | 461bfb3f | 2014-11-19 11:15:31 +0000 | [diff] [blame] | 777 | return 0; |
Alex Williamson | d72e31c | 2012-05-30 14:18:53 -0600 | [diff] [blame] | 778 | |
| 779 | WARN_ON(dev->iommu_group); |
| 780 | |
Joerg Roedel | 19762d7 | 2015-05-28 18:41:26 +0200 | [diff] [blame] | 781 | return ops->add_device(dev); |
Alex Williamson | 1460432 | 2011-10-21 15:56:05 -0400 | [diff] [blame] | 782 | } |
| 783 | |
Joerg Roedel | 8da3014 | 2015-05-28 18:41:27 +0200 | [diff] [blame] | 784 | static int remove_iommu_group(struct device *dev, void *data) |
| 785 | { |
| 786 | struct iommu_callback_data *cb = data; |
| 787 | const struct iommu_ops *ops = cb->ops; |
| 788 | |
| 789 | if (ops->remove_device && dev->iommu_group) |
| 790 | ops->remove_device(dev); |
| 791 | |
| 792 | return 0; |
| 793 | } |
| 794 | |
Alex Williamson | d72e31c | 2012-05-30 14:18:53 -0600 | [diff] [blame] | 795 | static int iommu_bus_notifier(struct notifier_block *nb, |
| 796 | unsigned long action, void *data) |
Alex Williamson | 1460432 | 2011-10-21 15:56:05 -0400 | [diff] [blame] | 797 | { |
| 798 | struct device *dev = data; |
Thierry Reding | b22f643 | 2014-06-27 09:03:12 +0200 | [diff] [blame] | 799 | const struct iommu_ops *ops = dev->bus->iommu_ops; |
Alex Williamson | d72e31c | 2012-05-30 14:18:53 -0600 | [diff] [blame] | 800 | struct iommu_group *group; |
| 801 | unsigned long group_action = 0; |
Alex Williamson | 1460432 | 2011-10-21 15:56:05 -0400 | [diff] [blame] | 802 | |
Alex Williamson | d72e31c | 2012-05-30 14:18:53 -0600 | [diff] [blame] | 803 | /* |
| 804 | * ADD/DEL call into iommu driver ops if provided, which may |
| 805 | * result in ADD/DEL notifiers to group->notifier |
| 806 | */ |
| 807 | if (action == BUS_NOTIFY_ADD_DEVICE) { |
| 808 | if (ops->add_device) |
| 809 | return ops->add_device(dev); |
Joerg Roedel | 843cb6d | 2015-05-28 18:41:28 +0200 | [diff] [blame] | 810 | } else if (action == BUS_NOTIFY_REMOVED_DEVICE) { |
Alex Williamson | d72e31c | 2012-05-30 14:18:53 -0600 | [diff] [blame] | 811 | if (ops->remove_device && dev->iommu_group) { |
| 812 | ops->remove_device(dev); |
| 813 | return 0; |
| 814 | } |
| 815 | } |
Alex Williamson | 1460432 | 2011-10-21 15:56:05 -0400 | [diff] [blame] | 816 | |
Alex Williamson | d72e31c | 2012-05-30 14:18:53 -0600 | [diff] [blame] | 817 | /* |
| 818 | * Remaining BUS_NOTIFYs get filtered and republished to the |
| 819 | * group, if anyone is listening |
| 820 | */ |
| 821 | group = iommu_group_get(dev); |
| 822 | if (!group) |
| 823 | return 0; |
| 824 | |
| 825 | switch (action) { |
| 826 | case BUS_NOTIFY_BIND_DRIVER: |
| 827 | group_action = IOMMU_GROUP_NOTIFY_BIND_DRIVER; |
| 828 | break; |
| 829 | case BUS_NOTIFY_BOUND_DRIVER: |
| 830 | group_action = IOMMU_GROUP_NOTIFY_BOUND_DRIVER; |
| 831 | break; |
| 832 | case BUS_NOTIFY_UNBIND_DRIVER: |
| 833 | group_action = IOMMU_GROUP_NOTIFY_UNBIND_DRIVER; |
| 834 | break; |
| 835 | case BUS_NOTIFY_UNBOUND_DRIVER: |
| 836 | group_action = IOMMU_GROUP_NOTIFY_UNBOUND_DRIVER; |
| 837 | break; |
| 838 | } |
| 839 | |
| 840 | if (group_action) |
| 841 | blocking_notifier_call_chain(&group->notifier, |
| 842 | group_action, dev); |
| 843 | |
| 844 | iommu_group_put(group); |
Alex Williamson | 1460432 | 2011-10-21 15:56:05 -0400 | [diff] [blame] | 845 | return 0; |
| 846 | } |
| 847 | |
Mark Salter | fb3e306 | 2014-09-21 13:58:24 -0400 | [diff] [blame] | 848 | 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] | 849 | { |
Mark Salter | fb3e306 | 2014-09-21 13:58:24 -0400 | [diff] [blame] | 850 | int err; |
| 851 | struct notifier_block *nb; |
Thierry Reding | b22f643 | 2014-06-27 09:03:12 +0200 | [diff] [blame] | 852 | struct iommu_callback_data cb = { |
| 853 | .ops = ops, |
| 854 | }; |
| 855 | |
Mark Salter | fb3e306 | 2014-09-21 13:58:24 -0400 | [diff] [blame] | 856 | nb = kzalloc(sizeof(struct notifier_block), GFP_KERNEL); |
| 857 | if (!nb) |
| 858 | return -ENOMEM; |
| 859 | |
| 860 | nb->notifier_call = iommu_bus_notifier; |
| 861 | |
| 862 | err = bus_register_notifier(bus, nb); |
Joerg Roedel | 8da3014 | 2015-05-28 18:41:27 +0200 | [diff] [blame] | 863 | if (err) |
| 864 | goto out_free; |
Heiko Stübner | d7da6bd | 2014-10-29 01:22:56 +0100 | [diff] [blame] | 865 | |
| 866 | err = bus_for_each_dev(bus, NULL, &cb, add_iommu_group); |
Joerg Roedel | 8da3014 | 2015-05-28 18:41:27 +0200 | [diff] [blame] | 867 | if (err) |
| 868 | goto out_err; |
| 869 | |
Heiko Stübner | d7da6bd | 2014-10-29 01:22:56 +0100 | [diff] [blame] | 870 | |
| 871 | return 0; |
Joerg Roedel | 8da3014 | 2015-05-28 18:41:27 +0200 | [diff] [blame] | 872 | |
| 873 | out_err: |
| 874 | /* Clean up */ |
| 875 | bus_for_each_dev(bus, NULL, &cb, remove_iommu_group); |
| 876 | bus_unregister_notifier(bus, nb); |
| 877 | |
| 878 | out_free: |
| 879 | kfree(nb); |
| 880 | |
| 881 | return err; |
Joerg Roedel | fc2100e | 2008-11-26 17:21:24 +0100 | [diff] [blame] | 882 | } |
| 883 | |
Joerg Roedel | ff21776 | 2011-08-26 16:48:26 +0200 | [diff] [blame] | 884 | /** |
| 885 | * bus_set_iommu - set iommu-callbacks for the bus |
| 886 | * @bus: bus. |
| 887 | * @ops: the callbacks provided by the iommu-driver |
| 888 | * |
| 889 | * This function is called by an iommu driver to set the iommu methods |
| 890 | * used for a particular bus. Drivers for devices on that bus can use |
| 891 | * the iommu-api after these ops are registered. |
| 892 | * This special function is needed because IOMMUs are usually devices on |
| 893 | * the bus itself, so the iommu drivers are not initialized when the bus |
| 894 | * is set up. With this function the iommu-driver can set the iommu-ops |
| 895 | * afterwards. |
| 896 | */ |
Thierry Reding | b22f643 | 2014-06-27 09:03:12 +0200 | [diff] [blame] | 897 | 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] | 898 | { |
Heiko Stübner | d7da6bd | 2014-10-29 01:22:56 +0100 | [diff] [blame] | 899 | int err; |
| 900 | |
Joerg Roedel | ff21776 | 2011-08-26 16:48:26 +0200 | [diff] [blame] | 901 | if (bus->iommu_ops != NULL) |
| 902 | return -EBUSY; |
Joerg Roedel | fc2100e | 2008-11-26 17:21:24 +0100 | [diff] [blame] | 903 | |
Joerg Roedel | ff21776 | 2011-08-26 16:48:26 +0200 | [diff] [blame] | 904 | bus->iommu_ops = ops; |
| 905 | |
| 906 | /* Do IOMMU specific setup for this bus-type */ |
Heiko Stübner | d7da6bd | 2014-10-29 01:22:56 +0100 | [diff] [blame] | 907 | err = iommu_bus_init(bus, ops); |
| 908 | if (err) |
| 909 | bus->iommu_ops = NULL; |
| 910 | |
| 911 | return err; |
Joerg Roedel | fc2100e | 2008-11-26 17:21:24 +0100 | [diff] [blame] | 912 | } |
Joerg Roedel | ff21776 | 2011-08-26 16:48:26 +0200 | [diff] [blame] | 913 | EXPORT_SYMBOL_GPL(bus_set_iommu); |
| 914 | |
Joerg Roedel | a1b60c1 | 2011-09-06 18:46:34 +0200 | [diff] [blame] | 915 | bool iommu_present(struct bus_type *bus) |
Joerg Roedel | fc2100e | 2008-11-26 17:21:24 +0100 | [diff] [blame] | 916 | { |
Joerg Roedel | 94441c3 | 2011-09-06 18:58:54 +0200 | [diff] [blame] | 917 | return bus->iommu_ops != NULL; |
Joerg Roedel | fc2100e | 2008-11-26 17:21:24 +0100 | [diff] [blame] | 918 | } |
Joerg Roedel | a1b60c1 | 2011-09-06 18:46:34 +0200 | [diff] [blame] | 919 | EXPORT_SYMBOL_GPL(iommu_present); |
Joerg Roedel | fc2100e | 2008-11-26 17:21:24 +0100 | [diff] [blame] | 920 | |
Joerg Roedel | 3c0e0ca | 2014-09-03 18:47:25 +0200 | [diff] [blame] | 921 | bool iommu_capable(struct bus_type *bus, enum iommu_cap cap) |
| 922 | { |
| 923 | if (!bus->iommu_ops || !bus->iommu_ops->capable) |
| 924 | return false; |
| 925 | |
| 926 | return bus->iommu_ops->capable(cap); |
| 927 | } |
| 928 | EXPORT_SYMBOL_GPL(iommu_capable); |
| 929 | |
Ohad Ben-Cohen | 4f3f8d9 | 2011-09-13 15:25:23 -0400 | [diff] [blame] | 930 | /** |
| 931 | * iommu_set_fault_handler() - set a fault handler for an iommu domain |
| 932 | * @domain: iommu domain |
| 933 | * @handler: fault handler |
Ohad Ben-Cohen | 77ca233 | 2012-05-21 20:20:05 +0300 | [diff] [blame] | 934 | * @token: user data, will be passed back to the fault handler |
Ohad Ben-Cohen | 0ed6d2d | 2011-09-27 07:36:40 -0400 | [diff] [blame] | 935 | * |
| 936 | * This function should be used by IOMMU users which want to be notified |
| 937 | * whenever an IOMMU fault happens. |
| 938 | * |
| 939 | * The fault handler itself should return 0 on success, and an appropriate |
| 940 | * error code otherwise. |
Ohad Ben-Cohen | 4f3f8d9 | 2011-09-13 15:25:23 -0400 | [diff] [blame] | 941 | */ |
| 942 | void iommu_set_fault_handler(struct iommu_domain *domain, |
Ohad Ben-Cohen | 77ca233 | 2012-05-21 20:20:05 +0300 | [diff] [blame] | 943 | iommu_fault_handler_t handler, |
| 944 | void *token) |
Ohad Ben-Cohen | 4f3f8d9 | 2011-09-13 15:25:23 -0400 | [diff] [blame] | 945 | { |
| 946 | BUG_ON(!domain); |
| 947 | |
| 948 | domain->handler = handler; |
Ohad Ben-Cohen | 77ca233 | 2012-05-21 20:20:05 +0300 | [diff] [blame] | 949 | domain->handler_token = token; |
Ohad Ben-Cohen | 4f3f8d9 | 2011-09-13 15:25:23 -0400 | [diff] [blame] | 950 | } |
Ohad Ben-Cohen | 30bd918 | 2011-09-26 09:11:46 -0400 | [diff] [blame] | 951 | EXPORT_SYMBOL_GPL(iommu_set_fault_handler); |
Ohad Ben-Cohen | 4f3f8d9 | 2011-09-13 15:25:23 -0400 | [diff] [blame] | 952 | |
Joerg Roedel | 53723dc | 2015-05-28 18:41:29 +0200 | [diff] [blame] | 953 | static struct iommu_domain *__iommu_domain_alloc(struct bus_type *bus, |
| 954 | unsigned type) |
Joerg Roedel | fc2100e | 2008-11-26 17:21:24 +0100 | [diff] [blame] | 955 | { |
| 956 | struct iommu_domain *domain; |
Joerg Roedel | fc2100e | 2008-11-26 17:21:24 +0100 | [diff] [blame] | 957 | |
Joerg Roedel | 94441c3 | 2011-09-06 18:58:54 +0200 | [diff] [blame] | 958 | if (bus == NULL || bus->iommu_ops == NULL) |
Joerg Roedel | 905d66c | 2011-09-06 16:03:26 +0200 | [diff] [blame] | 959 | return NULL; |
| 960 | |
Joerg Roedel | 53723dc | 2015-05-28 18:41:29 +0200 | [diff] [blame] | 961 | domain = bus->iommu_ops->domain_alloc(type); |
Joerg Roedel | fc2100e | 2008-11-26 17:21:24 +0100 | [diff] [blame] | 962 | if (!domain) |
| 963 | return NULL; |
| 964 | |
Joerg Roedel | 8539c7c | 2015-03-26 13:43:05 +0100 | [diff] [blame] | 965 | domain->ops = bus->iommu_ops; |
Joerg Roedel | 53723dc | 2015-05-28 18:41:29 +0200 | [diff] [blame] | 966 | domain->type = type; |
Joerg Roedel | 905d66c | 2011-09-06 16:03:26 +0200 | [diff] [blame] | 967 | |
Joerg Roedel | fc2100e | 2008-11-26 17:21:24 +0100 | [diff] [blame] | 968 | return domain; |
Joerg Roedel | fc2100e | 2008-11-26 17:21:24 +0100 | [diff] [blame] | 969 | } |
Joerg Roedel | 53723dc | 2015-05-28 18:41:29 +0200 | [diff] [blame] | 970 | |
| 971 | struct iommu_domain *iommu_domain_alloc(struct bus_type *bus) |
| 972 | { |
| 973 | return __iommu_domain_alloc(bus, IOMMU_DOMAIN_UNMANAGED); |
| 974 | } |
Joerg Roedel | fc2100e | 2008-11-26 17:21:24 +0100 | [diff] [blame] | 975 | EXPORT_SYMBOL_GPL(iommu_domain_alloc); |
| 976 | |
| 977 | void iommu_domain_free(struct iommu_domain *domain) |
| 978 | { |
Joerg Roedel | 89be34a | 2015-03-26 13:43:19 +0100 | [diff] [blame] | 979 | domain->ops->domain_free(domain); |
Joerg Roedel | fc2100e | 2008-11-26 17:21:24 +0100 | [diff] [blame] | 980 | } |
| 981 | EXPORT_SYMBOL_GPL(iommu_domain_free); |
| 982 | |
Joerg Roedel | 426a273 | 2015-05-28 18:41:30 +0200 | [diff] [blame^] | 983 | static int __iommu_attach_device(struct iommu_domain *domain, |
| 984 | struct device *dev) |
Joerg Roedel | fc2100e | 2008-11-26 17:21:24 +0100 | [diff] [blame] | 985 | { |
Shuah Khan | b54db77 | 2013-08-15 11:59:26 -0600 | [diff] [blame] | 986 | int ret; |
Joerg Roedel | e5aa7f0 | 2011-09-06 16:44:29 +0200 | [diff] [blame] | 987 | if (unlikely(domain->ops->attach_dev == NULL)) |
| 988 | return -ENODEV; |
| 989 | |
Shuah Khan | b54db77 | 2013-08-15 11:59:26 -0600 | [diff] [blame] | 990 | ret = domain->ops->attach_dev(domain, dev); |
| 991 | if (!ret) |
| 992 | trace_attach_device_to_domain(dev); |
| 993 | return ret; |
Joerg Roedel | fc2100e | 2008-11-26 17:21:24 +0100 | [diff] [blame] | 994 | } |
Joerg Roedel | 426a273 | 2015-05-28 18:41:30 +0200 | [diff] [blame^] | 995 | |
| 996 | int iommu_attach_device(struct iommu_domain *domain, struct device *dev) |
| 997 | { |
| 998 | struct iommu_group *group; |
| 999 | int ret; |
| 1000 | |
| 1001 | group = iommu_group_get(dev); |
| 1002 | /* FIXME: Remove this when groups a mandatory for iommu drivers */ |
| 1003 | if (group == NULL) |
| 1004 | return __iommu_attach_device(domain, dev); |
| 1005 | |
| 1006 | /* |
| 1007 | * We have a group - lock it to make sure the device-count doesn't |
| 1008 | * change while we are attaching |
| 1009 | */ |
| 1010 | mutex_lock(&group->mutex); |
| 1011 | ret = -EINVAL; |
| 1012 | if (iommu_group_device_count(group) != 1) |
| 1013 | goto out_unlock; |
| 1014 | |
| 1015 | ret = __iommu_attach_device(domain, dev); |
| 1016 | |
| 1017 | out_unlock: |
| 1018 | mutex_unlock(&group->mutex); |
| 1019 | iommu_group_put(group); |
| 1020 | |
| 1021 | return ret; |
| 1022 | } |
Joerg Roedel | fc2100e | 2008-11-26 17:21:24 +0100 | [diff] [blame] | 1023 | EXPORT_SYMBOL_GPL(iommu_attach_device); |
| 1024 | |
Joerg Roedel | 426a273 | 2015-05-28 18:41:30 +0200 | [diff] [blame^] | 1025 | static void __iommu_detach_device(struct iommu_domain *domain, |
| 1026 | struct device *dev) |
Joerg Roedel | fc2100e | 2008-11-26 17:21:24 +0100 | [diff] [blame] | 1027 | { |
Joerg Roedel | e5aa7f0 | 2011-09-06 16:44:29 +0200 | [diff] [blame] | 1028 | if (unlikely(domain->ops->detach_dev == NULL)) |
| 1029 | return; |
| 1030 | |
| 1031 | domain->ops->detach_dev(domain, dev); |
Shuah Khan | 6998063 | 2013-08-15 11:59:27 -0600 | [diff] [blame] | 1032 | trace_detach_device_from_domain(dev); |
Joerg Roedel | fc2100e | 2008-11-26 17:21:24 +0100 | [diff] [blame] | 1033 | } |
Joerg Roedel | 426a273 | 2015-05-28 18:41:30 +0200 | [diff] [blame^] | 1034 | |
| 1035 | void iommu_detach_device(struct iommu_domain *domain, struct device *dev) |
| 1036 | { |
| 1037 | struct iommu_group *group; |
| 1038 | |
| 1039 | group = iommu_group_get(dev); |
| 1040 | /* FIXME: Remove this when groups a mandatory for iommu drivers */ |
| 1041 | if (group == NULL) |
| 1042 | return __iommu_detach_device(domain, dev); |
| 1043 | |
| 1044 | mutex_lock(&group->mutex); |
| 1045 | if (iommu_group_device_count(group) != 1) { |
| 1046 | WARN_ON(1); |
| 1047 | goto out_unlock; |
| 1048 | } |
| 1049 | |
| 1050 | __iommu_detach_device(domain, dev); |
| 1051 | |
| 1052 | out_unlock: |
| 1053 | mutex_unlock(&group->mutex); |
| 1054 | iommu_group_put(group); |
| 1055 | } |
Joerg Roedel | fc2100e | 2008-11-26 17:21:24 +0100 | [diff] [blame] | 1056 | EXPORT_SYMBOL_GPL(iommu_detach_device); |
| 1057 | |
Alex Williamson | d72e31c | 2012-05-30 14:18:53 -0600 | [diff] [blame] | 1058 | /* |
| 1059 | * IOMMU groups are really the natrual working unit of the IOMMU, but |
| 1060 | * the IOMMU API works on domains and devices. Bridge that gap by |
| 1061 | * iterating over the devices in a group. Ideally we'd have a single |
| 1062 | * device which represents the requestor ID of the group, but we also |
| 1063 | * allow IOMMU drivers to create policy defined minimum sets, where |
| 1064 | * the physical hardware may be able to distiguish members, but we |
| 1065 | * wish to group them at a higher level (ex. untrusted multi-function |
| 1066 | * PCI devices). Thus we attach each device. |
| 1067 | */ |
| 1068 | static int iommu_group_do_attach_device(struct device *dev, void *data) |
| 1069 | { |
| 1070 | struct iommu_domain *domain = data; |
| 1071 | |
Joerg Roedel | 426a273 | 2015-05-28 18:41:30 +0200 | [diff] [blame^] | 1072 | return __iommu_attach_device(domain, dev); |
Alex Williamson | d72e31c | 2012-05-30 14:18:53 -0600 | [diff] [blame] | 1073 | } |
| 1074 | |
| 1075 | int iommu_attach_group(struct iommu_domain *domain, struct iommu_group *group) |
| 1076 | { |
| 1077 | return iommu_group_for_each_dev(group, domain, |
| 1078 | iommu_group_do_attach_device); |
| 1079 | } |
| 1080 | EXPORT_SYMBOL_GPL(iommu_attach_group); |
| 1081 | |
| 1082 | static int iommu_group_do_detach_device(struct device *dev, void *data) |
| 1083 | { |
| 1084 | struct iommu_domain *domain = data; |
| 1085 | |
Joerg Roedel | 426a273 | 2015-05-28 18:41:30 +0200 | [diff] [blame^] | 1086 | __iommu_detach_device(domain, dev); |
Alex Williamson | d72e31c | 2012-05-30 14:18:53 -0600 | [diff] [blame] | 1087 | |
| 1088 | return 0; |
| 1089 | } |
| 1090 | |
| 1091 | void iommu_detach_group(struct iommu_domain *domain, struct iommu_group *group) |
| 1092 | { |
| 1093 | iommu_group_for_each_dev(group, domain, iommu_group_do_detach_device); |
| 1094 | } |
| 1095 | EXPORT_SYMBOL_GPL(iommu_detach_group); |
| 1096 | |
Varun Sethi | bb5547ac | 2013-03-29 01:23:58 +0530 | [diff] [blame] | 1097 | 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] | 1098 | { |
Joerg Roedel | e5aa7f0 | 2011-09-06 16:44:29 +0200 | [diff] [blame] | 1099 | if (unlikely(domain->ops->iova_to_phys == NULL)) |
| 1100 | return 0; |
| 1101 | |
| 1102 | return domain->ops->iova_to_phys(domain, iova); |
Joerg Roedel | fc2100e | 2008-11-26 17:21:24 +0100 | [diff] [blame] | 1103 | } |
| 1104 | EXPORT_SYMBOL_GPL(iommu_iova_to_phys); |
Sheng Yang | dbb9fd8 | 2009-03-18 15:33:06 +0800 | [diff] [blame] | 1105 | |
Alex Williamson | bd13969 | 2013-06-17 19:57:34 -0600 | [diff] [blame] | 1106 | static size_t iommu_pgsize(struct iommu_domain *domain, |
| 1107 | unsigned long addr_merge, size_t size) |
| 1108 | { |
| 1109 | unsigned int pgsize_idx; |
| 1110 | size_t pgsize; |
| 1111 | |
| 1112 | /* Max page size that still fits into 'size' */ |
| 1113 | pgsize_idx = __fls(size); |
| 1114 | |
| 1115 | /* need to consider alignment requirements ? */ |
| 1116 | if (likely(addr_merge)) { |
| 1117 | /* Max page size allowed by address */ |
| 1118 | unsigned int align_pgsize_idx = __ffs(addr_merge); |
| 1119 | pgsize_idx = min(pgsize_idx, align_pgsize_idx); |
| 1120 | } |
| 1121 | |
| 1122 | /* build a mask of acceptable page sizes */ |
| 1123 | pgsize = (1UL << (pgsize_idx + 1)) - 1; |
| 1124 | |
| 1125 | /* throw away page sizes not supported by the hardware */ |
| 1126 | pgsize &= domain->ops->pgsize_bitmap; |
| 1127 | |
| 1128 | /* make sure we're still sane */ |
| 1129 | BUG_ON(!pgsize); |
| 1130 | |
| 1131 | /* pick the biggest page */ |
| 1132 | pgsize_idx = __fls(pgsize); |
| 1133 | pgsize = 1UL << pgsize_idx; |
| 1134 | |
| 1135 | return pgsize; |
| 1136 | } |
| 1137 | |
Joerg Roedel | cefc53c | 2010-01-08 13:35:09 +0100 | [diff] [blame] | 1138 | int iommu_map(struct iommu_domain *domain, unsigned long iova, |
Ohad Ben-Cohen | 7d3002c | 2011-11-10 11:32:26 +0200 | [diff] [blame] | 1139 | phys_addr_t paddr, size_t size, int prot) |
Joerg Roedel | cefc53c | 2010-01-08 13:35:09 +0100 | [diff] [blame] | 1140 | { |
Ohad Ben-Cohen | 7d3002c | 2011-11-10 11:32:26 +0200 | [diff] [blame] | 1141 | unsigned long orig_iova = iova; |
| 1142 | unsigned int min_pagesz; |
| 1143 | size_t orig_size = size; |
| 1144 | int ret = 0; |
Joerg Roedel | cefc53c | 2010-01-08 13:35:09 +0100 | [diff] [blame] | 1145 | |
Joerg Roedel | 9db4ad9 | 2014-08-19 00:19:26 +0200 | [diff] [blame] | 1146 | if (unlikely(domain->ops->map == NULL || |
Joerg Roedel | 5788651 | 2013-01-29 13:41:09 +0100 | [diff] [blame] | 1147 | domain->ops->pgsize_bitmap == 0UL)) |
Joerg Roedel | e5aa7f0 | 2011-09-06 16:44:29 +0200 | [diff] [blame] | 1148 | return -ENODEV; |
Joerg Roedel | cefc53c | 2010-01-08 13:35:09 +0100 | [diff] [blame] | 1149 | |
Joerg Roedel | a10315e | 2015-03-26 13:43:06 +0100 | [diff] [blame] | 1150 | if (unlikely(!(domain->type & __IOMMU_DOMAIN_PAGING))) |
| 1151 | return -EINVAL; |
| 1152 | |
Ohad Ben-Cohen | 7d3002c | 2011-11-10 11:32:26 +0200 | [diff] [blame] | 1153 | /* find out the minimum page size supported */ |
| 1154 | min_pagesz = 1 << __ffs(domain->ops->pgsize_bitmap); |
Joerg Roedel | cefc53c | 2010-01-08 13:35:09 +0100 | [diff] [blame] | 1155 | |
Ohad Ben-Cohen | 7d3002c | 2011-11-10 11:32:26 +0200 | [diff] [blame] | 1156 | /* |
| 1157 | * both the virtual address and the physical one, as well as |
| 1158 | * the size of the mapping, must be aligned (at least) to the |
| 1159 | * size of the smallest page supported by the hardware |
| 1160 | */ |
| 1161 | if (!IS_ALIGNED(iova | paddr | size, min_pagesz)) { |
Fabio Estevam | abedb04 | 2013-08-22 10:25:42 -0300 | [diff] [blame] | 1162 | 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] | 1163 | iova, &paddr, size, min_pagesz); |
Ohad Ben-Cohen | 7d3002c | 2011-11-10 11:32:26 +0200 | [diff] [blame] | 1164 | return -EINVAL; |
| 1165 | } |
Joerg Roedel | cefc53c | 2010-01-08 13:35:09 +0100 | [diff] [blame] | 1166 | |
Fabio Estevam | abedb04 | 2013-08-22 10:25:42 -0300 | [diff] [blame] | 1167 | 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] | 1168 | |
| 1169 | while (size) { |
Alex Williamson | bd13969 | 2013-06-17 19:57:34 -0600 | [diff] [blame] | 1170 | size_t pgsize = iommu_pgsize(domain, iova | paddr, size); |
Ohad Ben-Cohen | 7d3002c | 2011-11-10 11:32:26 +0200 | [diff] [blame] | 1171 | |
Fabio Estevam | abedb04 | 2013-08-22 10:25:42 -0300 | [diff] [blame] | 1172 | pr_debug("mapping: iova 0x%lx pa %pa pgsize 0x%zx\n", |
Joe Perches | 6197ca8 | 2013-06-23 12:29:04 -0700 | [diff] [blame] | 1173 | iova, &paddr, pgsize); |
Ohad Ben-Cohen | 7d3002c | 2011-11-10 11:32:26 +0200 | [diff] [blame] | 1174 | |
| 1175 | ret = domain->ops->map(domain, iova, paddr, pgsize, prot); |
| 1176 | if (ret) |
| 1177 | break; |
| 1178 | |
| 1179 | iova += pgsize; |
| 1180 | paddr += pgsize; |
| 1181 | size -= pgsize; |
| 1182 | } |
| 1183 | |
| 1184 | /* unroll mapping in case something went wrong */ |
| 1185 | if (ret) |
| 1186 | iommu_unmap(domain, orig_iova, orig_size - size); |
Shuah Khan | e0be7c8 | 2013-08-15 11:59:28 -0600 | [diff] [blame] | 1187 | else |
Shuah Khan | 860cd64d | 2015-01-15 19:29:43 -0700 | [diff] [blame] | 1188 | trace_map(orig_iova, paddr, orig_size); |
Ohad Ben-Cohen | 7d3002c | 2011-11-10 11:32:26 +0200 | [diff] [blame] | 1189 | |
| 1190 | return ret; |
Joerg Roedel | cefc53c | 2010-01-08 13:35:09 +0100 | [diff] [blame] | 1191 | } |
| 1192 | EXPORT_SYMBOL_GPL(iommu_map); |
| 1193 | |
Ohad Ben-Cohen | 7d3002c | 2011-11-10 11:32:26 +0200 | [diff] [blame] | 1194 | 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] | 1195 | { |
Ohad Ben-Cohen | 7d3002c | 2011-11-10 11:32:26 +0200 | [diff] [blame] | 1196 | size_t unmapped_page, unmapped = 0; |
| 1197 | unsigned int min_pagesz; |
Shuah Khan | 6fd492f | 2015-01-16 16:47:19 -0700 | [diff] [blame] | 1198 | unsigned long orig_iova = iova; |
Joerg Roedel | cefc53c | 2010-01-08 13:35:09 +0100 | [diff] [blame] | 1199 | |
Joerg Roedel | 5788651 | 2013-01-29 13:41:09 +0100 | [diff] [blame] | 1200 | if (unlikely(domain->ops->unmap == NULL || |
| 1201 | domain->ops->pgsize_bitmap == 0UL)) |
Joerg Roedel | e5aa7f0 | 2011-09-06 16:44:29 +0200 | [diff] [blame] | 1202 | return -ENODEV; |
Joerg Roedel | cefc53c | 2010-01-08 13:35:09 +0100 | [diff] [blame] | 1203 | |
Joerg Roedel | a10315e | 2015-03-26 13:43:06 +0100 | [diff] [blame] | 1204 | if (unlikely(!(domain->type & __IOMMU_DOMAIN_PAGING))) |
| 1205 | return -EINVAL; |
| 1206 | |
Ohad Ben-Cohen | 7d3002c | 2011-11-10 11:32:26 +0200 | [diff] [blame] | 1207 | /* find out the minimum page size supported */ |
| 1208 | min_pagesz = 1 << __ffs(domain->ops->pgsize_bitmap); |
Joerg Roedel | cefc53c | 2010-01-08 13:35:09 +0100 | [diff] [blame] | 1209 | |
Ohad Ben-Cohen | 7d3002c | 2011-11-10 11:32:26 +0200 | [diff] [blame] | 1210 | /* |
| 1211 | * The virtual address, as well as the size of the mapping, must be |
| 1212 | * aligned (at least) to the size of the smallest page supported |
| 1213 | * by the hardware |
| 1214 | */ |
| 1215 | if (!IS_ALIGNED(iova | size, min_pagesz)) { |
Joe Perches | 6197ca8 | 2013-06-23 12:29:04 -0700 | [diff] [blame] | 1216 | pr_err("unaligned: iova 0x%lx size 0x%zx min_pagesz 0x%x\n", |
| 1217 | iova, size, min_pagesz); |
Ohad Ben-Cohen | 7d3002c | 2011-11-10 11:32:26 +0200 | [diff] [blame] | 1218 | return -EINVAL; |
| 1219 | } |
Joerg Roedel | cefc53c | 2010-01-08 13:35:09 +0100 | [diff] [blame] | 1220 | |
Joe Perches | 6197ca8 | 2013-06-23 12:29:04 -0700 | [diff] [blame] | 1221 | 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] | 1222 | |
Ohad Ben-Cohen | 7d3002c | 2011-11-10 11:32:26 +0200 | [diff] [blame] | 1223 | /* |
| 1224 | * Keep iterating until we either unmap 'size' bytes (or more) |
| 1225 | * or we hit an area that isn't mapped. |
| 1226 | */ |
| 1227 | while (unmapped < size) { |
Alex Williamson | bd13969 | 2013-06-17 19:57:34 -0600 | [diff] [blame] | 1228 | size_t pgsize = iommu_pgsize(domain, iova, size - unmapped); |
Ohad Ben-Cohen | 7d3002c | 2011-11-10 11:32:26 +0200 | [diff] [blame] | 1229 | |
Alex Williamson | bd13969 | 2013-06-17 19:57:34 -0600 | [diff] [blame] | 1230 | unmapped_page = domain->ops->unmap(domain, iova, pgsize); |
Ohad Ben-Cohen | 7d3002c | 2011-11-10 11:32:26 +0200 | [diff] [blame] | 1231 | if (!unmapped_page) |
| 1232 | break; |
| 1233 | |
Joe Perches | 6197ca8 | 2013-06-23 12:29:04 -0700 | [diff] [blame] | 1234 | pr_debug("unmapped: iova 0x%lx size 0x%zx\n", |
| 1235 | iova, unmapped_page); |
Ohad Ben-Cohen | 7d3002c | 2011-11-10 11:32:26 +0200 | [diff] [blame] | 1236 | |
| 1237 | iova += unmapped_page; |
| 1238 | unmapped += unmapped_page; |
| 1239 | } |
| 1240 | |
Shuah Khan | db8614d | 2015-01-16 20:53:17 -0700 | [diff] [blame] | 1241 | trace_unmap(orig_iova, size, unmapped); |
Ohad Ben-Cohen | 7d3002c | 2011-11-10 11:32:26 +0200 | [diff] [blame] | 1242 | return unmapped; |
Joerg Roedel | cefc53c | 2010-01-08 13:35:09 +0100 | [diff] [blame] | 1243 | } |
| 1244 | EXPORT_SYMBOL_GPL(iommu_unmap); |
Alex Williamson | 1460432 | 2011-10-21 15:56:05 -0400 | [diff] [blame] | 1245 | |
Olav Haugan | 315786e | 2014-10-25 09:55:16 -0700 | [diff] [blame] | 1246 | size_t default_iommu_map_sg(struct iommu_domain *domain, unsigned long iova, |
| 1247 | struct scatterlist *sg, unsigned int nents, int prot) |
| 1248 | { |
Joerg Roedel | 38ec010 | 2014-11-04 14:53:51 +0100 | [diff] [blame] | 1249 | struct scatterlist *s; |
Olav Haugan | 315786e | 2014-10-25 09:55:16 -0700 | [diff] [blame] | 1250 | size_t mapped = 0; |
Robin Murphy | 18f2340 | 2014-11-25 17:50:55 +0000 | [diff] [blame] | 1251 | unsigned int i, min_pagesz; |
Joerg Roedel | 38ec010 | 2014-11-04 14:53:51 +0100 | [diff] [blame] | 1252 | int ret; |
Olav Haugan | 315786e | 2014-10-25 09:55:16 -0700 | [diff] [blame] | 1253 | |
Robin Murphy | 18f2340 | 2014-11-25 17:50:55 +0000 | [diff] [blame] | 1254 | if (unlikely(domain->ops->pgsize_bitmap == 0UL)) |
| 1255 | return 0; |
Olav Haugan | 315786e | 2014-10-25 09:55:16 -0700 | [diff] [blame] | 1256 | |
Robin Murphy | 18f2340 | 2014-11-25 17:50:55 +0000 | [diff] [blame] | 1257 | min_pagesz = 1 << __ffs(domain->ops->pgsize_bitmap); |
| 1258 | |
| 1259 | for_each_sg(sg, s, nents, i) { |
| 1260 | phys_addr_t phys = page_to_phys(sg_page(s)) + s->offset; |
| 1261 | |
| 1262 | /* |
| 1263 | * We are mapping on IOMMU page boundaries, so offset within |
| 1264 | * the page must be 0. However, the IOMMU may support pages |
| 1265 | * smaller than PAGE_SIZE, so s->offset may still represent |
| 1266 | * an offset of that boundary within the CPU page. |
| 1267 | */ |
| 1268 | if (!IS_ALIGNED(s->offset, min_pagesz)) |
Joerg Roedel | 38ec010 | 2014-11-04 14:53:51 +0100 | [diff] [blame] | 1269 | goto out_err; |
| 1270 | |
| 1271 | ret = iommu_map(domain, iova + mapped, phys, s->length, prot); |
| 1272 | if (ret) |
| 1273 | goto out_err; |
| 1274 | |
| 1275 | mapped += s->length; |
Olav Haugan | 315786e | 2014-10-25 09:55:16 -0700 | [diff] [blame] | 1276 | } |
| 1277 | |
| 1278 | return mapped; |
Joerg Roedel | 38ec010 | 2014-11-04 14:53:51 +0100 | [diff] [blame] | 1279 | |
| 1280 | out_err: |
| 1281 | /* undo mappings already done */ |
| 1282 | iommu_unmap(domain, iova, mapped); |
| 1283 | |
| 1284 | return 0; |
| 1285 | |
Olav Haugan | 315786e | 2014-10-25 09:55:16 -0700 | [diff] [blame] | 1286 | } |
| 1287 | EXPORT_SYMBOL_GPL(default_iommu_map_sg); |
Joerg Roedel | d7787d5 | 2013-01-29 14:26:20 +0100 | [diff] [blame] | 1288 | |
| 1289 | int iommu_domain_window_enable(struct iommu_domain *domain, u32 wnd_nr, |
Varun Sethi | 80f97f0 | 2013-03-29 01:24:00 +0530 | [diff] [blame] | 1290 | phys_addr_t paddr, u64 size, int prot) |
Joerg Roedel | d7787d5 | 2013-01-29 14:26:20 +0100 | [diff] [blame] | 1291 | { |
| 1292 | if (unlikely(domain->ops->domain_window_enable == NULL)) |
| 1293 | return -ENODEV; |
| 1294 | |
Varun Sethi | 80f97f0 | 2013-03-29 01:24:00 +0530 | [diff] [blame] | 1295 | return domain->ops->domain_window_enable(domain, wnd_nr, paddr, size, |
| 1296 | prot); |
Joerg Roedel | d7787d5 | 2013-01-29 14:26:20 +0100 | [diff] [blame] | 1297 | } |
| 1298 | EXPORT_SYMBOL_GPL(iommu_domain_window_enable); |
| 1299 | |
| 1300 | void iommu_domain_window_disable(struct iommu_domain *domain, u32 wnd_nr) |
| 1301 | { |
| 1302 | if (unlikely(domain->ops->domain_window_disable == NULL)) |
| 1303 | return; |
| 1304 | |
| 1305 | return domain->ops->domain_window_disable(domain, wnd_nr); |
| 1306 | } |
| 1307 | EXPORT_SYMBOL_GPL(iommu_domain_window_disable); |
| 1308 | |
Alex Williamson | d72e31c | 2012-05-30 14:18:53 -0600 | [diff] [blame] | 1309 | static int __init iommu_init(void) |
Alex Williamson | 1460432 | 2011-10-21 15:56:05 -0400 | [diff] [blame] | 1310 | { |
Alex Williamson | d72e31c | 2012-05-30 14:18:53 -0600 | [diff] [blame] | 1311 | iommu_group_kset = kset_create_and_add("iommu_groups", |
| 1312 | NULL, kernel_kobj); |
| 1313 | ida_init(&iommu_group_ida); |
| 1314 | mutex_init(&iommu_group_mutex); |
Alex Williamson | 1460432 | 2011-10-21 15:56:05 -0400 | [diff] [blame] | 1315 | |
Alex Williamson | d72e31c | 2012-05-30 14:18:53 -0600 | [diff] [blame] | 1316 | BUG_ON(!iommu_group_kset); |
| 1317 | |
| 1318 | return 0; |
Alex Williamson | 1460432 | 2011-10-21 15:56:05 -0400 | [diff] [blame] | 1319 | } |
Alexey Kardashevskiy | 097e363 | 2013-01-07 18:51:52 +1100 | [diff] [blame] | 1320 | arch_initcall(iommu_init); |
Joerg Roedel | 0cd76dd | 2012-01-26 19:40:52 +0100 | [diff] [blame] | 1321 | |
| 1322 | int iommu_domain_get_attr(struct iommu_domain *domain, |
| 1323 | enum iommu_attr attr, void *data) |
| 1324 | { |
Joerg Roedel | 0ff64f8 | 2012-01-26 19:40:53 +0100 | [diff] [blame] | 1325 | struct iommu_domain_geometry *geometry; |
Joerg Roedel | d2e1216 | 2013-01-29 13:49:04 +0100 | [diff] [blame] | 1326 | bool *paging; |
Joerg Roedel | 0ff64f8 | 2012-01-26 19:40:53 +0100 | [diff] [blame] | 1327 | int ret = 0; |
Joerg Roedel | 6935671 | 2013-02-04 14:00:01 +0100 | [diff] [blame] | 1328 | u32 *count; |
Joerg Roedel | 0cd76dd | 2012-01-26 19:40:52 +0100 | [diff] [blame] | 1329 | |
Joerg Roedel | 0ff64f8 | 2012-01-26 19:40:53 +0100 | [diff] [blame] | 1330 | switch (attr) { |
| 1331 | case DOMAIN_ATTR_GEOMETRY: |
| 1332 | geometry = data; |
| 1333 | *geometry = domain->geometry; |
| 1334 | |
| 1335 | break; |
Joerg Roedel | d2e1216 | 2013-01-29 13:49:04 +0100 | [diff] [blame] | 1336 | case DOMAIN_ATTR_PAGING: |
| 1337 | paging = data; |
| 1338 | *paging = (domain->ops->pgsize_bitmap != 0UL); |
| 1339 | break; |
Joerg Roedel | 6935671 | 2013-02-04 14:00:01 +0100 | [diff] [blame] | 1340 | case DOMAIN_ATTR_WINDOWS: |
| 1341 | count = data; |
| 1342 | |
| 1343 | if (domain->ops->domain_get_windows != NULL) |
| 1344 | *count = domain->ops->domain_get_windows(domain); |
| 1345 | else |
| 1346 | ret = -ENODEV; |
| 1347 | |
| 1348 | break; |
Joerg Roedel | 0ff64f8 | 2012-01-26 19:40:53 +0100 | [diff] [blame] | 1349 | default: |
| 1350 | if (!domain->ops->domain_get_attr) |
| 1351 | return -EINVAL; |
| 1352 | |
| 1353 | ret = domain->ops->domain_get_attr(domain, attr, data); |
| 1354 | } |
| 1355 | |
| 1356 | return ret; |
Joerg Roedel | 0cd76dd | 2012-01-26 19:40:52 +0100 | [diff] [blame] | 1357 | } |
| 1358 | EXPORT_SYMBOL_GPL(iommu_domain_get_attr); |
| 1359 | |
| 1360 | int iommu_domain_set_attr(struct iommu_domain *domain, |
| 1361 | enum iommu_attr attr, void *data) |
| 1362 | { |
Joerg Roedel | 6935671 | 2013-02-04 14:00:01 +0100 | [diff] [blame] | 1363 | int ret = 0; |
| 1364 | u32 *count; |
Joerg Roedel | 0cd76dd | 2012-01-26 19:40:52 +0100 | [diff] [blame] | 1365 | |
Joerg Roedel | 6935671 | 2013-02-04 14:00:01 +0100 | [diff] [blame] | 1366 | switch (attr) { |
| 1367 | case DOMAIN_ATTR_WINDOWS: |
| 1368 | count = data; |
| 1369 | |
| 1370 | if (domain->ops->domain_set_windows != NULL) |
| 1371 | ret = domain->ops->domain_set_windows(domain, *count); |
| 1372 | else |
| 1373 | ret = -ENODEV; |
| 1374 | |
| 1375 | break; |
| 1376 | default: |
| 1377 | if (domain->ops->domain_set_attr == NULL) |
| 1378 | return -EINVAL; |
| 1379 | |
| 1380 | ret = domain->ops->domain_set_attr(domain, attr, data); |
| 1381 | } |
| 1382 | |
| 1383 | return ret; |
Joerg Roedel | 0cd76dd | 2012-01-26 19:40:52 +0100 | [diff] [blame] | 1384 | } |
| 1385 | EXPORT_SYMBOL_GPL(iommu_domain_set_attr); |