2 * Copyright (C) 2010-2012 Advanced Micro Devices, Inc.
3 * Author: Joerg Roedel <joerg.roedel@amd.com>
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.
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.
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
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>
30 #include "amd_iommu_types.h"
31 #include "amd_iommu_proto.h"
33 MODULE_LICENSE("GPL v2");
34 MODULE_AUTHOR("Joerg Roedel <joerg.roedel@amd.com>");
36 #define MAX_DEVICES 0x10000
37 #define PRI_QUEUE_SIZE 512
46 struct list_head list
; /* For global state-list */
47 atomic_t count
; /* Reference count */
48 struct task_struct
*task
; /* Task bound to this PASID */
49 struct mm_struct
*mm
; /* mm_struct for the faults */
50 struct mmu_notifier mn
; /* mmu_otifier handle */
51 struct pri_queue pri
[PRI_QUEUE_SIZE
]; /* PRI tag states */
52 struct device_state
*device_state
; /* Link to our device_state */
53 int pasid
; /* PASID index */
54 spinlock_t lock
; /* Protect pri_queues */
55 wait_queue_head_t wq
; /* To wait for count == 0 */
61 struct pasid_state
**states
;
62 struct iommu_domain
*domain
;
65 amd_iommu_invalid_ppr_cb inv_ppr_cb
;
66 amd_iommu_invalidate_ctx inv_ctx_cb
;
72 struct work_struct work
;
73 struct device_state
*dev_state
;
74 struct pasid_state
*state
;
84 static struct device_state
**state_table
;
85 static spinlock_t state_lock
;
87 /* List and lock for all pasid_states */
88 static LIST_HEAD(pasid_state_list
);
89 static DEFINE_SPINLOCK(ps_lock
);
91 static struct workqueue_struct
*iommu_wq
;
94 * Empty page table - Used between
95 * mmu_notifier_invalidate_range_start and
96 * mmu_notifier_invalidate_range_end
98 static u64
*empty_page_table
;
100 static void free_pasid_states(struct device_state
*dev_state
);
101 static void unbind_pasid(struct device_state
*dev_state
, int pasid
);
102 static int task_exit(struct notifier_block
*nb
, unsigned long e
, void *data
);
104 static u16
device_id(struct pci_dev
*pdev
)
108 devid
= pdev
->bus
->number
;
109 devid
= (devid
<< 8) | pdev
->devfn
;
114 static struct device_state
*get_device_state(u16 devid
)
116 struct device_state
*dev_state
;
119 spin_lock_irqsave(&state_lock
, flags
);
120 dev_state
= state_table
[devid
];
121 if (dev_state
!= NULL
)
122 atomic_inc(&dev_state
->count
);
123 spin_unlock_irqrestore(&state_lock
, flags
);
128 static void free_device_state(struct device_state
*dev_state
)
131 * First detach device from domain - No more PRI requests will arrive
132 * from that device after it is unbound from the IOMMUv2 domain.
134 iommu_detach_device(dev_state
->domain
, &dev_state
->pdev
->dev
);
136 /* Everything is down now, free the IOMMUv2 domain */
137 iommu_domain_free(dev_state
->domain
);
139 /* Finally get rid of the device-state */
143 static void put_device_state(struct device_state
*dev_state
)
145 if (atomic_dec_and_test(&dev_state
->count
))
146 wake_up(&dev_state
->wq
);
149 static void put_device_state_wait(struct device_state
*dev_state
)
153 prepare_to_wait(&dev_state
->wq
, &wait
, TASK_UNINTERRUPTIBLE
);
154 if (!atomic_dec_and_test(&dev_state
->count
))
156 finish_wait(&dev_state
->wq
, &wait
);
158 free_device_state(dev_state
);
161 static struct notifier_block profile_nb
= {
162 .notifier_call
= task_exit
,
165 static void link_pasid_state(struct pasid_state
*pasid_state
)
168 list_add_tail(&pasid_state
->list
, &pasid_state_list
);
169 spin_unlock(&ps_lock
);
172 static void __unlink_pasid_state(struct pasid_state
*pasid_state
)
174 list_del(&pasid_state
->list
);
177 static void unlink_pasid_state(struct pasid_state
*pasid_state
)
180 __unlink_pasid_state(pasid_state
);
181 spin_unlock(&ps_lock
);
184 /* Must be called under dev_state->lock */
185 static struct pasid_state
**__get_pasid_state_ptr(struct device_state
*dev_state
,
186 int pasid
, bool alloc
)
188 struct pasid_state
**root
, **ptr
;
191 level
= dev_state
->pasid_levels
;
192 root
= dev_state
->states
;
196 index
= (pasid
>> (9 * level
)) & 0x1ff;
206 *ptr
= (void *)get_zeroed_page(GFP_ATOMIC
);
211 root
= (struct pasid_state
**)*ptr
;
218 static int set_pasid_state(struct device_state
*dev_state
,
219 struct pasid_state
*pasid_state
,
222 struct pasid_state
**ptr
;
226 spin_lock_irqsave(&dev_state
->lock
, flags
);
227 ptr
= __get_pasid_state_ptr(dev_state
, pasid
, true);
242 spin_unlock_irqrestore(&dev_state
->lock
, flags
);
247 static void clear_pasid_state(struct device_state
*dev_state
, int pasid
)
249 struct pasid_state
**ptr
;
252 spin_lock_irqsave(&dev_state
->lock
, flags
);
253 ptr
= __get_pasid_state_ptr(dev_state
, pasid
, true);
261 spin_unlock_irqrestore(&dev_state
->lock
, flags
);
264 static struct pasid_state
*get_pasid_state(struct device_state
*dev_state
,
267 struct pasid_state
**ptr
, *ret
= NULL
;
270 spin_lock_irqsave(&dev_state
->lock
, flags
);
271 ptr
= __get_pasid_state_ptr(dev_state
, pasid
, false);
278 atomic_inc(&ret
->count
);
281 spin_unlock_irqrestore(&dev_state
->lock
, flags
);
286 static void free_pasid_state(struct pasid_state
*pasid_state
)
291 static void put_pasid_state(struct pasid_state
*pasid_state
)
293 if (atomic_dec_and_test(&pasid_state
->count
)) {
294 put_device_state(pasid_state
->device_state
);
295 wake_up(&pasid_state
->wq
);
299 static void put_pasid_state_wait(struct pasid_state
*pasid_state
)
303 prepare_to_wait(&pasid_state
->wq
, &wait
, TASK_UNINTERRUPTIBLE
);
305 if (atomic_dec_and_test(&pasid_state
->count
))
306 put_device_state(pasid_state
->device_state
);
310 finish_wait(&pasid_state
->wq
, &wait
);
311 mmput(pasid_state
->mm
);
312 free_pasid_state(pasid_state
);
315 static void __unbind_pasid(struct pasid_state
*pasid_state
)
317 struct iommu_domain
*domain
;
319 domain
= pasid_state
->device_state
->domain
;
321 amd_iommu_domain_clear_gcr3(domain
, pasid_state
->pasid
);
322 clear_pasid_state(pasid_state
->device_state
, pasid_state
->pasid
);
324 /* Make sure no more pending faults are in the queue */
325 flush_workqueue(iommu_wq
);
327 mmu_notifier_unregister(&pasid_state
->mn
, pasid_state
->mm
);
329 put_pasid_state(pasid_state
); /* Reference taken in bind() function */
332 static void unbind_pasid(struct device_state
*dev_state
, int pasid
)
334 struct pasid_state
*pasid_state
;
336 pasid_state
= get_pasid_state(dev_state
, pasid
);
337 if (pasid_state
== NULL
)
340 unlink_pasid_state(pasid_state
);
341 __unbind_pasid(pasid_state
);
342 put_pasid_state_wait(pasid_state
); /* Reference taken in this function */
345 static void free_pasid_states_level1(struct pasid_state
**tbl
)
349 for (i
= 0; i
< 512; ++i
) {
353 free_page((unsigned long)tbl
[i
]);
357 static void free_pasid_states_level2(struct pasid_state
**tbl
)
359 struct pasid_state
**ptr
;
362 for (i
= 0; i
< 512; ++i
) {
366 ptr
= (struct pasid_state
**)tbl
[i
];
367 free_pasid_states_level1(ptr
);
371 static void free_pasid_states(struct device_state
*dev_state
)
373 struct pasid_state
*pasid_state
;
376 for (i
= 0; i
< dev_state
->max_pasids
; ++i
) {
377 pasid_state
= get_pasid_state(dev_state
, i
);
378 if (pasid_state
== NULL
)
381 put_pasid_state(pasid_state
);
382 unbind_pasid(dev_state
, i
);
385 if (dev_state
->pasid_levels
== 2)
386 free_pasid_states_level2(dev_state
->states
);
387 else if (dev_state
->pasid_levels
== 1)
388 free_pasid_states_level1(dev_state
->states
);
389 else if (dev_state
->pasid_levels
!= 0)
392 free_page((unsigned long)dev_state
->states
);
395 static struct pasid_state
*mn_to_state(struct mmu_notifier
*mn
)
397 return container_of(mn
, struct pasid_state
, mn
);
400 static void __mn_flush_page(struct mmu_notifier
*mn
,
401 unsigned long address
)
403 struct pasid_state
*pasid_state
;
404 struct device_state
*dev_state
;
406 pasid_state
= mn_to_state(mn
);
407 dev_state
= pasid_state
->device_state
;
409 amd_iommu_flush_page(dev_state
->domain
, pasid_state
->pasid
, address
);
412 static int mn_clear_flush_young(struct mmu_notifier
*mn
,
413 struct mm_struct
*mm
,
414 unsigned long address
)
416 __mn_flush_page(mn
, address
);
421 static void mn_change_pte(struct mmu_notifier
*mn
,
422 struct mm_struct
*mm
,
423 unsigned long address
,
426 __mn_flush_page(mn
, address
);
429 static void mn_invalidate_page(struct mmu_notifier
*mn
,
430 struct mm_struct
*mm
,
431 unsigned long address
)
433 __mn_flush_page(mn
, address
);
436 static void mn_invalidate_range_start(struct mmu_notifier
*mn
,
437 struct mm_struct
*mm
,
438 unsigned long start
, unsigned long end
)
440 struct pasid_state
*pasid_state
;
441 struct device_state
*dev_state
;
443 pasid_state
= mn_to_state(mn
);
444 dev_state
= pasid_state
->device_state
;
446 amd_iommu_domain_set_gcr3(dev_state
->domain
, pasid_state
->pasid
,
447 __pa(empty_page_table
));
450 static void mn_invalidate_range_end(struct mmu_notifier
*mn
,
451 struct mm_struct
*mm
,
452 unsigned long start
, unsigned long end
)
454 struct pasid_state
*pasid_state
;
455 struct device_state
*dev_state
;
457 pasid_state
= mn_to_state(mn
);
458 dev_state
= pasid_state
->device_state
;
460 amd_iommu_domain_set_gcr3(dev_state
->domain
, pasid_state
->pasid
,
461 __pa(pasid_state
->mm
->pgd
));
464 static struct mmu_notifier_ops iommu_mn
= {
465 .clear_flush_young
= mn_clear_flush_young
,
466 .change_pte
= mn_change_pte
,
467 .invalidate_page
= mn_invalidate_page
,
468 .invalidate_range_start
= mn_invalidate_range_start
,
469 .invalidate_range_end
= mn_invalidate_range_end
,
472 static void set_pri_tag_status(struct pasid_state
*pasid_state
,
477 spin_lock_irqsave(&pasid_state
->lock
, flags
);
478 pasid_state
->pri
[tag
].status
= status
;
479 spin_unlock_irqrestore(&pasid_state
->lock
, flags
);
482 static void finish_pri_tag(struct device_state
*dev_state
,
483 struct pasid_state
*pasid_state
,
488 spin_lock_irqsave(&pasid_state
->lock
, flags
);
489 if (atomic_dec_and_test(&pasid_state
->pri
[tag
].inflight
) &&
490 pasid_state
->pri
[tag
].finish
) {
491 amd_iommu_complete_ppr(dev_state
->pdev
, pasid_state
->pasid
,
492 pasid_state
->pri
[tag
].status
, tag
);
493 pasid_state
->pri
[tag
].finish
= false;
494 pasid_state
->pri
[tag
].status
= PPR_SUCCESS
;
496 spin_unlock_irqrestore(&pasid_state
->lock
, flags
);
499 static void do_fault(struct work_struct
*work
)
501 struct fault
*fault
= container_of(work
, struct fault
, work
);
505 write
= !!(fault
->flags
& PPR_FAULT_WRITE
);
507 npages
= get_user_pages(fault
->state
->task
, fault
->state
->mm
,
508 fault
->address
, 1, write
, 0, &page
, NULL
);
512 } else if (fault
->dev_state
->inv_ppr_cb
) {
515 status
= fault
->dev_state
->inv_ppr_cb(fault
->dev_state
->pdev
,
520 case AMD_IOMMU_INV_PRI_RSP_SUCCESS
:
521 set_pri_tag_status(fault
->state
, fault
->tag
, PPR_SUCCESS
);
523 case AMD_IOMMU_INV_PRI_RSP_INVALID
:
524 set_pri_tag_status(fault
->state
, fault
->tag
, PPR_INVALID
);
526 case AMD_IOMMU_INV_PRI_RSP_FAIL
:
527 set_pri_tag_status(fault
->state
, fault
->tag
, PPR_FAILURE
);
533 set_pri_tag_status(fault
->state
, fault
->tag
, PPR_INVALID
);
536 finish_pri_tag(fault
->dev_state
, fault
->state
, fault
->tag
);
538 put_pasid_state(fault
->state
);
543 static int ppr_notifier(struct notifier_block
*nb
, unsigned long e
, void *data
)
545 struct amd_iommu_fault
*iommu_fault
;
546 struct pasid_state
*pasid_state
;
547 struct device_state
*dev_state
;
555 tag
= iommu_fault
->tag
& 0x1ff;
556 finish
= (iommu_fault
->tag
>> 9) & 1;
559 dev_state
= get_device_state(iommu_fault
->device_id
);
560 if (dev_state
== NULL
)
563 pasid_state
= get_pasid_state(dev_state
, iommu_fault
->pasid
);
564 if (pasid_state
== NULL
) {
565 /* We know the device but not the PASID -> send INVALID */
566 amd_iommu_complete_ppr(dev_state
->pdev
, iommu_fault
->pasid
,
571 spin_lock_irqsave(&pasid_state
->lock
, flags
);
572 atomic_inc(&pasid_state
->pri
[tag
].inflight
);
574 pasid_state
->pri
[tag
].finish
= true;
575 spin_unlock_irqrestore(&pasid_state
->lock
, flags
);
577 fault
= kzalloc(sizeof(*fault
), GFP_ATOMIC
);
579 /* We are OOM - send success and let the device re-fault */
580 finish_pri_tag(dev_state
, pasid_state
, tag
);
584 fault
->dev_state
= dev_state
;
585 fault
->address
= iommu_fault
->address
;
586 fault
->state
= pasid_state
;
588 fault
->finish
= finish
;
589 fault
->flags
= iommu_fault
->flags
;
590 INIT_WORK(&fault
->work
, do_fault
);
592 queue_work(iommu_wq
, &fault
->work
);
597 put_device_state(dev_state
);
603 static struct notifier_block ppr_nb
= {
604 .notifier_call
= ppr_notifier
,
607 static int task_exit(struct notifier_block
*nb
, unsigned long e
, void *data
)
609 struct pasid_state
*pasid_state
;
610 struct task_struct
*task
;
615 * Using this notifier is a hack - but there is no other choice
616 * at the moment. What I really want is a sleeping notifier that
617 * is called when an MM goes down. But such a notifier doesn't
618 * exist yet. The notifier needs to sleep because it has to make
619 * sure that the device does not use the PASID and the address
620 * space anymore before it is destroyed. This includes waiting
621 * for pending PRI requests to pass the workqueue. The
622 * MMU-Notifiers would be a good fit, but they use RCU and so
623 * they are not allowed to sleep. Lets see how we can solve this
624 * in a more intelligent way in the future.
628 list_for_each_entry(pasid_state
, &pasid_state_list
, list
) {
629 struct device_state
*dev_state
;
632 if (pasid_state
->task
!= task
)
635 /* Drop Lock and unbind */
636 spin_unlock(&ps_lock
);
638 dev_state
= pasid_state
->device_state
;
639 pasid
= pasid_state
->pasid
;
641 if (pasid_state
->device_state
->inv_ctx_cb
)
642 dev_state
->inv_ctx_cb(dev_state
->pdev
, pasid
);
644 unbind_pasid(dev_state
, pasid
);
646 /* Task may be in the list multiple times */
649 spin_unlock(&ps_lock
);
654 int amd_iommu_bind_pasid(struct pci_dev
*pdev
, int pasid
,
655 struct task_struct
*task
)
657 struct pasid_state
*pasid_state
;
658 struct device_state
*dev_state
;
664 if (!amd_iommu_v2_supported())
667 devid
= device_id(pdev
);
668 dev_state
= get_device_state(devid
);
670 if (dev_state
== NULL
)
674 if (pasid
< 0 || pasid
>= dev_state
->max_pasids
)
678 pasid_state
= kzalloc(sizeof(*pasid_state
), GFP_KERNEL
);
679 if (pasid_state
== NULL
)
682 atomic_set(&pasid_state
->count
, 1);
683 init_waitqueue_head(&pasid_state
->wq
);
684 spin_lock_init(&pasid_state
->lock
);
686 pasid_state
->task
= task
;
687 pasid_state
->mm
= get_task_mm(task
);
688 pasid_state
->device_state
= dev_state
;
689 pasid_state
->pasid
= pasid
;
690 pasid_state
->mn
.ops
= &iommu_mn
;
692 if (pasid_state
->mm
== NULL
)
695 mmu_notifier_register(&pasid_state
->mn
, pasid_state
->mm
);
697 ret
= set_pasid_state(dev_state
, pasid_state
, pasid
);
701 ret
= amd_iommu_domain_set_gcr3(dev_state
->domain
, pasid
,
702 __pa(pasid_state
->mm
->pgd
));
704 goto out_clear_state
;
706 link_pasid_state(pasid_state
);
711 clear_pasid_state(dev_state
, pasid
);
714 mmu_notifier_unregister(&pasid_state
->mn
, pasid_state
->mm
);
717 free_pasid_state(pasid_state
);
720 put_device_state(dev_state
);
724 EXPORT_SYMBOL(amd_iommu_bind_pasid
);
726 void amd_iommu_unbind_pasid(struct pci_dev
*pdev
, int pasid
)
728 struct device_state
*dev_state
;
733 if (!amd_iommu_v2_supported())
736 devid
= device_id(pdev
);
737 dev_state
= get_device_state(devid
);
738 if (dev_state
== NULL
)
741 if (pasid
< 0 || pasid
>= dev_state
->max_pasids
)
744 unbind_pasid(dev_state
, pasid
);
747 put_device_state(dev_state
);
749 EXPORT_SYMBOL(amd_iommu_unbind_pasid
);
751 int amd_iommu_init_device(struct pci_dev
*pdev
, int pasids
)
753 struct device_state
*dev_state
;
760 if (!amd_iommu_v2_supported())
763 if (pasids
<= 0 || pasids
> (PASID_MASK
+ 1))
766 devid
= device_id(pdev
);
768 dev_state
= kzalloc(sizeof(*dev_state
), GFP_KERNEL
);
769 if (dev_state
== NULL
)
772 spin_lock_init(&dev_state
->lock
);
773 init_waitqueue_head(&dev_state
->wq
);
774 dev_state
->pdev
= pdev
;
777 for (dev_state
->pasid_levels
= 0; (tmp
- 1) & ~0x1ff; tmp
>>= 9)
778 dev_state
->pasid_levels
+= 1;
780 atomic_set(&dev_state
->count
, 1);
781 dev_state
->max_pasids
= pasids
;
784 dev_state
->states
= (void *)get_zeroed_page(GFP_KERNEL
);
785 if (dev_state
->states
== NULL
)
786 goto out_free_dev_state
;
788 dev_state
->domain
= iommu_domain_alloc(&pci_bus_type
);
789 if (dev_state
->domain
== NULL
)
790 goto out_free_states
;
792 amd_iommu_domain_direct_map(dev_state
->domain
);
794 ret
= amd_iommu_domain_enable_v2(dev_state
->domain
, pasids
);
796 goto out_free_domain
;
798 ret
= iommu_attach_device(dev_state
->domain
, &pdev
->dev
);
800 goto out_free_domain
;
802 spin_lock_irqsave(&state_lock
, flags
);
804 if (state_table
[devid
] != NULL
) {
805 spin_unlock_irqrestore(&state_lock
, flags
);
807 goto out_free_domain
;
810 state_table
[devid
] = dev_state
;
812 spin_unlock_irqrestore(&state_lock
, flags
);
817 iommu_domain_free(dev_state
->domain
);
820 free_page((unsigned long)dev_state
->states
);
827 EXPORT_SYMBOL(amd_iommu_init_device
);
829 void amd_iommu_free_device(struct pci_dev
*pdev
)
831 struct device_state
*dev_state
;
835 if (!amd_iommu_v2_supported())
838 devid
= device_id(pdev
);
840 spin_lock_irqsave(&state_lock
, flags
);
842 dev_state
= state_table
[devid
];
843 if (dev_state
== NULL
) {
844 spin_unlock_irqrestore(&state_lock
, flags
);
848 state_table
[devid
] = NULL
;
850 spin_unlock_irqrestore(&state_lock
, flags
);
852 /* Get rid of any remaining pasid states */
853 free_pasid_states(dev_state
);
855 put_device_state_wait(dev_state
);
857 EXPORT_SYMBOL(amd_iommu_free_device
);
859 int amd_iommu_set_invalid_ppr_cb(struct pci_dev
*pdev
,
860 amd_iommu_invalid_ppr_cb cb
)
862 struct device_state
*dev_state
;
867 if (!amd_iommu_v2_supported())
870 devid
= device_id(pdev
);
872 spin_lock_irqsave(&state_lock
, flags
);
875 dev_state
= state_table
[devid
];
876 if (dev_state
== NULL
)
879 dev_state
->inv_ppr_cb
= cb
;
884 spin_unlock_irqrestore(&state_lock
, flags
);
888 EXPORT_SYMBOL(amd_iommu_set_invalid_ppr_cb
);
890 int amd_iommu_set_invalidate_ctx_cb(struct pci_dev
*pdev
,
891 amd_iommu_invalidate_ctx cb
)
893 struct device_state
*dev_state
;
898 if (!amd_iommu_v2_supported())
901 devid
= device_id(pdev
);
903 spin_lock_irqsave(&state_lock
, flags
);
906 dev_state
= state_table
[devid
];
907 if (dev_state
== NULL
)
910 dev_state
->inv_ctx_cb
= cb
;
915 spin_unlock_irqrestore(&state_lock
, flags
);
919 EXPORT_SYMBOL(amd_iommu_set_invalidate_ctx_cb
);
921 static int __init
amd_iommu_v2_init(void)
923 size_t state_table_size
;
926 pr_info("AMD IOMMUv2 driver by Joerg Roedel <joerg.roedel@amd.com>\n");
928 if (!amd_iommu_v2_supported()) {
929 pr_info("AMD IOMMUv2 functionality not available on this system\n");
931 * Load anyway to provide the symbols to other modules
932 * which may use AMD IOMMUv2 optionally.
937 spin_lock_init(&state_lock
);
939 state_table_size
= MAX_DEVICES
* sizeof(struct device_state
*);
940 state_table
= (void *)__get_free_pages(GFP_KERNEL
| __GFP_ZERO
,
941 get_order(state_table_size
));
942 if (state_table
== NULL
)
946 iommu_wq
= create_workqueue("amd_iommu_v2");
947 if (iommu_wq
== NULL
)
951 empty_page_table
= (u64
*)get_zeroed_page(GFP_KERNEL
);
952 if (empty_page_table
== NULL
)
955 amd_iommu_register_ppr_notifier(&ppr_nb
);
956 profile_event_register(PROFILE_TASK_EXIT
, &profile_nb
);
961 destroy_workqueue(iommu_wq
);
964 free_pages((unsigned long)state_table
, get_order(state_table_size
));
969 static void __exit
amd_iommu_v2_exit(void)
971 struct device_state
*dev_state
;
972 size_t state_table_size
;
975 if (!amd_iommu_v2_supported())
978 profile_event_unregister(PROFILE_TASK_EXIT
, &profile_nb
);
979 amd_iommu_unregister_ppr_notifier(&ppr_nb
);
981 flush_workqueue(iommu_wq
);
984 * The loop below might call flush_workqueue(), so call
985 * destroy_workqueue() after it
987 for (i
= 0; i
< MAX_DEVICES
; ++i
) {
988 dev_state
= get_device_state(i
);
990 if (dev_state
== NULL
)
995 put_device_state(dev_state
);
996 amd_iommu_free_device(dev_state
->pdev
);
999 destroy_workqueue(iommu_wq
);
1001 state_table_size
= MAX_DEVICES
* sizeof(struct device_state
*);
1002 free_pages((unsigned long)state_table
, get_order(state_table_size
));
1004 free_page((unsigned long)empty_page_table
);
1007 module_init(amd_iommu_v2_init
);
1008 module_exit(amd_iommu_v2_exit
);