Joerg Roedel | e3c495c | 2011-11-09 12:31:15 +0100 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2010-2012 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 | e3c495c | 2011-11-09 12:31:15 +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 | 8736b2c | 2011-11-24 16:21:52 +0100 | [diff] [blame] | 19 | #include <linux/mmu_notifier.h> |
Joerg Roedel | ed96f22 | 2011-11-23 17:30:39 +0100 | [diff] [blame] | 20 | #include <linux/amd-iommu.h> |
| 21 | #include <linux/mm_types.h> |
Joerg Roedel | 8736b2c | 2011-11-24 16:21:52 +0100 | [diff] [blame] | 22 | #include <linux/profile.h> |
Joerg Roedel | e3c495c | 2011-11-09 12:31:15 +0100 | [diff] [blame] | 23 | #include <linux/module.h> |
Joerg Roedel | 2d5503b | 2011-11-24 10:41:57 +0100 | [diff] [blame] | 24 | #include <linux/sched.h> |
Joerg Roedel | ed96f22 | 2011-11-23 17:30:39 +0100 | [diff] [blame] | 25 | #include <linux/iommu.h> |
Joerg Roedel | 028eeac | 2011-11-24 12:48:13 +0100 | [diff] [blame] | 26 | #include <linux/wait.h> |
Joerg Roedel | ed96f22 | 2011-11-23 17:30:39 +0100 | [diff] [blame] | 27 | #include <linux/pci.h> |
| 28 | #include <linux/gfp.h> |
| 29 | |
Joerg Roedel | 028eeac | 2011-11-24 12:48:13 +0100 | [diff] [blame] | 30 | #include "amd_iommu_types.h" |
Joerg Roedel | ed96f22 | 2011-11-23 17:30:39 +0100 | [diff] [blame] | 31 | #include "amd_iommu_proto.h" |
Joerg Roedel | e3c495c | 2011-11-09 12:31:15 +0100 | [diff] [blame] | 32 | |
| 33 | MODULE_LICENSE("GPL v2"); |
Joerg Roedel | 63ce3ae | 2015-02-04 16:12:55 +0100 | [diff] [blame] | 34 | MODULE_AUTHOR("Joerg Roedel <jroedel@suse.de>"); |
Joerg Roedel | e3c495c | 2011-11-09 12:31:15 +0100 | [diff] [blame] | 35 | |
Joerg Roedel | ed96f22 | 2011-11-23 17:30:39 +0100 | [diff] [blame] | 36 | #define MAX_DEVICES 0x10000 |
| 37 | #define PRI_QUEUE_SIZE 512 |
| 38 | |
| 39 | struct pri_queue { |
| 40 | atomic_t inflight; |
| 41 | bool finish; |
Joerg Roedel | 028eeac | 2011-11-24 12:48:13 +0100 | [diff] [blame] | 42 | int status; |
Joerg Roedel | ed96f22 | 2011-11-23 17:30:39 +0100 | [diff] [blame] | 43 | }; |
| 44 | |
| 45 | struct pasid_state { |
| 46 | struct list_head list; /* For global state-list */ |
| 47 | atomic_t count; /* Reference count */ |
Joerg Roedel | d73a6d7 | 2014-06-20 16:14:22 +0200 | [diff] [blame] | 48 | unsigned mmu_notifier_count; /* Counting nested mmu_notifier |
Joerg Roedel | e79df31 | 2014-05-20 23:18:26 +0200 | [diff] [blame] | 49 | calls */ |
Joerg Roedel | ed96f22 | 2011-11-23 17:30:39 +0100 | [diff] [blame] | 50 | struct mm_struct *mm; /* mm_struct for the faults */ |
Joerg Roedel | ff6d0cc | 2014-07-08 12:49:50 +0200 | [diff] [blame] | 51 | struct mmu_notifier mn; /* mmu_notifier handle */ |
Joerg Roedel | ed96f22 | 2011-11-23 17:30:39 +0100 | [diff] [blame] | 52 | struct pri_queue pri[PRI_QUEUE_SIZE]; /* PRI tag states */ |
| 53 | struct device_state *device_state; /* Link to our device_state */ |
| 54 | int pasid; /* PASID index */ |
Joerg Roedel | d9e1611 | 2014-07-09 15:43:11 +0200 | [diff] [blame] | 55 | bool invalid; /* Used during setup and |
| 56 | teardown of the pasid */ |
Joerg Roedel | d73a6d7 | 2014-06-20 16:14:22 +0200 | [diff] [blame] | 57 | spinlock_t lock; /* Protect pri_queues and |
| 58 | mmu_notifer_count */ |
Joerg Roedel | 028eeac | 2011-11-24 12:48:13 +0100 | [diff] [blame] | 59 | wait_queue_head_t wq; /* To wait for count == 0 */ |
Joerg Roedel | ed96f22 | 2011-11-23 17:30:39 +0100 | [diff] [blame] | 60 | }; |
| 61 | |
| 62 | struct device_state { |
Joerg Roedel | 741669c | 2014-05-20 23:18:23 +0200 | [diff] [blame] | 63 | struct list_head list; |
| 64 | u16 devid; |
Joerg Roedel | ed96f22 | 2011-11-23 17:30:39 +0100 | [diff] [blame] | 65 | atomic_t count; |
| 66 | struct pci_dev *pdev; |
| 67 | struct pasid_state **states; |
| 68 | struct iommu_domain *domain; |
| 69 | int pasid_levels; |
| 70 | int max_pasids; |
Joerg Roedel | 175d614 | 2011-11-28 14:36:36 +0100 | [diff] [blame] | 71 | amd_iommu_invalid_ppr_cb inv_ppr_cb; |
Joerg Roedel | bc21662 | 2011-12-07 12:24:42 +0100 | [diff] [blame] | 72 | amd_iommu_invalidate_ctx inv_ctx_cb; |
Joerg Roedel | ed96f22 | 2011-11-23 17:30:39 +0100 | [diff] [blame] | 73 | spinlock_t lock; |
Joerg Roedel | 028eeac | 2011-11-24 12:48:13 +0100 | [diff] [blame] | 74 | wait_queue_head_t wq; |
| 75 | }; |
| 76 | |
| 77 | struct fault { |
| 78 | struct work_struct work; |
| 79 | struct device_state *dev_state; |
| 80 | struct pasid_state *state; |
| 81 | struct mm_struct *mm; |
| 82 | u64 address; |
| 83 | u16 devid; |
| 84 | u16 pasid; |
| 85 | u16 tag; |
| 86 | u16 finish; |
| 87 | u16 flags; |
Joerg Roedel | ed96f22 | 2011-11-23 17:30:39 +0100 | [diff] [blame] | 88 | }; |
| 89 | |
Joerg Roedel | 741669c | 2014-05-20 23:18:23 +0200 | [diff] [blame] | 90 | static LIST_HEAD(state_list); |
Joerg Roedel | ed96f22 | 2011-11-23 17:30:39 +0100 | [diff] [blame] | 91 | static spinlock_t state_lock; |
| 92 | |
Joerg Roedel | 028eeac | 2011-11-24 12:48:13 +0100 | [diff] [blame] | 93 | static struct workqueue_struct *iommu_wq; |
| 94 | |
Joerg Roedel | 2d5503b | 2011-11-24 10:41:57 +0100 | [diff] [blame] | 95 | static void free_pasid_states(struct device_state *dev_state); |
Joerg Roedel | ed96f22 | 2011-11-23 17:30:39 +0100 | [diff] [blame] | 96 | |
| 97 | static u16 device_id(struct pci_dev *pdev) |
| 98 | { |
| 99 | u16 devid; |
| 100 | |
| 101 | devid = pdev->bus->number; |
| 102 | devid = (devid << 8) | pdev->devfn; |
| 103 | |
| 104 | return devid; |
| 105 | } |
| 106 | |
Joerg Roedel | b87d2d7 | 2014-05-20 23:18:22 +0200 | [diff] [blame] | 107 | static struct device_state *__get_device_state(u16 devid) |
| 108 | { |
Joerg Roedel | 741669c | 2014-05-20 23:18:23 +0200 | [diff] [blame] | 109 | struct device_state *dev_state; |
| 110 | |
| 111 | list_for_each_entry(dev_state, &state_list, list) { |
| 112 | if (dev_state->devid == devid) |
| 113 | return dev_state; |
| 114 | } |
| 115 | |
| 116 | return NULL; |
Joerg Roedel | b87d2d7 | 2014-05-20 23:18:22 +0200 | [diff] [blame] | 117 | } |
| 118 | |
Joerg Roedel | ed96f22 | 2011-11-23 17:30:39 +0100 | [diff] [blame] | 119 | static struct device_state *get_device_state(u16 devid) |
| 120 | { |
| 121 | struct device_state *dev_state; |
| 122 | unsigned long flags; |
| 123 | |
| 124 | spin_lock_irqsave(&state_lock, flags); |
Joerg Roedel | b87d2d7 | 2014-05-20 23:18:22 +0200 | [diff] [blame] | 125 | dev_state = __get_device_state(devid); |
Joerg Roedel | ed96f22 | 2011-11-23 17:30:39 +0100 | [diff] [blame] | 126 | if (dev_state != NULL) |
| 127 | atomic_inc(&dev_state->count); |
| 128 | spin_unlock_irqrestore(&state_lock, flags); |
| 129 | |
| 130 | return dev_state; |
| 131 | } |
| 132 | |
| 133 | static void free_device_state(struct device_state *dev_state) |
| 134 | { |
Joerg Roedel | 2d5503b | 2011-11-24 10:41:57 +0100 | [diff] [blame] | 135 | /* |
| 136 | * First detach device from domain - No more PRI requests will arrive |
| 137 | * from that device after it is unbound from the IOMMUv2 domain. |
| 138 | */ |
Joerg Roedel | ed96f22 | 2011-11-23 17:30:39 +0100 | [diff] [blame] | 139 | iommu_detach_device(dev_state->domain, &dev_state->pdev->dev); |
Joerg Roedel | 2d5503b | 2011-11-24 10:41:57 +0100 | [diff] [blame] | 140 | |
| 141 | /* Everything is down now, free the IOMMUv2 domain */ |
Joerg Roedel | ed96f22 | 2011-11-23 17:30:39 +0100 | [diff] [blame] | 142 | iommu_domain_free(dev_state->domain); |
Joerg Roedel | 2d5503b | 2011-11-24 10:41:57 +0100 | [diff] [blame] | 143 | |
| 144 | /* Finally get rid of the device-state */ |
Joerg Roedel | ed96f22 | 2011-11-23 17:30:39 +0100 | [diff] [blame] | 145 | kfree(dev_state); |
| 146 | } |
| 147 | |
| 148 | static void put_device_state(struct device_state *dev_state) |
| 149 | { |
| 150 | if (atomic_dec_and_test(&dev_state->count)) |
Joerg Roedel | 028eeac | 2011-11-24 12:48:13 +0100 | [diff] [blame] | 151 | wake_up(&dev_state->wq); |
Joerg Roedel | ed96f22 | 2011-11-23 17:30:39 +0100 | [diff] [blame] | 152 | } |
| 153 | |
Joerg Roedel | 2d5503b | 2011-11-24 10:41:57 +0100 | [diff] [blame] | 154 | /* Must be called under dev_state->lock */ |
| 155 | static struct pasid_state **__get_pasid_state_ptr(struct device_state *dev_state, |
| 156 | int pasid, bool alloc) |
| 157 | { |
| 158 | struct pasid_state **root, **ptr; |
| 159 | int level, index; |
| 160 | |
| 161 | level = dev_state->pasid_levels; |
| 162 | root = dev_state->states; |
| 163 | |
| 164 | while (true) { |
| 165 | |
| 166 | index = (pasid >> (9 * level)) & 0x1ff; |
| 167 | ptr = &root[index]; |
| 168 | |
| 169 | if (level == 0) |
| 170 | break; |
| 171 | |
| 172 | if (*ptr == NULL) { |
| 173 | if (!alloc) |
| 174 | return NULL; |
| 175 | |
| 176 | *ptr = (void *)get_zeroed_page(GFP_ATOMIC); |
| 177 | if (*ptr == NULL) |
| 178 | return NULL; |
| 179 | } |
| 180 | |
| 181 | root = (struct pasid_state **)*ptr; |
| 182 | level -= 1; |
| 183 | } |
| 184 | |
| 185 | return ptr; |
| 186 | } |
| 187 | |
| 188 | static int set_pasid_state(struct device_state *dev_state, |
| 189 | struct pasid_state *pasid_state, |
| 190 | int pasid) |
| 191 | { |
| 192 | struct pasid_state **ptr; |
| 193 | unsigned long flags; |
| 194 | int ret; |
| 195 | |
| 196 | spin_lock_irqsave(&dev_state->lock, flags); |
| 197 | ptr = __get_pasid_state_ptr(dev_state, pasid, true); |
| 198 | |
| 199 | ret = -ENOMEM; |
| 200 | if (ptr == NULL) |
| 201 | goto out_unlock; |
| 202 | |
| 203 | ret = -ENOMEM; |
| 204 | if (*ptr != NULL) |
| 205 | goto out_unlock; |
| 206 | |
| 207 | *ptr = pasid_state; |
| 208 | |
| 209 | ret = 0; |
| 210 | |
| 211 | out_unlock: |
| 212 | spin_unlock_irqrestore(&dev_state->lock, flags); |
| 213 | |
| 214 | return ret; |
| 215 | } |
| 216 | |
| 217 | static void clear_pasid_state(struct device_state *dev_state, int pasid) |
| 218 | { |
| 219 | struct pasid_state **ptr; |
| 220 | unsigned long flags; |
| 221 | |
| 222 | spin_lock_irqsave(&dev_state->lock, flags); |
| 223 | ptr = __get_pasid_state_ptr(dev_state, pasid, true); |
| 224 | |
| 225 | if (ptr == NULL) |
| 226 | goto out_unlock; |
| 227 | |
| 228 | *ptr = NULL; |
| 229 | |
| 230 | out_unlock: |
| 231 | spin_unlock_irqrestore(&dev_state->lock, flags); |
| 232 | } |
| 233 | |
| 234 | static struct pasid_state *get_pasid_state(struct device_state *dev_state, |
| 235 | int pasid) |
| 236 | { |
| 237 | struct pasid_state **ptr, *ret = NULL; |
| 238 | unsigned long flags; |
| 239 | |
| 240 | spin_lock_irqsave(&dev_state->lock, flags); |
| 241 | ptr = __get_pasid_state_ptr(dev_state, pasid, false); |
| 242 | |
| 243 | if (ptr == NULL) |
| 244 | goto out_unlock; |
| 245 | |
| 246 | ret = *ptr; |
| 247 | if (ret) |
| 248 | atomic_inc(&ret->count); |
| 249 | |
| 250 | out_unlock: |
| 251 | spin_unlock_irqrestore(&dev_state->lock, flags); |
| 252 | |
| 253 | return ret; |
| 254 | } |
| 255 | |
| 256 | static void free_pasid_state(struct pasid_state *pasid_state) |
| 257 | { |
| 258 | kfree(pasid_state); |
| 259 | } |
| 260 | |
| 261 | static void put_pasid_state(struct pasid_state *pasid_state) |
| 262 | { |
Oded Gabbay | 1c51099 | 2014-11-10 12:21:39 +0200 | [diff] [blame] | 263 | if (atomic_dec_and_test(&pasid_state->count)) |
Joerg Roedel | 028eeac | 2011-11-24 12:48:13 +0100 | [diff] [blame] | 264 | wake_up(&pasid_state->wq); |
Joerg Roedel | 2d5503b | 2011-11-24 10:41:57 +0100 | [diff] [blame] | 265 | } |
| 266 | |
Joerg Roedel | 028eeac | 2011-11-24 12:48:13 +0100 | [diff] [blame] | 267 | static void put_pasid_state_wait(struct pasid_state *pasid_state) |
| 268 | { |
Oded Gabbay | 1bf1b43 | 2015-04-16 17:08:44 +0300 | [diff] [blame] | 269 | atomic_dec(&pasid_state->count); |
Joerg Roedel | a1bec06 | 2015-02-04 15:50:38 +0100 | [diff] [blame] | 270 | wait_event(pasid_state->wq, !atomic_read(&pasid_state->count)); |
Joerg Roedel | 028eeac | 2011-11-24 12:48:13 +0100 | [diff] [blame] | 271 | free_pasid_state(pasid_state); |
| 272 | } |
| 273 | |
Joerg Roedel | 61feb43 | 2014-07-08 14:19:35 +0200 | [diff] [blame] | 274 | static void unbind_pasid(struct pasid_state *pasid_state) |
Joerg Roedel | 8736b2c | 2011-11-24 16:21:52 +0100 | [diff] [blame] | 275 | { |
| 276 | struct iommu_domain *domain; |
| 277 | |
| 278 | domain = pasid_state->device_state->domain; |
| 279 | |
Joerg Roedel | 53d340e | 2014-07-08 15:01:43 +0200 | [diff] [blame] | 280 | /* |
| 281 | * Mark pasid_state as invalid, no more faults will we added to the |
| 282 | * work queue after this is visible everywhere. |
| 283 | */ |
| 284 | pasid_state->invalid = true; |
| 285 | |
| 286 | /* Make sure this is visible */ |
| 287 | smp_wmb(); |
| 288 | |
| 289 | /* After this the device/pasid can't access the mm anymore */ |
Joerg Roedel | 8736b2c | 2011-11-24 16:21:52 +0100 | [diff] [blame] | 290 | amd_iommu_domain_clear_gcr3(domain, pasid_state->pasid); |
Joerg Roedel | 8736b2c | 2011-11-24 16:21:52 +0100 | [diff] [blame] | 291 | |
| 292 | /* Make sure no more pending faults are in the queue */ |
| 293 | flush_workqueue(iommu_wq); |
Joerg Roedel | 8736b2c | 2011-11-24 16:21:52 +0100 | [diff] [blame] | 294 | } |
| 295 | |
Joerg Roedel | 2d5503b | 2011-11-24 10:41:57 +0100 | [diff] [blame] | 296 | static void free_pasid_states_level1(struct pasid_state **tbl) |
| 297 | { |
| 298 | int i; |
| 299 | |
| 300 | for (i = 0; i < 512; ++i) { |
| 301 | if (tbl[i] == NULL) |
| 302 | continue; |
| 303 | |
| 304 | free_page((unsigned long)tbl[i]); |
| 305 | } |
| 306 | } |
| 307 | |
| 308 | static void free_pasid_states_level2(struct pasid_state **tbl) |
| 309 | { |
| 310 | struct pasid_state **ptr; |
| 311 | int i; |
| 312 | |
| 313 | for (i = 0; i < 512; ++i) { |
| 314 | if (tbl[i] == NULL) |
| 315 | continue; |
| 316 | |
| 317 | ptr = (struct pasid_state **)tbl[i]; |
| 318 | free_pasid_states_level1(ptr); |
| 319 | } |
| 320 | } |
| 321 | |
| 322 | static void free_pasid_states(struct device_state *dev_state) |
| 323 | { |
| 324 | struct pasid_state *pasid_state; |
| 325 | int i; |
| 326 | |
| 327 | for (i = 0; i < dev_state->max_pasids; ++i) { |
| 328 | pasid_state = get_pasid_state(dev_state, i); |
| 329 | if (pasid_state == NULL) |
| 330 | continue; |
| 331 | |
Joerg Roedel | 2d5503b | 2011-11-24 10:41:57 +0100 | [diff] [blame] | 332 | put_pasid_state(pasid_state); |
Joerg Roedel | a40d4c6 | 2014-05-20 23:18:24 +0200 | [diff] [blame] | 333 | |
| 334 | /* |
| 335 | * This will call the mn_release function and |
| 336 | * unbind the PASID |
| 337 | */ |
| 338 | mmu_notifier_unregister(&pasid_state->mn, pasid_state->mm); |
Joerg Roedel | c5db16a | 2014-07-08 14:15:45 +0200 | [diff] [blame] | 339 | |
| 340 | put_pasid_state_wait(pasid_state); /* Reference taken in |
Joerg Roedel | daff2f9 | 2014-07-30 16:04:40 +0200 | [diff] [blame] | 341 | amd_iommu_bind_pasid */ |
Joerg Roedel | 75058a3 | 2014-07-30 16:04:39 +0200 | [diff] [blame] | 342 | |
| 343 | /* Drop reference taken in amd_iommu_bind_pasid */ |
| 344 | put_device_state(dev_state); |
Joerg Roedel | 2d5503b | 2011-11-24 10:41:57 +0100 | [diff] [blame] | 345 | } |
| 346 | |
| 347 | if (dev_state->pasid_levels == 2) |
| 348 | free_pasid_states_level2(dev_state->states); |
| 349 | else if (dev_state->pasid_levels == 1) |
| 350 | free_pasid_states_level1(dev_state->states); |
| 351 | else if (dev_state->pasid_levels != 0) |
| 352 | BUG(); |
| 353 | |
| 354 | free_page((unsigned long)dev_state->states); |
| 355 | } |
| 356 | |
Joerg Roedel | 8736b2c | 2011-11-24 16:21:52 +0100 | [diff] [blame] | 357 | static struct pasid_state *mn_to_state(struct mmu_notifier *mn) |
| 358 | { |
| 359 | return container_of(mn, struct pasid_state, mn); |
| 360 | } |
| 361 | |
| 362 | static void __mn_flush_page(struct mmu_notifier *mn, |
| 363 | unsigned long address) |
| 364 | { |
| 365 | struct pasid_state *pasid_state; |
| 366 | struct device_state *dev_state; |
| 367 | |
| 368 | pasid_state = mn_to_state(mn); |
| 369 | dev_state = pasid_state->device_state; |
| 370 | |
| 371 | amd_iommu_flush_page(dev_state->domain, pasid_state->pasid, address); |
| 372 | } |
| 373 | |
| 374 | static int mn_clear_flush_young(struct mmu_notifier *mn, |
| 375 | struct mm_struct *mm, |
Andres Lagar-Cavilla | 5712846 | 2014-09-22 14:54:42 -0700 | [diff] [blame] | 376 | unsigned long start, |
| 377 | unsigned long end) |
Joerg Roedel | 8736b2c | 2011-11-24 16:21:52 +0100 | [diff] [blame] | 378 | { |
Andres Lagar-Cavilla | 5712846 | 2014-09-22 14:54:42 -0700 | [diff] [blame] | 379 | for (; start < end; start += PAGE_SIZE) |
| 380 | __mn_flush_page(mn, start); |
Joerg Roedel | 8736b2c | 2011-11-24 16:21:52 +0100 | [diff] [blame] | 381 | |
| 382 | return 0; |
| 383 | } |
| 384 | |
Joerg Roedel | 8736b2c | 2011-11-24 16:21:52 +0100 | [diff] [blame] | 385 | static void mn_invalidate_page(struct mmu_notifier *mn, |
| 386 | struct mm_struct *mm, |
| 387 | unsigned long address) |
| 388 | { |
| 389 | __mn_flush_page(mn, address); |
| 390 | } |
| 391 | |
Joerg Roedel | e7cc3dd | 2014-11-13 13:46:09 +1100 | [diff] [blame] | 392 | static void mn_invalidate_range(struct mmu_notifier *mn, |
| 393 | struct mm_struct *mm, |
| 394 | unsigned long start, unsigned long end) |
Joerg Roedel | 8736b2c | 2011-11-24 16:21:52 +0100 | [diff] [blame] | 395 | { |
| 396 | struct pasid_state *pasid_state; |
| 397 | struct device_state *dev_state; |
| 398 | |
| 399 | pasid_state = mn_to_state(mn); |
| 400 | dev_state = pasid_state->device_state; |
| 401 | |
Joerg Roedel | e7cc3dd | 2014-11-13 13:46:09 +1100 | [diff] [blame] | 402 | if ((start ^ (end - 1)) < PAGE_SIZE) |
| 403 | amd_iommu_flush_page(dev_state->domain, pasid_state->pasid, |
| 404 | start); |
| 405 | else |
| 406 | amd_iommu_flush_tlb(dev_state->domain, pasid_state->pasid); |
Joerg Roedel | 8736b2c | 2011-11-24 16:21:52 +0100 | [diff] [blame] | 407 | } |
| 408 | |
Joerg Roedel | a40d4c6 | 2014-05-20 23:18:24 +0200 | [diff] [blame] | 409 | static void mn_release(struct mmu_notifier *mn, struct mm_struct *mm) |
| 410 | { |
| 411 | struct pasid_state *pasid_state; |
| 412 | struct device_state *dev_state; |
Joerg Roedel | d9e1611 | 2014-07-09 15:43:11 +0200 | [diff] [blame] | 413 | bool run_inv_ctx_cb; |
Joerg Roedel | a40d4c6 | 2014-05-20 23:18:24 +0200 | [diff] [blame] | 414 | |
| 415 | might_sleep(); |
| 416 | |
Joerg Roedel | d9e1611 | 2014-07-09 15:43:11 +0200 | [diff] [blame] | 417 | pasid_state = mn_to_state(mn); |
| 418 | dev_state = pasid_state->device_state; |
| 419 | run_inv_ctx_cb = !pasid_state->invalid; |
Joerg Roedel | a40d4c6 | 2014-05-20 23:18:24 +0200 | [diff] [blame] | 420 | |
Dan Carpenter | 940f700 | 2015-02-20 13:52:01 +0300 | [diff] [blame] | 421 | if (run_inv_ctx_cb && dev_state->inv_ctx_cb) |
Joerg Roedel | a40d4c6 | 2014-05-20 23:18:24 +0200 | [diff] [blame] | 422 | dev_state->inv_ctx_cb(dev_state->pdev, pasid_state->pasid); |
| 423 | |
Joerg Roedel | 61feb43 | 2014-07-08 14:19:35 +0200 | [diff] [blame] | 424 | unbind_pasid(pasid_state); |
Joerg Roedel | a40d4c6 | 2014-05-20 23:18:24 +0200 | [diff] [blame] | 425 | } |
| 426 | |
Joerg Roedel | 8736b2c | 2011-11-24 16:21:52 +0100 | [diff] [blame] | 427 | static struct mmu_notifier_ops iommu_mn = { |
Joerg Roedel | a40d4c6 | 2014-05-20 23:18:24 +0200 | [diff] [blame] | 428 | .release = mn_release, |
Joerg Roedel | 8736b2c | 2011-11-24 16:21:52 +0100 | [diff] [blame] | 429 | .clear_flush_young = mn_clear_flush_young, |
Joerg Roedel | 8736b2c | 2011-11-24 16:21:52 +0100 | [diff] [blame] | 430 | .invalidate_page = mn_invalidate_page, |
Joerg Roedel | e7cc3dd | 2014-11-13 13:46:09 +1100 | [diff] [blame] | 431 | .invalidate_range = mn_invalidate_range, |
Joerg Roedel | 8736b2c | 2011-11-24 16:21:52 +0100 | [diff] [blame] | 432 | }; |
| 433 | |
Joerg Roedel | 028eeac | 2011-11-24 12:48:13 +0100 | [diff] [blame] | 434 | static void set_pri_tag_status(struct pasid_state *pasid_state, |
| 435 | u16 tag, int status) |
| 436 | { |
| 437 | unsigned long flags; |
| 438 | |
| 439 | spin_lock_irqsave(&pasid_state->lock, flags); |
| 440 | pasid_state->pri[tag].status = status; |
| 441 | spin_unlock_irqrestore(&pasid_state->lock, flags); |
| 442 | } |
| 443 | |
| 444 | static void finish_pri_tag(struct device_state *dev_state, |
| 445 | struct pasid_state *pasid_state, |
| 446 | u16 tag) |
| 447 | { |
| 448 | unsigned long flags; |
| 449 | |
| 450 | spin_lock_irqsave(&pasid_state->lock, flags); |
| 451 | if (atomic_dec_and_test(&pasid_state->pri[tag].inflight) && |
| 452 | pasid_state->pri[tag].finish) { |
| 453 | amd_iommu_complete_ppr(dev_state->pdev, pasid_state->pasid, |
| 454 | pasid_state->pri[tag].status, tag); |
| 455 | pasid_state->pri[tag].finish = false; |
| 456 | pasid_state->pri[tag].status = PPR_SUCCESS; |
| 457 | } |
| 458 | spin_unlock_irqrestore(&pasid_state->lock, flags); |
| 459 | } |
| 460 | |
Jesse Barnes | 9dc00f4 | 2014-12-12 16:55:30 -0800 | [diff] [blame] | 461 | static void handle_fault_error(struct fault *fault) |
| 462 | { |
| 463 | int status; |
| 464 | |
| 465 | if (!fault->dev_state->inv_ppr_cb) { |
| 466 | set_pri_tag_status(fault->state, fault->tag, PPR_INVALID); |
| 467 | return; |
| 468 | } |
| 469 | |
| 470 | status = fault->dev_state->inv_ppr_cb(fault->dev_state->pdev, |
| 471 | fault->pasid, |
| 472 | fault->address, |
| 473 | fault->flags); |
| 474 | switch (status) { |
| 475 | case AMD_IOMMU_INV_PRI_RSP_SUCCESS: |
| 476 | set_pri_tag_status(fault->state, fault->tag, PPR_SUCCESS); |
| 477 | break; |
| 478 | case AMD_IOMMU_INV_PRI_RSP_INVALID: |
| 479 | set_pri_tag_status(fault->state, fault->tag, PPR_INVALID); |
| 480 | break; |
| 481 | case AMD_IOMMU_INV_PRI_RSP_FAIL: |
| 482 | set_pri_tag_status(fault->state, fault->tag, PPR_FAILURE); |
| 483 | break; |
| 484 | default: |
| 485 | BUG(); |
| 486 | } |
| 487 | } |
| 488 | |
Joerg Roedel | 028eeac | 2011-11-24 12:48:13 +0100 | [diff] [blame] | 489 | static void do_fault(struct work_struct *work) |
| 490 | { |
| 491 | struct fault *fault = container_of(work, struct fault, work); |
Jesse Barnes | 9dc00f4 | 2014-12-12 16:55:30 -0800 | [diff] [blame] | 492 | struct mm_struct *mm; |
| 493 | struct vm_area_struct *vma; |
| 494 | u64 address; |
| 495 | int ret, write; |
Joerg Roedel | 028eeac | 2011-11-24 12:48:13 +0100 | [diff] [blame] | 496 | |
| 497 | write = !!(fault->flags & PPR_FAULT_WRITE); |
| 498 | |
Jesse Barnes | 9dc00f4 | 2014-12-12 16:55:30 -0800 | [diff] [blame] | 499 | mm = fault->state->mm; |
| 500 | address = fault->address; |
Joerg Roedel | 028eeac | 2011-11-24 12:48:13 +0100 | [diff] [blame] | 501 | |
Jesse Barnes | 9dc00f4 | 2014-12-12 16:55:30 -0800 | [diff] [blame] | 502 | down_read(&mm->mmap_sem); |
| 503 | vma = find_extend_vma(mm, address); |
| 504 | if (!vma || address < vma->vm_start) { |
| 505 | /* failed to get a vma in the right range */ |
| 506 | up_read(&mm->mmap_sem); |
| 507 | handle_fault_error(fault); |
| 508 | goto out; |
Joerg Roedel | 175d614 | 2011-11-28 14:36:36 +0100 | [diff] [blame] | 509 | } |
Joerg Roedel | 028eeac | 2011-11-24 12:48:13 +0100 | [diff] [blame] | 510 | |
Jesse Barnes | 9dc00f4 | 2014-12-12 16:55:30 -0800 | [diff] [blame] | 511 | ret = handle_mm_fault(mm, vma, address, write); |
| 512 | if (ret & VM_FAULT_ERROR) { |
| 513 | /* failed to service fault */ |
| 514 | up_read(&mm->mmap_sem); |
| 515 | handle_fault_error(fault); |
| 516 | goto out; |
| 517 | } |
| 518 | |
| 519 | up_read(&mm->mmap_sem); |
| 520 | |
| 521 | out: |
Joerg Roedel | 028eeac | 2011-11-24 12:48:13 +0100 | [diff] [blame] | 522 | finish_pri_tag(fault->dev_state, fault->state, fault->tag); |
| 523 | |
| 524 | put_pasid_state(fault->state); |
| 525 | |
| 526 | kfree(fault); |
| 527 | } |
| 528 | |
| 529 | static int ppr_notifier(struct notifier_block *nb, unsigned long e, void *data) |
| 530 | { |
| 531 | struct amd_iommu_fault *iommu_fault; |
| 532 | struct pasid_state *pasid_state; |
| 533 | struct device_state *dev_state; |
| 534 | unsigned long flags; |
| 535 | struct fault *fault; |
| 536 | bool finish; |
| 537 | u16 tag; |
| 538 | int ret; |
| 539 | |
| 540 | iommu_fault = data; |
| 541 | tag = iommu_fault->tag & 0x1ff; |
| 542 | finish = (iommu_fault->tag >> 9) & 1; |
| 543 | |
| 544 | ret = NOTIFY_DONE; |
| 545 | dev_state = get_device_state(iommu_fault->device_id); |
| 546 | if (dev_state == NULL) |
| 547 | goto out; |
| 548 | |
| 549 | pasid_state = get_pasid_state(dev_state, iommu_fault->pasid); |
Joerg Roedel | 53d340e | 2014-07-08 15:01:43 +0200 | [diff] [blame] | 550 | if (pasid_state == NULL || pasid_state->invalid) { |
Joerg Roedel | 028eeac | 2011-11-24 12:48:13 +0100 | [diff] [blame] | 551 | /* We know the device but not the PASID -> send INVALID */ |
| 552 | amd_iommu_complete_ppr(dev_state->pdev, iommu_fault->pasid, |
| 553 | PPR_INVALID, tag); |
| 554 | goto out_drop_state; |
| 555 | } |
| 556 | |
| 557 | spin_lock_irqsave(&pasid_state->lock, flags); |
| 558 | atomic_inc(&pasid_state->pri[tag].inflight); |
| 559 | if (finish) |
| 560 | pasid_state->pri[tag].finish = true; |
| 561 | spin_unlock_irqrestore(&pasid_state->lock, flags); |
| 562 | |
| 563 | fault = kzalloc(sizeof(*fault), GFP_ATOMIC); |
| 564 | if (fault == NULL) { |
| 565 | /* We are OOM - send success and let the device re-fault */ |
| 566 | finish_pri_tag(dev_state, pasid_state, tag); |
| 567 | goto out_drop_state; |
| 568 | } |
| 569 | |
| 570 | fault->dev_state = dev_state; |
| 571 | fault->address = iommu_fault->address; |
| 572 | fault->state = pasid_state; |
| 573 | fault->tag = tag; |
| 574 | fault->finish = finish; |
Alexey Skidanov | b00675b | 2014-07-08 17:30:16 +0300 | [diff] [blame] | 575 | fault->pasid = iommu_fault->pasid; |
Joerg Roedel | 028eeac | 2011-11-24 12:48:13 +0100 | [diff] [blame] | 576 | fault->flags = iommu_fault->flags; |
| 577 | INIT_WORK(&fault->work, do_fault); |
| 578 | |
| 579 | queue_work(iommu_wq, &fault->work); |
| 580 | |
| 581 | ret = NOTIFY_OK; |
| 582 | |
| 583 | out_drop_state: |
Joerg Roedel | dc88db7 | 2014-07-08 14:55:10 +0200 | [diff] [blame] | 584 | |
| 585 | if (ret != NOTIFY_OK && pasid_state) |
| 586 | put_pasid_state(pasid_state); |
| 587 | |
Joerg Roedel | 028eeac | 2011-11-24 12:48:13 +0100 | [diff] [blame] | 588 | put_device_state(dev_state); |
| 589 | |
| 590 | out: |
| 591 | return ret; |
| 592 | } |
| 593 | |
| 594 | static struct notifier_block ppr_nb = { |
| 595 | .notifier_call = ppr_notifier, |
| 596 | }; |
| 597 | |
Joerg Roedel | 2d5503b | 2011-11-24 10:41:57 +0100 | [diff] [blame] | 598 | int amd_iommu_bind_pasid(struct pci_dev *pdev, int pasid, |
| 599 | struct task_struct *task) |
| 600 | { |
| 601 | struct pasid_state *pasid_state; |
| 602 | struct device_state *dev_state; |
Joerg Roedel | f0aac63 | 2014-07-08 15:15:07 +0200 | [diff] [blame] | 603 | struct mm_struct *mm; |
Joerg Roedel | 2d5503b | 2011-11-24 10:41:57 +0100 | [diff] [blame] | 604 | u16 devid; |
| 605 | int ret; |
| 606 | |
| 607 | might_sleep(); |
| 608 | |
| 609 | if (!amd_iommu_v2_supported()) |
| 610 | return -ENODEV; |
| 611 | |
| 612 | devid = device_id(pdev); |
| 613 | dev_state = get_device_state(devid); |
| 614 | |
| 615 | if (dev_state == NULL) |
| 616 | return -EINVAL; |
| 617 | |
| 618 | ret = -EINVAL; |
| 619 | if (pasid < 0 || pasid >= dev_state->max_pasids) |
| 620 | goto out; |
| 621 | |
| 622 | ret = -ENOMEM; |
| 623 | pasid_state = kzalloc(sizeof(*pasid_state), GFP_KERNEL); |
| 624 | if (pasid_state == NULL) |
| 625 | goto out; |
| 626 | |
Joerg Roedel | f0aac63 | 2014-07-08 15:15:07 +0200 | [diff] [blame] | 627 | |
Joerg Roedel | 2d5503b | 2011-11-24 10:41:57 +0100 | [diff] [blame] | 628 | atomic_set(&pasid_state->count, 1); |
Joerg Roedel | 028eeac | 2011-11-24 12:48:13 +0100 | [diff] [blame] | 629 | init_waitqueue_head(&pasid_state->wq); |
Joerg Roedel | 2c13d47 | 2012-07-19 10:56:10 +0200 | [diff] [blame] | 630 | spin_lock_init(&pasid_state->lock); |
| 631 | |
Joerg Roedel | f0aac63 | 2014-07-08 15:15:07 +0200 | [diff] [blame] | 632 | mm = get_task_mm(task); |
Joerg Roedel | f0aac63 | 2014-07-08 15:15:07 +0200 | [diff] [blame] | 633 | pasid_state->mm = mm; |
Joerg Roedel | 2d5503b | 2011-11-24 10:41:57 +0100 | [diff] [blame] | 634 | pasid_state->device_state = dev_state; |
| 635 | pasid_state->pasid = pasid; |
Joerg Roedel | d9e1611 | 2014-07-09 15:43:11 +0200 | [diff] [blame] | 636 | pasid_state->invalid = true; /* Mark as valid only if we are |
| 637 | done with setting up the pasid */ |
Joerg Roedel | 8736b2c | 2011-11-24 16:21:52 +0100 | [diff] [blame] | 638 | pasid_state->mn.ops = &iommu_mn; |
Joerg Roedel | 2d5503b | 2011-11-24 10:41:57 +0100 | [diff] [blame] | 639 | |
| 640 | if (pasid_state->mm == NULL) |
| 641 | goto out_free; |
| 642 | |
Joerg Roedel | f0aac63 | 2014-07-08 15:15:07 +0200 | [diff] [blame] | 643 | mmu_notifier_register(&pasid_state->mn, mm); |
Joerg Roedel | 8736b2c | 2011-11-24 16:21:52 +0100 | [diff] [blame] | 644 | |
Joerg Roedel | 2d5503b | 2011-11-24 10:41:57 +0100 | [diff] [blame] | 645 | ret = set_pasid_state(dev_state, pasid_state, pasid); |
| 646 | if (ret) |
Joerg Roedel | 8736b2c | 2011-11-24 16:21:52 +0100 | [diff] [blame] | 647 | goto out_unregister; |
Joerg Roedel | 2d5503b | 2011-11-24 10:41:57 +0100 | [diff] [blame] | 648 | |
| 649 | ret = amd_iommu_domain_set_gcr3(dev_state->domain, pasid, |
| 650 | __pa(pasid_state->mm->pgd)); |
| 651 | if (ret) |
| 652 | goto out_clear_state; |
| 653 | |
Joerg Roedel | d9e1611 | 2014-07-09 15:43:11 +0200 | [diff] [blame] | 654 | /* Now we are ready to handle faults */ |
| 655 | pasid_state->invalid = false; |
| 656 | |
Joerg Roedel | f0aac63 | 2014-07-08 15:15:07 +0200 | [diff] [blame] | 657 | /* |
| 658 | * Drop the reference to the mm_struct here. We rely on the |
| 659 | * mmu_notifier release call-back to inform us when the mm |
| 660 | * is going away. |
| 661 | */ |
| 662 | mmput(mm); |
| 663 | |
Joerg Roedel | 2d5503b | 2011-11-24 10:41:57 +0100 | [diff] [blame] | 664 | return 0; |
| 665 | |
| 666 | out_clear_state: |
| 667 | clear_pasid_state(dev_state, pasid); |
| 668 | |
Joerg Roedel | 8736b2c | 2011-11-24 16:21:52 +0100 | [diff] [blame] | 669 | out_unregister: |
Joerg Roedel | f0aac63 | 2014-07-08 15:15:07 +0200 | [diff] [blame] | 670 | mmu_notifier_unregister(&pasid_state->mn, mm); |
Joerg Roedel | 8736b2c | 2011-11-24 16:21:52 +0100 | [diff] [blame] | 671 | |
Joerg Roedel | 2d5503b | 2011-11-24 10:41:57 +0100 | [diff] [blame] | 672 | out_free: |
Joerg Roedel | f0aac63 | 2014-07-08 15:15:07 +0200 | [diff] [blame] | 673 | mmput(mm); |
Joerg Roedel | 028eeac | 2011-11-24 12:48:13 +0100 | [diff] [blame] | 674 | free_pasid_state(pasid_state); |
Joerg Roedel | 2d5503b | 2011-11-24 10:41:57 +0100 | [diff] [blame] | 675 | |
| 676 | out: |
| 677 | put_device_state(dev_state); |
| 678 | |
| 679 | return ret; |
| 680 | } |
| 681 | EXPORT_SYMBOL(amd_iommu_bind_pasid); |
| 682 | |
| 683 | void amd_iommu_unbind_pasid(struct pci_dev *pdev, int pasid) |
| 684 | { |
Joerg Roedel | a40d4c6 | 2014-05-20 23:18:24 +0200 | [diff] [blame] | 685 | struct pasid_state *pasid_state; |
Joerg Roedel | 2d5503b | 2011-11-24 10:41:57 +0100 | [diff] [blame] | 686 | struct device_state *dev_state; |
| 687 | u16 devid; |
| 688 | |
| 689 | might_sleep(); |
| 690 | |
| 691 | if (!amd_iommu_v2_supported()) |
| 692 | return; |
| 693 | |
| 694 | devid = device_id(pdev); |
| 695 | dev_state = get_device_state(devid); |
| 696 | if (dev_state == NULL) |
| 697 | return; |
| 698 | |
| 699 | if (pasid < 0 || pasid >= dev_state->max_pasids) |
| 700 | goto out; |
| 701 | |
Joerg Roedel | a40d4c6 | 2014-05-20 23:18:24 +0200 | [diff] [blame] | 702 | pasid_state = get_pasid_state(dev_state, pasid); |
| 703 | if (pasid_state == NULL) |
| 704 | goto out; |
| 705 | /* |
| 706 | * Drop reference taken here. We are safe because we still hold |
| 707 | * the reference taken in the amd_iommu_bind_pasid function. |
| 708 | */ |
| 709 | put_pasid_state(pasid_state); |
| 710 | |
Joerg Roedel | 53d340e | 2014-07-08 15:01:43 +0200 | [diff] [blame] | 711 | /* Clear the pasid state so that the pasid can be re-used */ |
| 712 | clear_pasid_state(dev_state, pasid_state->pasid); |
| 713 | |
Joerg Roedel | f0aac63 | 2014-07-08 15:15:07 +0200 | [diff] [blame] | 714 | /* |
Joerg Roedel | fcaa960 | 2014-07-30 16:04:37 +0200 | [diff] [blame] | 715 | * Call mmu_notifier_unregister to drop our reference |
| 716 | * to pasid_state->mm |
Joerg Roedel | f0aac63 | 2014-07-08 15:15:07 +0200 | [diff] [blame] | 717 | */ |
Joerg Roedel | fcaa960 | 2014-07-30 16:04:37 +0200 | [diff] [blame] | 718 | mmu_notifier_unregister(&pasid_state->mn, pasid_state->mm); |
Joerg Roedel | 2d5503b | 2011-11-24 10:41:57 +0100 | [diff] [blame] | 719 | |
Joerg Roedel | c5db16a | 2014-07-08 14:15:45 +0200 | [diff] [blame] | 720 | put_pasid_state_wait(pasid_state); /* Reference taken in |
Joerg Roedel | daff2f9 | 2014-07-30 16:04:40 +0200 | [diff] [blame] | 721 | amd_iommu_bind_pasid */ |
Joerg Roedel | 2d5503b | 2011-11-24 10:41:57 +0100 | [diff] [blame] | 722 | out: |
Joerg Roedel | 75058a3 | 2014-07-30 16:04:39 +0200 | [diff] [blame] | 723 | /* Drop reference taken in this function */ |
| 724 | put_device_state(dev_state); |
| 725 | |
| 726 | /* Drop reference taken in amd_iommu_bind_pasid */ |
Joerg Roedel | 2d5503b | 2011-11-24 10:41:57 +0100 | [diff] [blame] | 727 | put_device_state(dev_state); |
| 728 | } |
| 729 | EXPORT_SYMBOL(amd_iommu_unbind_pasid); |
| 730 | |
Joerg Roedel | ed96f22 | 2011-11-23 17:30:39 +0100 | [diff] [blame] | 731 | int amd_iommu_init_device(struct pci_dev *pdev, int pasids) |
| 732 | { |
| 733 | struct device_state *dev_state; |
| 734 | unsigned long flags; |
| 735 | int ret, tmp; |
| 736 | u16 devid; |
| 737 | |
| 738 | might_sleep(); |
| 739 | |
| 740 | if (!amd_iommu_v2_supported()) |
| 741 | return -ENODEV; |
| 742 | |
| 743 | if (pasids <= 0 || pasids > (PASID_MASK + 1)) |
| 744 | return -EINVAL; |
| 745 | |
| 746 | devid = device_id(pdev); |
| 747 | |
| 748 | dev_state = kzalloc(sizeof(*dev_state), GFP_KERNEL); |
| 749 | if (dev_state == NULL) |
| 750 | return -ENOMEM; |
| 751 | |
| 752 | spin_lock_init(&dev_state->lock); |
Joerg Roedel | 028eeac | 2011-11-24 12:48:13 +0100 | [diff] [blame] | 753 | init_waitqueue_head(&dev_state->wq); |
Joerg Roedel | 741669c | 2014-05-20 23:18:23 +0200 | [diff] [blame] | 754 | dev_state->pdev = pdev; |
| 755 | dev_state->devid = devid; |
Joerg Roedel | ed96f22 | 2011-11-23 17:30:39 +0100 | [diff] [blame] | 756 | |
| 757 | tmp = pasids; |
| 758 | for (dev_state->pasid_levels = 0; (tmp - 1) & ~0x1ff; tmp >>= 9) |
| 759 | dev_state->pasid_levels += 1; |
| 760 | |
| 761 | atomic_set(&dev_state->count, 1); |
| 762 | dev_state->max_pasids = pasids; |
| 763 | |
| 764 | ret = -ENOMEM; |
| 765 | dev_state->states = (void *)get_zeroed_page(GFP_KERNEL); |
| 766 | if (dev_state->states == NULL) |
| 767 | goto out_free_dev_state; |
| 768 | |
| 769 | dev_state->domain = iommu_domain_alloc(&pci_bus_type); |
| 770 | if (dev_state->domain == NULL) |
| 771 | goto out_free_states; |
| 772 | |
| 773 | amd_iommu_domain_direct_map(dev_state->domain); |
| 774 | |
| 775 | ret = amd_iommu_domain_enable_v2(dev_state->domain, pasids); |
| 776 | if (ret) |
| 777 | goto out_free_domain; |
| 778 | |
| 779 | ret = iommu_attach_device(dev_state->domain, &pdev->dev); |
| 780 | if (ret != 0) |
| 781 | goto out_free_domain; |
| 782 | |
| 783 | spin_lock_irqsave(&state_lock, flags); |
| 784 | |
Joerg Roedel | 741669c | 2014-05-20 23:18:23 +0200 | [diff] [blame] | 785 | if (__get_device_state(devid) != NULL) { |
Joerg Roedel | ed96f22 | 2011-11-23 17:30:39 +0100 | [diff] [blame] | 786 | spin_unlock_irqrestore(&state_lock, flags); |
| 787 | ret = -EBUSY; |
| 788 | goto out_free_domain; |
| 789 | } |
| 790 | |
Joerg Roedel | 741669c | 2014-05-20 23:18:23 +0200 | [diff] [blame] | 791 | list_add_tail(&dev_state->list, &state_list); |
Joerg Roedel | ed96f22 | 2011-11-23 17:30:39 +0100 | [diff] [blame] | 792 | |
| 793 | spin_unlock_irqrestore(&state_lock, flags); |
| 794 | |
| 795 | return 0; |
| 796 | |
| 797 | out_free_domain: |
| 798 | iommu_domain_free(dev_state->domain); |
| 799 | |
| 800 | out_free_states: |
| 801 | free_page((unsigned long)dev_state->states); |
| 802 | |
| 803 | out_free_dev_state: |
| 804 | kfree(dev_state); |
| 805 | |
| 806 | return ret; |
| 807 | } |
| 808 | EXPORT_SYMBOL(amd_iommu_init_device); |
| 809 | |
| 810 | void amd_iommu_free_device(struct pci_dev *pdev) |
| 811 | { |
| 812 | struct device_state *dev_state; |
| 813 | unsigned long flags; |
| 814 | u16 devid; |
| 815 | |
| 816 | if (!amd_iommu_v2_supported()) |
| 817 | return; |
| 818 | |
| 819 | devid = device_id(pdev); |
| 820 | |
| 821 | spin_lock_irqsave(&state_lock, flags); |
| 822 | |
Joerg Roedel | b87d2d7 | 2014-05-20 23:18:22 +0200 | [diff] [blame] | 823 | dev_state = __get_device_state(devid); |
Joerg Roedel | ed96f22 | 2011-11-23 17:30:39 +0100 | [diff] [blame] | 824 | if (dev_state == NULL) { |
| 825 | spin_unlock_irqrestore(&state_lock, flags); |
| 826 | return; |
| 827 | } |
| 828 | |
Joerg Roedel | 741669c | 2014-05-20 23:18:23 +0200 | [diff] [blame] | 829 | list_del(&dev_state->list); |
Joerg Roedel | ed96f22 | 2011-11-23 17:30:39 +0100 | [diff] [blame] | 830 | |
| 831 | spin_unlock_irqrestore(&state_lock, flags); |
| 832 | |
Joerg Roedel | 2d5503b | 2011-11-24 10:41:57 +0100 | [diff] [blame] | 833 | /* Get rid of any remaining pasid states */ |
| 834 | free_pasid_states(dev_state); |
| 835 | |
Peter Zijlstra | 91f65fa | 2015-02-03 13:25:51 +0100 | [diff] [blame] | 836 | put_device_state(dev_state); |
| 837 | /* |
| 838 | * Wait until the last reference is dropped before freeing |
| 839 | * the device state. |
| 840 | */ |
| 841 | wait_event(dev_state->wq, !atomic_read(&dev_state->count)); |
| 842 | free_device_state(dev_state); |
Joerg Roedel | ed96f22 | 2011-11-23 17:30:39 +0100 | [diff] [blame] | 843 | } |
| 844 | EXPORT_SYMBOL(amd_iommu_free_device); |
| 845 | |
Joerg Roedel | 175d614 | 2011-11-28 14:36:36 +0100 | [diff] [blame] | 846 | int amd_iommu_set_invalid_ppr_cb(struct pci_dev *pdev, |
| 847 | amd_iommu_invalid_ppr_cb cb) |
| 848 | { |
| 849 | struct device_state *dev_state; |
| 850 | unsigned long flags; |
| 851 | u16 devid; |
| 852 | int ret; |
| 853 | |
| 854 | if (!amd_iommu_v2_supported()) |
| 855 | return -ENODEV; |
| 856 | |
| 857 | devid = device_id(pdev); |
| 858 | |
| 859 | spin_lock_irqsave(&state_lock, flags); |
| 860 | |
| 861 | ret = -EINVAL; |
Joerg Roedel | b87d2d7 | 2014-05-20 23:18:22 +0200 | [diff] [blame] | 862 | dev_state = __get_device_state(devid); |
Joerg Roedel | 175d614 | 2011-11-28 14:36:36 +0100 | [diff] [blame] | 863 | if (dev_state == NULL) |
| 864 | goto out_unlock; |
| 865 | |
| 866 | dev_state->inv_ppr_cb = cb; |
| 867 | |
| 868 | ret = 0; |
| 869 | |
| 870 | out_unlock: |
| 871 | spin_unlock_irqrestore(&state_lock, flags); |
| 872 | |
| 873 | return ret; |
| 874 | } |
| 875 | EXPORT_SYMBOL(amd_iommu_set_invalid_ppr_cb); |
| 876 | |
Joerg Roedel | bc21662 | 2011-12-07 12:24:42 +0100 | [diff] [blame] | 877 | int amd_iommu_set_invalidate_ctx_cb(struct pci_dev *pdev, |
| 878 | amd_iommu_invalidate_ctx cb) |
| 879 | { |
| 880 | struct device_state *dev_state; |
| 881 | unsigned long flags; |
| 882 | u16 devid; |
| 883 | int ret; |
| 884 | |
| 885 | if (!amd_iommu_v2_supported()) |
| 886 | return -ENODEV; |
| 887 | |
| 888 | devid = device_id(pdev); |
| 889 | |
| 890 | spin_lock_irqsave(&state_lock, flags); |
| 891 | |
| 892 | ret = -EINVAL; |
Joerg Roedel | b87d2d7 | 2014-05-20 23:18:22 +0200 | [diff] [blame] | 893 | dev_state = __get_device_state(devid); |
Joerg Roedel | bc21662 | 2011-12-07 12:24:42 +0100 | [diff] [blame] | 894 | if (dev_state == NULL) |
| 895 | goto out_unlock; |
| 896 | |
| 897 | dev_state->inv_ctx_cb = cb; |
| 898 | |
| 899 | ret = 0; |
| 900 | |
| 901 | out_unlock: |
| 902 | spin_unlock_irqrestore(&state_lock, flags); |
| 903 | |
| 904 | return ret; |
| 905 | } |
| 906 | EXPORT_SYMBOL(amd_iommu_set_invalidate_ctx_cb); |
| 907 | |
Joerg Roedel | e3c495c | 2011-11-09 12:31:15 +0100 | [diff] [blame] | 908 | static int __init amd_iommu_v2_init(void) |
| 909 | { |
Joerg Roedel | 028eeac | 2011-11-24 12:48:13 +0100 | [diff] [blame] | 910 | int ret; |
Joerg Roedel | ed96f22 | 2011-11-23 17:30:39 +0100 | [diff] [blame] | 911 | |
Joerg Roedel | 63ce3ae | 2015-02-04 16:12:55 +0100 | [diff] [blame] | 912 | pr_info("AMD IOMMUv2 driver by Joerg Roedel <jroedel@suse.de>\n"); |
Joerg Roedel | 474d567d | 2012-03-15 12:46:40 +0100 | [diff] [blame] | 913 | |
| 914 | if (!amd_iommu_v2_supported()) { |
Masanari Iida | 07db040 | 2012-07-22 02:21:32 +0900 | [diff] [blame] | 915 | pr_info("AMD IOMMUv2 functionality not available on this system\n"); |
Joerg Roedel | 474d567d | 2012-03-15 12:46:40 +0100 | [diff] [blame] | 916 | /* |
| 917 | * Load anyway to provide the symbols to other modules |
| 918 | * which may use AMD IOMMUv2 optionally. |
| 919 | */ |
| 920 | return 0; |
| 921 | } |
Joerg Roedel | e3c495c | 2011-11-09 12:31:15 +0100 | [diff] [blame] | 922 | |
Joerg Roedel | ed96f22 | 2011-11-23 17:30:39 +0100 | [diff] [blame] | 923 | spin_lock_init(&state_lock); |
| 924 | |
Joerg Roedel | 028eeac | 2011-11-24 12:48:13 +0100 | [diff] [blame] | 925 | ret = -ENOMEM; |
| 926 | iommu_wq = create_workqueue("amd_iommu_v2"); |
Joerg Roedel | 8736b2c | 2011-11-24 16:21:52 +0100 | [diff] [blame] | 927 | if (iommu_wq == NULL) |
Joerg Roedel | 741669c | 2014-05-20 23:18:23 +0200 | [diff] [blame] | 928 | goto out; |
Joerg Roedel | 8736b2c | 2011-11-24 16:21:52 +0100 | [diff] [blame] | 929 | |
Joerg Roedel | 028eeac | 2011-11-24 12:48:13 +0100 | [diff] [blame] | 930 | amd_iommu_register_ppr_notifier(&ppr_nb); |
| 931 | |
Joerg Roedel | e3c495c | 2011-11-09 12:31:15 +0100 | [diff] [blame] | 932 | return 0; |
Joerg Roedel | 028eeac | 2011-11-24 12:48:13 +0100 | [diff] [blame] | 933 | |
Joerg Roedel | 741669c | 2014-05-20 23:18:23 +0200 | [diff] [blame] | 934 | out: |
Joerg Roedel | 028eeac | 2011-11-24 12:48:13 +0100 | [diff] [blame] | 935 | return ret; |
Joerg Roedel | e3c495c | 2011-11-09 12:31:15 +0100 | [diff] [blame] | 936 | } |
| 937 | |
| 938 | static void __exit amd_iommu_v2_exit(void) |
| 939 | { |
Joerg Roedel | ed96f22 | 2011-11-23 17:30:39 +0100 | [diff] [blame] | 940 | struct device_state *dev_state; |
Joerg Roedel | ed96f22 | 2011-11-23 17:30:39 +0100 | [diff] [blame] | 941 | int i; |
| 942 | |
Joerg Roedel | 474d567d | 2012-03-15 12:46:40 +0100 | [diff] [blame] | 943 | if (!amd_iommu_v2_supported()) |
| 944 | return; |
| 945 | |
Joerg Roedel | 028eeac | 2011-11-24 12:48:13 +0100 | [diff] [blame] | 946 | amd_iommu_unregister_ppr_notifier(&ppr_nb); |
| 947 | |
| 948 | flush_workqueue(iommu_wq); |
| 949 | |
| 950 | /* |
| 951 | * The loop below might call flush_workqueue(), so call |
| 952 | * destroy_workqueue() after it |
| 953 | */ |
Joerg Roedel | ed96f22 | 2011-11-23 17:30:39 +0100 | [diff] [blame] | 954 | for (i = 0; i < MAX_DEVICES; ++i) { |
| 955 | dev_state = get_device_state(i); |
| 956 | |
| 957 | if (dev_state == NULL) |
| 958 | continue; |
| 959 | |
| 960 | WARN_ON_ONCE(1); |
| 961 | |
Joerg Roedel | ed96f22 | 2011-11-23 17:30:39 +0100 | [diff] [blame] | 962 | put_device_state(dev_state); |
Joerg Roedel | 028eeac | 2011-11-24 12:48:13 +0100 | [diff] [blame] | 963 | amd_iommu_free_device(dev_state->pdev); |
Joerg Roedel | ed96f22 | 2011-11-23 17:30:39 +0100 | [diff] [blame] | 964 | } |
| 965 | |
Joerg Roedel | 028eeac | 2011-11-24 12:48:13 +0100 | [diff] [blame] | 966 | destroy_workqueue(iommu_wq); |
Joerg Roedel | e3c495c | 2011-11-09 12:31:15 +0100 | [diff] [blame] | 967 | } |
| 968 | |
| 969 | module_init(amd_iommu_v2_init); |
| 970 | module_exit(amd_iommu_v2_exit); |