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