blob: 3465faf1809e4cb1d6630e5cdc8f87cd4e405bd2 [file] [log] [blame]
Joerg Roedele3c495c2011-11-09 12:31:15 +01001/*
2 * Copyright (C) 2010-2012 Advanced Micro Devices, Inc.
Joerg Roedel63ce3ae2015-02-04 16:12:55 +01003 * Author: Joerg Roedel <jroedel@suse.de>
Joerg Roedele3c495c2011-11-09 12:31:15 +01004 *
5 * This program is free software; you can redistribute it and/or modify it
6 * under the terms of the GNU General Public License version 2 as published
7 * by the Free Software Foundation.
8 *
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
13 *
14 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, write to the Free Software
16 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
17 */
18
Joerg Roedel8736b2c2011-11-24 16:21:52 +010019#include <linux/mmu_notifier.h>
Joerg Roedeled96f222011-11-23 17:30:39 +010020#include <linux/amd-iommu.h>
21#include <linux/mm_types.h>
Joerg Roedel8736b2c2011-11-24 16:21:52 +010022#include <linux/profile.h>
Joerg Roedele3c495c2011-11-09 12:31:15 +010023#include <linux/module.h>
Joerg Roedel2d5503b2011-11-24 10:41:57 +010024#include <linux/sched.h>
Joerg Roedeled96f222011-11-23 17:30:39 +010025#include <linux/iommu.h>
Joerg Roedel028eeac2011-11-24 12:48:13 +010026#include <linux/wait.h>
Joerg Roedeled96f222011-11-23 17:30:39 +010027#include <linux/pci.h>
28#include <linux/gfp.h>
29
Joerg Roedel028eeac2011-11-24 12:48:13 +010030#include "amd_iommu_types.h"
Joerg Roedeled96f222011-11-23 17:30:39 +010031#include "amd_iommu_proto.h"
Joerg Roedele3c495c2011-11-09 12:31:15 +010032
33MODULE_LICENSE("GPL v2");
Joerg Roedel63ce3ae2015-02-04 16:12:55 +010034MODULE_AUTHOR("Joerg Roedel <jroedel@suse.de>");
Joerg Roedele3c495c2011-11-09 12:31:15 +010035
Joerg Roedeled96f222011-11-23 17:30:39 +010036#define MAX_DEVICES 0x10000
37#define PRI_QUEUE_SIZE 512
38
39struct pri_queue {
40 atomic_t inflight;
41 bool finish;
Joerg Roedel028eeac2011-11-24 12:48:13 +010042 int status;
Joerg Roedeled96f222011-11-23 17:30:39 +010043};
44
45struct pasid_state {
46 struct list_head list; /* For global state-list */
47 atomic_t count; /* Reference count */
Joerg Roedeld73a6d72014-06-20 16:14:22 +020048 unsigned mmu_notifier_count; /* Counting nested mmu_notifier
Joerg Roedele79df312014-05-20 23:18:26 +020049 calls */
Joerg Roedeled96f222011-11-23 17:30:39 +010050 struct mm_struct *mm; /* mm_struct for the faults */
Joerg Roedelff6d0cc2014-07-08 12:49:50 +020051 struct mmu_notifier mn; /* mmu_notifier handle */
Joerg Roedeled96f222011-11-23 17:30:39 +010052 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 Roedeld9e16112014-07-09 15:43:11 +020055 bool invalid; /* Used during setup and
56 teardown of the pasid */
Joerg Roedeld73a6d72014-06-20 16:14:22 +020057 spinlock_t lock; /* Protect pri_queues and
58 mmu_notifer_count */
Joerg Roedel028eeac2011-11-24 12:48:13 +010059 wait_queue_head_t wq; /* To wait for count == 0 */
Joerg Roedeled96f222011-11-23 17:30:39 +010060};
61
62struct device_state {
Joerg Roedel741669c2014-05-20 23:18:23 +020063 struct list_head list;
64 u16 devid;
Joerg Roedeled96f222011-11-23 17:30:39 +010065 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 Roedel175d6142011-11-28 14:36:36 +010071 amd_iommu_invalid_ppr_cb inv_ppr_cb;
Joerg Roedelbc216622011-12-07 12:24:42 +010072 amd_iommu_invalidate_ctx inv_ctx_cb;
Joerg Roedeled96f222011-11-23 17:30:39 +010073 spinlock_t lock;
Joerg Roedel028eeac2011-11-24 12:48:13 +010074 wait_queue_head_t wq;
75};
76
77struct 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 Roedeled96f222011-11-23 17:30:39 +010088};
89
Joerg Roedel741669c2014-05-20 23:18:23 +020090static LIST_HEAD(state_list);
Joerg Roedeled96f222011-11-23 17:30:39 +010091static spinlock_t state_lock;
92
Joerg Roedel028eeac2011-11-24 12:48:13 +010093static struct workqueue_struct *iommu_wq;
94
Joerg Roedel2d5503b2011-11-24 10:41:57 +010095static void free_pasid_states(struct device_state *dev_state);
Joerg Roedeled96f222011-11-23 17:30:39 +010096
97static 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 Roedelb87d2d72014-05-20 23:18:22 +0200107static struct device_state *__get_device_state(u16 devid)
108{
Joerg Roedel741669c2014-05-20 23:18:23 +0200109 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 Roedelb87d2d72014-05-20 23:18:22 +0200117}
118
Joerg Roedeled96f222011-11-23 17:30:39 +0100119static 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 Roedelb87d2d72014-05-20 23:18:22 +0200125 dev_state = __get_device_state(devid);
Joerg Roedeled96f222011-11-23 17:30:39 +0100126 if (dev_state != NULL)
127 atomic_inc(&dev_state->count);
128 spin_unlock_irqrestore(&state_lock, flags);
129
130 return dev_state;
131}
132
133static void free_device_state(struct device_state *dev_state)
134{
Joerg Roedel2d5503b2011-11-24 10:41:57 +0100135 /*
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 Roedeled96f222011-11-23 17:30:39 +0100139 iommu_detach_device(dev_state->domain, &dev_state->pdev->dev);
Joerg Roedel2d5503b2011-11-24 10:41:57 +0100140
141 /* Everything is down now, free the IOMMUv2 domain */
Joerg Roedeled96f222011-11-23 17:30:39 +0100142 iommu_domain_free(dev_state->domain);
Joerg Roedel2d5503b2011-11-24 10:41:57 +0100143
144 /* Finally get rid of the device-state */
Joerg Roedeled96f222011-11-23 17:30:39 +0100145 kfree(dev_state);
146}
147
148static void put_device_state(struct device_state *dev_state)
149{
150 if (atomic_dec_and_test(&dev_state->count))
Joerg Roedel028eeac2011-11-24 12:48:13 +0100151 wake_up(&dev_state->wq);
Joerg Roedeled96f222011-11-23 17:30:39 +0100152}
153
Joerg Roedel2d5503b2011-11-24 10:41:57 +0100154/* Must be called under dev_state->lock */
155static 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
188static 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
211out_unlock:
212 spin_unlock_irqrestore(&dev_state->lock, flags);
213
214 return ret;
215}
216
217static 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
230out_unlock:
231 spin_unlock_irqrestore(&dev_state->lock, flags);
232}
233
234static 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
250out_unlock:
251 spin_unlock_irqrestore(&dev_state->lock, flags);
252
253 return ret;
254}
255
256static void free_pasid_state(struct pasid_state *pasid_state)
257{
258 kfree(pasid_state);
259}
260
261static void put_pasid_state(struct pasid_state *pasid_state)
262{
Oded Gabbay1c510992014-11-10 12:21:39 +0200263 if (atomic_dec_and_test(&pasid_state->count))
Joerg Roedel028eeac2011-11-24 12:48:13 +0100264 wake_up(&pasid_state->wq);
Joerg Roedel2d5503b2011-11-24 10:41:57 +0100265}
266
Joerg Roedel028eeac2011-11-24 12:48:13 +0100267static void put_pasid_state_wait(struct pasid_state *pasid_state)
268{
Oded Gabbay1bf1b432015-04-16 17:08:44 +0300269 atomic_dec(&pasid_state->count);
Joerg Roedela1bec062015-02-04 15:50:38 +0100270 wait_event(pasid_state->wq, !atomic_read(&pasid_state->count));
Joerg Roedel028eeac2011-11-24 12:48:13 +0100271 free_pasid_state(pasid_state);
272}
273
Joerg Roedel61feb432014-07-08 14:19:35 +0200274static void unbind_pasid(struct pasid_state *pasid_state)
Joerg Roedel8736b2c2011-11-24 16:21:52 +0100275{
276 struct iommu_domain *domain;
277
278 domain = pasid_state->device_state->domain;
279
Joerg Roedel53d340e2014-07-08 15:01:43 +0200280 /*
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 Roedel8736b2c2011-11-24 16:21:52 +0100290 amd_iommu_domain_clear_gcr3(domain, pasid_state->pasid);
Joerg Roedel8736b2c2011-11-24 16:21:52 +0100291
292 /* Make sure no more pending faults are in the queue */
293 flush_workqueue(iommu_wq);
Joerg Roedel8736b2c2011-11-24 16:21:52 +0100294}
295
Joerg Roedel2d5503b2011-11-24 10:41:57 +0100296static 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
308static 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
322static 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 Roedel2d5503b2011-11-24 10:41:57 +0100332 put_pasid_state(pasid_state);
Joerg Roedela40d4c62014-05-20 23:18:24 +0200333
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 Roedelc5db16a2014-07-08 14:15:45 +0200339
340 put_pasid_state_wait(pasid_state); /* Reference taken in
Joerg Roedeldaff2f92014-07-30 16:04:40 +0200341 amd_iommu_bind_pasid */
Joerg Roedel75058a32014-07-30 16:04:39 +0200342
343 /* Drop reference taken in amd_iommu_bind_pasid */
344 put_device_state(dev_state);
Joerg Roedel2d5503b2011-11-24 10:41:57 +0100345 }
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 Roedel8736b2c2011-11-24 16:21:52 +0100357static struct pasid_state *mn_to_state(struct mmu_notifier *mn)
358{
359 return container_of(mn, struct pasid_state, mn);
360}
361
362static 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
374static int mn_clear_flush_young(struct mmu_notifier *mn,
375 struct mm_struct *mm,
Andres Lagar-Cavilla57128462014-09-22 14:54:42 -0700376 unsigned long start,
377 unsigned long end)
Joerg Roedel8736b2c2011-11-24 16:21:52 +0100378{
Andres Lagar-Cavilla57128462014-09-22 14:54:42 -0700379 for (; start < end; start += PAGE_SIZE)
380 __mn_flush_page(mn, start);
Joerg Roedel8736b2c2011-11-24 16:21:52 +0100381
382 return 0;
383}
384
Joerg Roedel8736b2c2011-11-24 16:21:52 +0100385static 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 Roedele7cc3dd2014-11-13 13:46:09 +1100392static void mn_invalidate_range(struct mmu_notifier *mn,
393 struct mm_struct *mm,
394 unsigned long start, unsigned long end)
Joerg Roedel8736b2c2011-11-24 16:21:52 +0100395{
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 Roedele7cc3dd2014-11-13 13:46:09 +1100402 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 Roedel8736b2c2011-11-24 16:21:52 +0100407}
408
Joerg Roedela40d4c62014-05-20 23:18:24 +0200409static 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 Roedeld9e16112014-07-09 15:43:11 +0200413 bool run_inv_ctx_cb;
Joerg Roedela40d4c62014-05-20 23:18:24 +0200414
415 might_sleep();
416
Joerg Roedeld9e16112014-07-09 15:43:11 +0200417 pasid_state = mn_to_state(mn);
418 dev_state = pasid_state->device_state;
419 run_inv_ctx_cb = !pasid_state->invalid;
Joerg Roedela40d4c62014-05-20 23:18:24 +0200420
Dan Carpenter940f700d2015-02-20 13:52:01 +0300421 if (run_inv_ctx_cb && dev_state->inv_ctx_cb)
Joerg Roedela40d4c62014-05-20 23:18:24 +0200422 dev_state->inv_ctx_cb(dev_state->pdev, pasid_state->pasid);
423
Joerg Roedel61feb432014-07-08 14:19:35 +0200424 unbind_pasid(pasid_state);
Joerg Roedela40d4c62014-05-20 23:18:24 +0200425}
426
Joerg Roedel8736b2c2011-11-24 16:21:52 +0100427static struct mmu_notifier_ops iommu_mn = {
Joerg Roedela40d4c62014-05-20 23:18:24 +0200428 .release = mn_release,
Joerg Roedel8736b2c2011-11-24 16:21:52 +0100429 .clear_flush_young = mn_clear_flush_young,
Joerg Roedel8736b2c2011-11-24 16:21:52 +0100430 .invalidate_page = mn_invalidate_page,
Joerg Roedele7cc3dd2014-11-13 13:46:09 +1100431 .invalidate_range = mn_invalidate_range,
Joerg Roedel8736b2c2011-11-24 16:21:52 +0100432};
433
Joerg Roedel028eeac2011-11-24 12:48:13 +0100434static 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
444static 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 Barnes9dc00f42014-12-12 16:55:30 -0800461static 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 Roedel028eeac2011-11-24 12:48:13 +0100489static void do_fault(struct work_struct *work)
490{
491 struct fault *fault = container_of(work, struct fault, work);
Jesse Barnes9dc00f42014-12-12 16:55:30 -0800492 struct mm_struct *mm;
493 struct vm_area_struct *vma;
494 u64 address;
495 int ret, write;
Joerg Roedel028eeac2011-11-24 12:48:13 +0100496
497 write = !!(fault->flags & PPR_FAULT_WRITE);
498
Jesse Barnes9dc00f42014-12-12 16:55:30 -0800499 mm = fault->state->mm;
500 address = fault->address;
Joerg Roedel028eeac2011-11-24 12:48:13 +0100501
Jesse Barnes9dc00f42014-12-12 16:55:30 -0800502 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 Roedel175d6142011-11-28 14:36:36 +0100509 }
Joerg Roedel028eeac2011-11-24 12:48:13 +0100510
Jesse Barnes9dc00f42014-12-12 16:55:30 -0800511 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
521out:
Joerg Roedel028eeac2011-11-24 12:48:13 +0100522 finish_pri_tag(fault->dev_state, fault->state, fault->tag);
523
524 put_pasid_state(fault->state);
525
526 kfree(fault);
527}
528
529static 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 Roedel53d340e2014-07-08 15:01:43 +0200550 if (pasid_state == NULL || pasid_state->invalid) {
Joerg Roedel028eeac2011-11-24 12:48:13 +0100551 /* 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 Skidanovb00675b2014-07-08 17:30:16 +0300575 fault->pasid = iommu_fault->pasid;
Joerg Roedel028eeac2011-11-24 12:48:13 +0100576 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
583out_drop_state:
Joerg Roedeldc88db72014-07-08 14:55:10 +0200584
585 if (ret != NOTIFY_OK && pasid_state)
586 put_pasid_state(pasid_state);
587
Joerg Roedel028eeac2011-11-24 12:48:13 +0100588 put_device_state(dev_state);
589
590out:
591 return ret;
592}
593
594static struct notifier_block ppr_nb = {
595 .notifier_call = ppr_notifier,
596};
597
Joerg Roedel2d5503b2011-11-24 10:41:57 +0100598int 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 Roedelf0aac632014-07-08 15:15:07 +0200603 struct mm_struct *mm;
Joerg Roedel2d5503b2011-11-24 10:41:57 +0100604 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 Roedelf0aac632014-07-08 15:15:07 +0200627
Joerg Roedel2d5503b2011-11-24 10:41:57 +0100628 atomic_set(&pasid_state->count, 1);
Joerg Roedel028eeac2011-11-24 12:48:13 +0100629 init_waitqueue_head(&pasid_state->wq);
Joerg Roedel2c13d472012-07-19 10:56:10 +0200630 spin_lock_init(&pasid_state->lock);
631
Joerg Roedelf0aac632014-07-08 15:15:07 +0200632 mm = get_task_mm(task);
Joerg Roedelf0aac632014-07-08 15:15:07 +0200633 pasid_state->mm = mm;
Joerg Roedel2d5503b2011-11-24 10:41:57 +0100634 pasid_state->device_state = dev_state;
635 pasid_state->pasid = pasid;
Joerg Roedeld9e16112014-07-09 15:43:11 +0200636 pasid_state->invalid = true; /* Mark as valid only if we are
637 done with setting up the pasid */
Joerg Roedel8736b2c2011-11-24 16:21:52 +0100638 pasid_state->mn.ops = &iommu_mn;
Joerg Roedel2d5503b2011-11-24 10:41:57 +0100639
640 if (pasid_state->mm == NULL)
641 goto out_free;
642
Joerg Roedelf0aac632014-07-08 15:15:07 +0200643 mmu_notifier_register(&pasid_state->mn, mm);
Joerg Roedel8736b2c2011-11-24 16:21:52 +0100644
Joerg Roedel2d5503b2011-11-24 10:41:57 +0100645 ret = set_pasid_state(dev_state, pasid_state, pasid);
646 if (ret)
Joerg Roedel8736b2c2011-11-24 16:21:52 +0100647 goto out_unregister;
Joerg Roedel2d5503b2011-11-24 10:41:57 +0100648
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 Roedeld9e16112014-07-09 15:43:11 +0200654 /* Now we are ready to handle faults */
655 pasid_state->invalid = false;
656
Joerg Roedelf0aac632014-07-08 15:15:07 +0200657 /*
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 Roedel2d5503b2011-11-24 10:41:57 +0100664 return 0;
665
666out_clear_state:
667 clear_pasid_state(dev_state, pasid);
668
Joerg Roedel8736b2c2011-11-24 16:21:52 +0100669out_unregister:
Joerg Roedelf0aac632014-07-08 15:15:07 +0200670 mmu_notifier_unregister(&pasid_state->mn, mm);
Joerg Roedel8736b2c2011-11-24 16:21:52 +0100671
Joerg Roedel2d5503b2011-11-24 10:41:57 +0100672out_free:
Joerg Roedelf0aac632014-07-08 15:15:07 +0200673 mmput(mm);
Joerg Roedel028eeac2011-11-24 12:48:13 +0100674 free_pasid_state(pasid_state);
Joerg Roedel2d5503b2011-11-24 10:41:57 +0100675
676out:
677 put_device_state(dev_state);
678
679 return ret;
680}
681EXPORT_SYMBOL(amd_iommu_bind_pasid);
682
683void amd_iommu_unbind_pasid(struct pci_dev *pdev, int pasid)
684{
Joerg Roedela40d4c62014-05-20 23:18:24 +0200685 struct pasid_state *pasid_state;
Joerg Roedel2d5503b2011-11-24 10:41:57 +0100686 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 Roedela40d4c62014-05-20 23:18:24 +0200702 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 Roedel53d340e2014-07-08 15:01:43 +0200711 /* Clear the pasid state so that the pasid can be re-used */
712 clear_pasid_state(dev_state, pasid_state->pasid);
713
Joerg Roedelf0aac632014-07-08 15:15:07 +0200714 /*
Joerg Roedelfcaa9602014-07-30 16:04:37 +0200715 * Call mmu_notifier_unregister to drop our reference
716 * to pasid_state->mm
Joerg Roedelf0aac632014-07-08 15:15:07 +0200717 */
Joerg Roedelfcaa9602014-07-30 16:04:37 +0200718 mmu_notifier_unregister(&pasid_state->mn, pasid_state->mm);
Joerg Roedel2d5503b2011-11-24 10:41:57 +0100719
Joerg Roedelc5db16a2014-07-08 14:15:45 +0200720 put_pasid_state_wait(pasid_state); /* Reference taken in
Joerg Roedeldaff2f92014-07-30 16:04:40 +0200721 amd_iommu_bind_pasid */
Joerg Roedel2d5503b2011-11-24 10:41:57 +0100722out:
Joerg Roedel75058a32014-07-30 16:04:39 +0200723 /* Drop reference taken in this function */
724 put_device_state(dev_state);
725
726 /* Drop reference taken in amd_iommu_bind_pasid */
Joerg Roedel2d5503b2011-11-24 10:41:57 +0100727 put_device_state(dev_state);
728}
729EXPORT_SYMBOL(amd_iommu_unbind_pasid);
730
Joerg Roedeled96f222011-11-23 17:30:39 +0100731int 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 Roedel028eeac2011-11-24 12:48:13 +0100753 init_waitqueue_head(&dev_state->wq);
Joerg Roedel741669c2014-05-20 23:18:23 +0200754 dev_state->pdev = pdev;
755 dev_state->devid = devid;
Joerg Roedeled96f222011-11-23 17:30:39 +0100756
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 Roedel741669c2014-05-20 23:18:23 +0200785 if (__get_device_state(devid) != NULL) {
Joerg Roedeled96f222011-11-23 17:30:39 +0100786 spin_unlock_irqrestore(&state_lock, flags);
787 ret = -EBUSY;
788 goto out_free_domain;
789 }
790
Joerg Roedel741669c2014-05-20 23:18:23 +0200791 list_add_tail(&dev_state->list, &state_list);
Joerg Roedeled96f222011-11-23 17:30:39 +0100792
793 spin_unlock_irqrestore(&state_lock, flags);
794
795 return 0;
796
797out_free_domain:
798 iommu_domain_free(dev_state->domain);
799
800out_free_states:
801 free_page((unsigned long)dev_state->states);
802
803out_free_dev_state:
804 kfree(dev_state);
805
806 return ret;
807}
808EXPORT_SYMBOL(amd_iommu_init_device);
809
810void 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 Roedelb87d2d72014-05-20 23:18:22 +0200823 dev_state = __get_device_state(devid);
Joerg Roedeled96f222011-11-23 17:30:39 +0100824 if (dev_state == NULL) {
825 spin_unlock_irqrestore(&state_lock, flags);
826 return;
827 }
828
Joerg Roedel741669c2014-05-20 23:18:23 +0200829 list_del(&dev_state->list);
Joerg Roedeled96f222011-11-23 17:30:39 +0100830
831 spin_unlock_irqrestore(&state_lock, flags);
832
Joerg Roedel2d5503b2011-11-24 10:41:57 +0100833 /* Get rid of any remaining pasid states */
834 free_pasid_states(dev_state);
835
Peter Zijlstra91f65fa2015-02-03 13:25:51 +0100836 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 Roedeled96f222011-11-23 17:30:39 +0100843}
844EXPORT_SYMBOL(amd_iommu_free_device);
845
Joerg Roedel175d6142011-11-28 14:36:36 +0100846int 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 Roedelb87d2d72014-05-20 23:18:22 +0200862 dev_state = __get_device_state(devid);
Joerg Roedel175d6142011-11-28 14:36:36 +0100863 if (dev_state == NULL)
864 goto out_unlock;
865
866 dev_state->inv_ppr_cb = cb;
867
868 ret = 0;
869
870out_unlock:
871 spin_unlock_irqrestore(&state_lock, flags);
872
873 return ret;
874}
875EXPORT_SYMBOL(amd_iommu_set_invalid_ppr_cb);
876
Joerg Roedelbc216622011-12-07 12:24:42 +0100877int 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 Roedelb87d2d72014-05-20 23:18:22 +0200893 dev_state = __get_device_state(devid);
Joerg Roedelbc216622011-12-07 12:24:42 +0100894 if (dev_state == NULL)
895 goto out_unlock;
896
897 dev_state->inv_ctx_cb = cb;
898
899 ret = 0;
900
901out_unlock:
902 spin_unlock_irqrestore(&state_lock, flags);
903
904 return ret;
905}
906EXPORT_SYMBOL(amd_iommu_set_invalidate_ctx_cb);
907
Joerg Roedele3c495c2011-11-09 12:31:15 +0100908static int __init amd_iommu_v2_init(void)
909{
Joerg Roedel028eeac2011-11-24 12:48:13 +0100910 int ret;
Joerg Roedeled96f222011-11-23 17:30:39 +0100911
Joerg Roedel63ce3ae2015-02-04 16:12:55 +0100912 pr_info("AMD IOMMUv2 driver by Joerg Roedel <jroedel@suse.de>\n");
Joerg Roedel474d567d2012-03-15 12:46:40 +0100913
914 if (!amd_iommu_v2_supported()) {
Masanari Iida07db0402012-07-22 02:21:32 +0900915 pr_info("AMD IOMMUv2 functionality not available on this system\n");
Joerg Roedel474d567d2012-03-15 12:46:40 +0100916 /*
917 * Load anyway to provide the symbols to other modules
918 * which may use AMD IOMMUv2 optionally.
919 */
920 return 0;
921 }
Joerg Roedele3c495c2011-11-09 12:31:15 +0100922
Joerg Roedeled96f222011-11-23 17:30:39 +0100923 spin_lock_init(&state_lock);
924
Joerg Roedel028eeac2011-11-24 12:48:13 +0100925 ret = -ENOMEM;
926 iommu_wq = create_workqueue("amd_iommu_v2");
Joerg Roedel8736b2c2011-11-24 16:21:52 +0100927 if (iommu_wq == NULL)
Joerg Roedel741669c2014-05-20 23:18:23 +0200928 goto out;
Joerg Roedel8736b2c2011-11-24 16:21:52 +0100929
Joerg Roedel028eeac2011-11-24 12:48:13 +0100930 amd_iommu_register_ppr_notifier(&ppr_nb);
931
Joerg Roedele3c495c2011-11-09 12:31:15 +0100932 return 0;
Joerg Roedel028eeac2011-11-24 12:48:13 +0100933
Joerg Roedel741669c2014-05-20 23:18:23 +0200934out:
Joerg Roedel028eeac2011-11-24 12:48:13 +0100935 return ret;
Joerg Roedele3c495c2011-11-09 12:31:15 +0100936}
937
938static void __exit amd_iommu_v2_exit(void)
939{
Joerg Roedeled96f222011-11-23 17:30:39 +0100940 struct device_state *dev_state;
Joerg Roedeled96f222011-11-23 17:30:39 +0100941 int i;
942
Joerg Roedel474d567d2012-03-15 12:46:40 +0100943 if (!amd_iommu_v2_supported())
944 return;
945
Joerg Roedel028eeac2011-11-24 12:48:13 +0100946 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 Roedeled96f222011-11-23 17:30:39 +0100954 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 Roedeled96f222011-11-23 17:30:39 +0100962 put_device_state(dev_state);
Joerg Roedel028eeac2011-11-24 12:48:13 +0100963 amd_iommu_free_device(dev_state->pdev);
Joerg Roedeled96f222011-11-23 17:30:39 +0100964 }
965
Joerg Roedel028eeac2011-11-24 12:48:13 +0100966 destroy_workqueue(iommu_wq);
Joerg Roedele3c495c2011-11-09 12:31:15 +0100967}
968
969module_init(amd_iommu_v2_init);
970module_exit(amd_iommu_v2_exit);