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