blob: f724bdc50d2560b14408f685f1d27be2ba1756bc [file] [log] [blame]
Joerg Roedele3c495c2011-11-09 12:31:15 +01001/*
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
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");
34MODULE_AUTHOR("Joerg Roedel <joerg.roedel@amd.com>");
35
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 Roedel028eeac2011-11-24 12:48:13 +0100154static 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}
Joerg Roedel8736b2c2011-11-24 16:21:52 +0100165
Joerg Roedel2d5503b2011-11-24 10:41:57 +0100166/* Must be called under dev_state->lock */
167static 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
200static 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
223out_unlock:
224 spin_unlock_irqrestore(&dev_state->lock, flags);
225
226 return ret;
227}
228
229static 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
242out_unlock:
243 spin_unlock_irqrestore(&dev_state->lock, flags);
244}
245
246static 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
262out_unlock:
263 spin_unlock_irqrestore(&dev_state->lock, flags);
264
265 return ret;
266}
267
268static void free_pasid_state(struct pasid_state *pasid_state)
269{
270 kfree(pasid_state);
271}
272
273static void put_pasid_state(struct pasid_state *pasid_state)
274{
275 if (atomic_dec_and_test(&pasid_state->count)) {
276 put_device_state(pasid_state->device_state);
Joerg Roedel028eeac2011-11-24 12:48:13 +0100277 wake_up(&pasid_state->wq);
Joerg Roedel2d5503b2011-11-24 10:41:57 +0100278 }
279}
280
Joerg Roedel028eeac2011-11-24 12:48:13 +0100281static void put_pasid_state_wait(struct pasid_state *pasid_state)
282{
283 DEFINE_WAIT(wait);
284
285 prepare_to_wait(&pasid_state->wq, &wait, TASK_UNINTERRUPTIBLE);
286
287 if (atomic_dec_and_test(&pasid_state->count))
288 put_device_state(pasid_state->device_state);
289 else
290 schedule();
291
292 finish_wait(&pasid_state->wq, &wait);
Joerg Roedel028eeac2011-11-24 12:48:13 +0100293 free_pasid_state(pasid_state);
294}
295
Joerg Roedel61feb432014-07-08 14:19:35 +0200296static void unbind_pasid(struct pasid_state *pasid_state)
Joerg Roedel8736b2c2011-11-24 16:21:52 +0100297{
298 struct iommu_domain *domain;
299
300 domain = pasid_state->device_state->domain;
301
Joerg Roedel53d340e2014-07-08 15:01:43 +0200302 /*
303 * Mark pasid_state as invalid, no more faults will we added to the
304 * work queue after this is visible everywhere.
305 */
306 pasid_state->invalid = true;
307
308 /* Make sure this is visible */
309 smp_wmb();
310
311 /* After this the device/pasid can't access the mm anymore */
Joerg Roedel8736b2c2011-11-24 16:21:52 +0100312 amd_iommu_domain_clear_gcr3(domain, pasid_state->pasid);
Joerg Roedel8736b2c2011-11-24 16:21:52 +0100313
314 /* Make sure no more pending faults are in the queue */
315 flush_workqueue(iommu_wq);
Joerg Roedel8736b2c2011-11-24 16:21:52 +0100316}
317
Joerg Roedel2d5503b2011-11-24 10:41:57 +0100318static void free_pasid_states_level1(struct pasid_state **tbl)
319{
320 int i;
321
322 for (i = 0; i < 512; ++i) {
323 if (tbl[i] == NULL)
324 continue;
325
326 free_page((unsigned long)tbl[i]);
327 }
328}
329
330static void free_pasid_states_level2(struct pasid_state **tbl)
331{
332 struct pasid_state **ptr;
333 int i;
334
335 for (i = 0; i < 512; ++i) {
336 if (tbl[i] == NULL)
337 continue;
338
339 ptr = (struct pasid_state **)tbl[i];
340 free_pasid_states_level1(ptr);
341 }
342}
343
344static void free_pasid_states(struct device_state *dev_state)
345{
346 struct pasid_state *pasid_state;
347 int i;
348
349 for (i = 0; i < dev_state->max_pasids; ++i) {
350 pasid_state = get_pasid_state(dev_state, i);
351 if (pasid_state == NULL)
352 continue;
353
Joerg Roedel2d5503b2011-11-24 10:41:57 +0100354 put_pasid_state(pasid_state);
Joerg Roedela40d4c62014-05-20 23:18:24 +0200355
356 /*
357 * This will call the mn_release function and
358 * unbind the PASID
359 */
360 mmu_notifier_unregister(&pasid_state->mn, pasid_state->mm);
Joerg Roedelc5db16a2014-07-08 14:15:45 +0200361
362 put_pasid_state_wait(pasid_state); /* Reference taken in
Joerg Roedeldaff2f92014-07-30 16:04:40 +0200363 amd_iommu_bind_pasid */
Joerg Roedel75058a32014-07-30 16:04:39 +0200364
365 /* Drop reference taken in amd_iommu_bind_pasid */
366 put_device_state(dev_state);
Joerg Roedel2d5503b2011-11-24 10:41:57 +0100367 }
368
369 if (dev_state->pasid_levels == 2)
370 free_pasid_states_level2(dev_state->states);
371 else if (dev_state->pasid_levels == 1)
372 free_pasid_states_level1(dev_state->states);
373 else if (dev_state->pasid_levels != 0)
374 BUG();
375
376 free_page((unsigned long)dev_state->states);
377}
378
Joerg Roedel8736b2c2011-11-24 16:21:52 +0100379static struct pasid_state *mn_to_state(struct mmu_notifier *mn)
380{
381 return container_of(mn, struct pasid_state, mn);
382}
383
384static void __mn_flush_page(struct mmu_notifier *mn,
385 unsigned long address)
386{
387 struct pasid_state *pasid_state;
388 struct device_state *dev_state;
389
390 pasid_state = mn_to_state(mn);
391 dev_state = pasid_state->device_state;
392
393 amd_iommu_flush_page(dev_state->domain, pasid_state->pasid, address);
394}
395
396static int mn_clear_flush_young(struct mmu_notifier *mn,
397 struct mm_struct *mm,
Andres Lagar-Cavilla57128462014-09-22 14:54:42 -0700398 unsigned long start,
399 unsigned long end)
Joerg Roedel8736b2c2011-11-24 16:21:52 +0100400{
Andres Lagar-Cavilla57128462014-09-22 14:54:42 -0700401 for (; start < end; start += PAGE_SIZE)
402 __mn_flush_page(mn, start);
Joerg Roedel8736b2c2011-11-24 16:21:52 +0100403
404 return 0;
405}
406
Joerg Roedel8736b2c2011-11-24 16:21:52 +0100407static void mn_invalidate_page(struct mmu_notifier *mn,
408 struct mm_struct *mm,
409 unsigned long address)
410{
411 __mn_flush_page(mn, address);
412}
413
Joerg Roedele7cc3dd2014-11-13 13:46:09 +1100414static void mn_invalidate_range(struct mmu_notifier *mn,
415 struct mm_struct *mm,
416 unsigned long start, unsigned long end)
Joerg Roedel8736b2c2011-11-24 16:21:52 +0100417{
418 struct pasid_state *pasid_state;
419 struct device_state *dev_state;
420
421 pasid_state = mn_to_state(mn);
422 dev_state = pasid_state->device_state;
423
Joerg Roedele7cc3dd2014-11-13 13:46:09 +1100424 if ((start ^ (end - 1)) < PAGE_SIZE)
425 amd_iommu_flush_page(dev_state->domain, pasid_state->pasid,
426 start);
427 else
428 amd_iommu_flush_tlb(dev_state->domain, pasid_state->pasid);
Joerg Roedel8736b2c2011-11-24 16:21:52 +0100429}
430
Joerg Roedela40d4c62014-05-20 23:18:24 +0200431static void mn_release(struct mmu_notifier *mn, struct mm_struct *mm)
432{
433 struct pasid_state *pasid_state;
434 struct device_state *dev_state;
Joerg Roedeld9e16112014-07-09 15:43:11 +0200435 bool run_inv_ctx_cb;
Joerg Roedela40d4c62014-05-20 23:18:24 +0200436
437 might_sleep();
438
Joerg Roedeld9e16112014-07-09 15:43:11 +0200439 pasid_state = mn_to_state(mn);
440 dev_state = pasid_state->device_state;
441 run_inv_ctx_cb = !pasid_state->invalid;
Joerg Roedela40d4c62014-05-20 23:18:24 +0200442
Joerg Roedeld9e16112014-07-09 15:43:11 +0200443 if (run_inv_ctx_cb && pasid_state->device_state->inv_ctx_cb)
Joerg Roedela40d4c62014-05-20 23:18:24 +0200444 dev_state->inv_ctx_cb(dev_state->pdev, pasid_state->pasid);
445
Joerg Roedel61feb432014-07-08 14:19:35 +0200446 unbind_pasid(pasid_state);
Joerg Roedela40d4c62014-05-20 23:18:24 +0200447}
448
Joerg Roedel8736b2c2011-11-24 16:21:52 +0100449static struct mmu_notifier_ops iommu_mn = {
Joerg Roedela40d4c62014-05-20 23:18:24 +0200450 .release = mn_release,
Joerg Roedel8736b2c2011-11-24 16:21:52 +0100451 .clear_flush_young = mn_clear_flush_young,
Joerg Roedel8736b2c2011-11-24 16:21:52 +0100452 .invalidate_page = mn_invalidate_page,
Joerg Roedele7cc3dd2014-11-13 13:46:09 +1100453 .invalidate_range = mn_invalidate_range,
Joerg Roedel8736b2c2011-11-24 16:21:52 +0100454};
455
Joerg Roedel028eeac2011-11-24 12:48:13 +0100456static void set_pri_tag_status(struct pasid_state *pasid_state,
457 u16 tag, int status)
458{
459 unsigned long flags;
460
461 spin_lock_irqsave(&pasid_state->lock, flags);
462 pasid_state->pri[tag].status = status;
463 spin_unlock_irqrestore(&pasid_state->lock, flags);
464}
465
466static void finish_pri_tag(struct device_state *dev_state,
467 struct pasid_state *pasid_state,
468 u16 tag)
469{
470 unsigned long flags;
471
472 spin_lock_irqsave(&pasid_state->lock, flags);
473 if (atomic_dec_and_test(&pasid_state->pri[tag].inflight) &&
474 pasid_state->pri[tag].finish) {
475 amd_iommu_complete_ppr(dev_state->pdev, pasid_state->pasid,
476 pasid_state->pri[tag].status, tag);
477 pasid_state->pri[tag].finish = false;
478 pasid_state->pri[tag].status = PPR_SUCCESS;
479 }
480 spin_unlock_irqrestore(&pasid_state->lock, flags);
481}
482
483static void do_fault(struct work_struct *work)
484{
485 struct fault *fault = container_of(work, struct fault, work);
486 int npages, write;
487 struct page *page;
488
489 write = !!(fault->flags & PPR_FAULT_WRITE);
490
Jay Cornwall4378d992014-04-28 17:27:46 -0500491 down_read(&fault->state->mm->mmap_sem);
Joerg Roedeldba38382014-07-09 17:56:43 +0200492 npages = get_user_pages(NULL, fault->state->mm,
Joerg Roedel028eeac2011-11-24 12:48:13 +0100493 fault->address, 1, write, 0, &page, NULL);
Jay Cornwall4378d992014-04-28 17:27:46 -0500494 up_read(&fault->state->mm->mmap_sem);
Joerg Roedel028eeac2011-11-24 12:48:13 +0100495
Joerg Roedel175d6142011-11-28 14:36:36 +0100496 if (npages == 1) {
Joerg Roedel028eeac2011-11-24 12:48:13 +0100497 put_page(page);
Joerg Roedel175d6142011-11-28 14:36:36 +0100498 } else if (fault->dev_state->inv_ppr_cb) {
499 int status;
500
501 status = fault->dev_state->inv_ppr_cb(fault->dev_state->pdev,
502 fault->pasid,
503 fault->address,
504 fault->flags);
505 switch (status) {
506 case AMD_IOMMU_INV_PRI_RSP_SUCCESS:
507 set_pri_tag_status(fault->state, fault->tag, PPR_SUCCESS);
508 break;
509 case AMD_IOMMU_INV_PRI_RSP_INVALID:
510 set_pri_tag_status(fault->state, fault->tag, PPR_INVALID);
511 break;
512 case AMD_IOMMU_INV_PRI_RSP_FAIL:
513 set_pri_tag_status(fault->state, fault->tag, PPR_FAILURE);
514 break;
515 default:
516 BUG();
517 }
518 } else {
Joerg Roedel028eeac2011-11-24 12:48:13 +0100519 set_pri_tag_status(fault->state, fault->tag, PPR_INVALID);
Joerg Roedel175d6142011-11-28 14:36:36 +0100520 }
Joerg Roedel028eeac2011-11-24 12:48:13 +0100521
522 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
Joerg Roedel028eeac2011-11-24 12:48:13 +0100836 put_device_state_wait(dev_state);
Joerg Roedeled96f222011-11-23 17:30:39 +0100837}
838EXPORT_SYMBOL(amd_iommu_free_device);
839
Joerg Roedel175d6142011-11-28 14:36:36 +0100840int amd_iommu_set_invalid_ppr_cb(struct pci_dev *pdev,
841 amd_iommu_invalid_ppr_cb cb)
842{
843 struct device_state *dev_state;
844 unsigned long flags;
845 u16 devid;
846 int ret;
847
848 if (!amd_iommu_v2_supported())
849 return -ENODEV;
850
851 devid = device_id(pdev);
852
853 spin_lock_irqsave(&state_lock, flags);
854
855 ret = -EINVAL;
Joerg Roedelb87d2d72014-05-20 23:18:22 +0200856 dev_state = __get_device_state(devid);
Joerg Roedel175d6142011-11-28 14:36:36 +0100857 if (dev_state == NULL)
858 goto out_unlock;
859
860 dev_state->inv_ppr_cb = cb;
861
862 ret = 0;
863
864out_unlock:
865 spin_unlock_irqrestore(&state_lock, flags);
866
867 return ret;
868}
869EXPORT_SYMBOL(amd_iommu_set_invalid_ppr_cb);
870
Joerg Roedelbc216622011-12-07 12:24:42 +0100871int amd_iommu_set_invalidate_ctx_cb(struct pci_dev *pdev,
872 amd_iommu_invalidate_ctx cb)
873{
874 struct device_state *dev_state;
875 unsigned long flags;
876 u16 devid;
877 int ret;
878
879 if (!amd_iommu_v2_supported())
880 return -ENODEV;
881
882 devid = device_id(pdev);
883
884 spin_lock_irqsave(&state_lock, flags);
885
886 ret = -EINVAL;
Joerg Roedelb87d2d72014-05-20 23:18:22 +0200887 dev_state = __get_device_state(devid);
Joerg Roedelbc216622011-12-07 12:24:42 +0100888 if (dev_state == NULL)
889 goto out_unlock;
890
891 dev_state->inv_ctx_cb = cb;
892
893 ret = 0;
894
895out_unlock:
896 spin_unlock_irqrestore(&state_lock, flags);
897
898 return ret;
899}
900EXPORT_SYMBOL(amd_iommu_set_invalidate_ctx_cb);
901
Joerg Roedele3c495c2011-11-09 12:31:15 +0100902static int __init amd_iommu_v2_init(void)
903{
Joerg Roedel028eeac2011-11-24 12:48:13 +0100904 int ret;
Joerg Roedeled96f222011-11-23 17:30:39 +0100905
Joerg Roedel474d567d2012-03-15 12:46:40 +0100906 pr_info("AMD IOMMUv2 driver by Joerg Roedel <joerg.roedel@amd.com>\n");
907
908 if (!amd_iommu_v2_supported()) {
Masanari Iida07db0402012-07-22 02:21:32 +0900909 pr_info("AMD IOMMUv2 functionality not available on this system\n");
Joerg Roedel474d567d2012-03-15 12:46:40 +0100910 /*
911 * Load anyway to provide the symbols to other modules
912 * which may use AMD IOMMUv2 optionally.
913 */
914 return 0;
915 }
Joerg Roedele3c495c2011-11-09 12:31:15 +0100916
Joerg Roedeled96f222011-11-23 17:30:39 +0100917 spin_lock_init(&state_lock);
918
Joerg Roedel028eeac2011-11-24 12:48:13 +0100919 ret = -ENOMEM;
920 iommu_wq = create_workqueue("amd_iommu_v2");
Joerg Roedel8736b2c2011-11-24 16:21:52 +0100921 if (iommu_wq == NULL)
Joerg Roedel741669c2014-05-20 23:18:23 +0200922 goto out;
Joerg Roedel8736b2c2011-11-24 16:21:52 +0100923
Joerg Roedel028eeac2011-11-24 12:48:13 +0100924 amd_iommu_register_ppr_notifier(&ppr_nb);
925
Joerg Roedele3c495c2011-11-09 12:31:15 +0100926 return 0;
Joerg Roedel028eeac2011-11-24 12:48:13 +0100927
Joerg Roedel741669c2014-05-20 23:18:23 +0200928out:
Joerg Roedel028eeac2011-11-24 12:48:13 +0100929 return ret;
Joerg Roedele3c495c2011-11-09 12:31:15 +0100930}
931
932static void __exit amd_iommu_v2_exit(void)
933{
Joerg Roedeled96f222011-11-23 17:30:39 +0100934 struct device_state *dev_state;
Joerg Roedeled96f222011-11-23 17:30:39 +0100935 int i;
936
Joerg Roedel474d567d2012-03-15 12:46:40 +0100937 if (!amd_iommu_v2_supported())
938 return;
939
Joerg Roedel028eeac2011-11-24 12:48:13 +0100940 amd_iommu_unregister_ppr_notifier(&ppr_nb);
941
942 flush_workqueue(iommu_wq);
943
944 /*
945 * The loop below might call flush_workqueue(), so call
946 * destroy_workqueue() after it
947 */
Joerg Roedeled96f222011-11-23 17:30:39 +0100948 for (i = 0; i < MAX_DEVICES; ++i) {
949 dev_state = get_device_state(i);
950
951 if (dev_state == NULL)
952 continue;
953
954 WARN_ON_ONCE(1);
955
Joerg Roedeled96f222011-11-23 17:30:39 +0100956 put_device_state(dev_state);
Joerg Roedel028eeac2011-11-24 12:48:13 +0100957 amd_iommu_free_device(dev_state->pdev);
Joerg Roedeled96f222011-11-23 17:30:39 +0100958 }
959
Joerg Roedel028eeac2011-11-24 12:48:13 +0100960 destroy_workqueue(iommu_wq);
Joerg Roedele3c495c2011-11-09 12:31:15 +0100961}
962
963module_init(amd_iommu_v2_init);
964module_exit(amd_iommu_v2_exit);