blob: e705fac89cb4448a56876ced9c0ac8e086f08723 [file] [log] [blame]
Joerg Roedele3c495c2011-11-09 12:31:15 +01001/*
2 * Copyright (C) 2010-2012 Advanced Micro Devices, Inc.
Joerg Roedel63ce3ae2015-02-04 16:12:55 +01003 * Author: Joerg Roedel <jroedel@suse.de>
Joerg Roedele3c495c2011-11-09 12:31:15 +01004 *
5 * This program is free software; you can redistribute it and/or modify it
6 * under the terms of the GNU General Public License version 2 as published
7 * by the Free Software Foundation.
8 *
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
13 *
14 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, write to the Free Software
16 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
17 */
18
Joerg Roedel8736b2c2011-11-24 16:21:52 +010019#include <linux/mmu_notifier.h>
Joerg Roedeled96f222011-11-23 17:30:39 +010020#include <linux/amd-iommu.h>
21#include <linux/mm_types.h>
Joerg Roedel8736b2c2011-11-24 16:21:52 +010022#include <linux/profile.h>
Joerg Roedele3c495c2011-11-09 12:31:15 +010023#include <linux/module.h>
Joerg Roedel2d5503b2011-11-24 10:41:57 +010024#include <linux/sched.h>
Ingo Molnar6e84f312017-02-08 18:51:29 +010025#include <linux/sched/mm.h>
Joerg Roedeled96f222011-11-23 17:30:39 +010026#include <linux/iommu.h>
Joerg Roedel028eeac2011-11-24 12:48:13 +010027#include <linux/wait.h>
Joerg Roedeled96f222011-11-23 17:30:39 +010028#include <linux/pci.h>
29#include <linux/gfp.h>
30
Joerg Roedel028eeac2011-11-24 12:48:13 +010031#include "amd_iommu_types.h"
Joerg Roedeled96f222011-11-23 17:30:39 +010032#include "amd_iommu_proto.h"
Joerg Roedele3c495c2011-11-09 12:31:15 +010033
34MODULE_LICENSE("GPL v2");
Joerg Roedel63ce3ae2015-02-04 16:12:55 +010035MODULE_AUTHOR("Joerg Roedel <jroedel@suse.de>");
Joerg Roedele3c495c2011-11-09 12:31:15 +010036
Joerg Roedeled96f222011-11-23 17:30:39 +010037#define MAX_DEVICES 0x10000
38#define PRI_QUEUE_SIZE 512
39
40struct pri_queue {
41 atomic_t inflight;
42 bool finish;
Joerg Roedel028eeac2011-11-24 12:48:13 +010043 int status;
Joerg Roedeled96f222011-11-23 17:30:39 +010044};
45
46struct pasid_state {
47 struct list_head list; /* For global state-list */
48 atomic_t count; /* Reference count */
Joerg Roedeld73a6d72014-06-20 16:14:22 +020049 unsigned mmu_notifier_count; /* Counting nested mmu_notifier
Joerg Roedele79df312014-05-20 23:18:26 +020050 calls */
Joerg Roedeled96f222011-11-23 17:30:39 +010051 struct mm_struct *mm; /* mm_struct for the faults */
Joerg Roedelff6d0cc2014-07-08 12:49:50 +020052 struct mmu_notifier mn; /* mmu_notifier handle */
Joerg Roedeled96f222011-11-23 17:30:39 +010053 struct pri_queue pri[PRI_QUEUE_SIZE]; /* PRI tag states */
54 struct device_state *device_state; /* Link to our device_state */
55 int pasid; /* PASID index */
Joerg Roedeld9e16112014-07-09 15:43:11 +020056 bool invalid; /* Used during setup and
57 teardown of the pasid */
Joerg Roedeld73a6d72014-06-20 16:14:22 +020058 spinlock_t lock; /* Protect pri_queues and
59 mmu_notifer_count */
Joerg Roedel028eeac2011-11-24 12:48:13 +010060 wait_queue_head_t wq; /* To wait for count == 0 */
Joerg Roedeled96f222011-11-23 17:30:39 +010061};
62
63struct device_state {
Joerg Roedel741669c2014-05-20 23:18:23 +020064 struct list_head list;
65 u16 devid;
Joerg Roedeled96f222011-11-23 17:30:39 +010066 atomic_t count;
67 struct pci_dev *pdev;
68 struct pasid_state **states;
69 struct iommu_domain *domain;
70 int pasid_levels;
71 int max_pasids;
Joerg Roedel175d6142011-11-28 14:36:36 +010072 amd_iommu_invalid_ppr_cb inv_ppr_cb;
Joerg Roedelbc216622011-12-07 12:24:42 +010073 amd_iommu_invalidate_ctx inv_ctx_cb;
Joerg Roedeled96f222011-11-23 17:30:39 +010074 spinlock_t lock;
Joerg Roedel028eeac2011-11-24 12:48:13 +010075 wait_queue_head_t wq;
76};
77
78struct fault {
79 struct work_struct work;
80 struct device_state *dev_state;
81 struct pasid_state *state;
82 struct mm_struct *mm;
83 u64 address;
84 u16 devid;
85 u16 pasid;
86 u16 tag;
87 u16 finish;
88 u16 flags;
Joerg Roedeled96f222011-11-23 17:30:39 +010089};
90
Joerg Roedel741669c2014-05-20 23:18:23 +020091static LIST_HEAD(state_list);
Joerg Roedeled96f222011-11-23 17:30:39 +010092static spinlock_t state_lock;
93
Joerg Roedel028eeac2011-11-24 12:48:13 +010094static struct workqueue_struct *iommu_wq;
95
Joerg Roedel2d5503b2011-11-24 10:41:57 +010096static void free_pasid_states(struct device_state *dev_state);
Joerg Roedeled96f222011-11-23 17:30:39 +010097
98static u16 device_id(struct pci_dev *pdev)
99{
100 u16 devid;
101
102 devid = pdev->bus->number;
103 devid = (devid << 8) | pdev->devfn;
104
105 return devid;
106}
107
Joerg Roedelb87d2d72014-05-20 23:18:22 +0200108static struct device_state *__get_device_state(u16 devid)
109{
Joerg Roedel741669c2014-05-20 23:18:23 +0200110 struct device_state *dev_state;
111
112 list_for_each_entry(dev_state, &state_list, list) {
113 if (dev_state->devid == devid)
114 return dev_state;
115 }
116
117 return NULL;
Joerg Roedelb87d2d72014-05-20 23:18:22 +0200118}
119
Joerg Roedeled96f222011-11-23 17:30:39 +0100120static struct device_state *get_device_state(u16 devid)
121{
122 struct device_state *dev_state;
123 unsigned long flags;
124
125 spin_lock_irqsave(&state_lock, flags);
Joerg Roedelb87d2d72014-05-20 23:18:22 +0200126 dev_state = __get_device_state(devid);
Joerg Roedeled96f222011-11-23 17:30:39 +0100127 if (dev_state != NULL)
128 atomic_inc(&dev_state->count);
129 spin_unlock_irqrestore(&state_lock, flags);
130
131 return dev_state;
132}
133
134static void free_device_state(struct device_state *dev_state)
135{
Joerg Roedel55c99a42015-07-28 16:58:47 +0200136 struct iommu_group *group;
137
Joerg Roedel2d5503b2011-11-24 10:41:57 +0100138 /*
139 * First detach device from domain - No more PRI requests will arrive
140 * from that device after it is unbound from the IOMMUv2 domain.
141 */
Joerg Roedel55c99a42015-07-28 16:58:47 +0200142 group = iommu_group_get(&dev_state->pdev->dev);
143 if (WARN_ON(!group))
144 return;
145
146 iommu_detach_group(dev_state->domain, group);
147
148 iommu_group_put(group);
Joerg Roedel2d5503b2011-11-24 10:41:57 +0100149
150 /* Everything is down now, free the IOMMUv2 domain */
Joerg Roedeled96f222011-11-23 17:30:39 +0100151 iommu_domain_free(dev_state->domain);
Joerg Roedel2d5503b2011-11-24 10:41:57 +0100152
153 /* Finally get rid of the device-state */
Joerg Roedeled96f222011-11-23 17:30:39 +0100154 kfree(dev_state);
155}
156
157static void put_device_state(struct device_state *dev_state)
158{
159 if (atomic_dec_and_test(&dev_state->count))
Joerg Roedel028eeac2011-11-24 12:48:13 +0100160 wake_up(&dev_state->wq);
Joerg Roedeled96f222011-11-23 17:30:39 +0100161}
162
Joerg Roedel2d5503b2011-11-24 10:41:57 +0100163/* Must be called under dev_state->lock */
164static struct pasid_state **__get_pasid_state_ptr(struct device_state *dev_state,
165 int pasid, bool alloc)
166{
167 struct pasid_state **root, **ptr;
168 int level, index;
169
170 level = dev_state->pasid_levels;
171 root = dev_state->states;
172
173 while (true) {
174
175 index = (pasid >> (9 * level)) & 0x1ff;
176 ptr = &root[index];
177
178 if (level == 0)
179 break;
180
181 if (*ptr == NULL) {
182 if (!alloc)
183 return NULL;
184
185 *ptr = (void *)get_zeroed_page(GFP_ATOMIC);
186 if (*ptr == NULL)
187 return NULL;
188 }
189
190 root = (struct pasid_state **)*ptr;
191 level -= 1;
192 }
193
194 return ptr;
195}
196
197static int set_pasid_state(struct device_state *dev_state,
198 struct pasid_state *pasid_state,
199 int pasid)
200{
201 struct pasid_state **ptr;
202 unsigned long flags;
203 int ret;
204
205 spin_lock_irqsave(&dev_state->lock, flags);
206 ptr = __get_pasid_state_ptr(dev_state, pasid, true);
207
208 ret = -ENOMEM;
209 if (ptr == NULL)
210 goto out_unlock;
211
212 ret = -ENOMEM;
213 if (*ptr != NULL)
214 goto out_unlock;
215
216 *ptr = pasid_state;
217
218 ret = 0;
219
220out_unlock:
221 spin_unlock_irqrestore(&dev_state->lock, flags);
222
223 return ret;
224}
225
226static void clear_pasid_state(struct device_state *dev_state, int pasid)
227{
228 struct pasid_state **ptr;
229 unsigned long flags;
230
231 spin_lock_irqsave(&dev_state->lock, flags);
232 ptr = __get_pasid_state_ptr(dev_state, pasid, true);
233
234 if (ptr == NULL)
235 goto out_unlock;
236
237 *ptr = NULL;
238
239out_unlock:
240 spin_unlock_irqrestore(&dev_state->lock, flags);
241}
242
243static struct pasid_state *get_pasid_state(struct device_state *dev_state,
244 int pasid)
245{
246 struct pasid_state **ptr, *ret = NULL;
247 unsigned long flags;
248
249 spin_lock_irqsave(&dev_state->lock, flags);
250 ptr = __get_pasid_state_ptr(dev_state, pasid, false);
251
252 if (ptr == NULL)
253 goto out_unlock;
254
255 ret = *ptr;
256 if (ret)
257 atomic_inc(&ret->count);
258
259out_unlock:
260 spin_unlock_irqrestore(&dev_state->lock, flags);
261
262 return ret;
263}
264
265static void free_pasid_state(struct pasid_state *pasid_state)
266{
267 kfree(pasid_state);
268}
269
270static void put_pasid_state(struct pasid_state *pasid_state)
271{
Oded Gabbay1c510992014-11-10 12:21:39 +0200272 if (atomic_dec_and_test(&pasid_state->count))
Joerg Roedel028eeac2011-11-24 12:48:13 +0100273 wake_up(&pasid_state->wq);
Joerg Roedel2d5503b2011-11-24 10:41:57 +0100274}
275
Joerg Roedel028eeac2011-11-24 12:48:13 +0100276static void put_pasid_state_wait(struct pasid_state *pasid_state)
277{
Oded Gabbay1bf1b432015-04-16 17:08:44 +0300278 atomic_dec(&pasid_state->count);
Joerg Roedela1bec062015-02-04 15:50:38 +0100279 wait_event(pasid_state->wq, !atomic_read(&pasid_state->count));
Joerg Roedel028eeac2011-11-24 12:48:13 +0100280 free_pasid_state(pasid_state);
281}
282
Joerg Roedel61feb432014-07-08 14:19:35 +0200283static void unbind_pasid(struct pasid_state *pasid_state)
Joerg Roedel8736b2c2011-11-24 16:21:52 +0100284{
285 struct iommu_domain *domain;
286
287 domain = pasid_state->device_state->domain;
288
Joerg Roedel53d340e2014-07-08 15:01:43 +0200289 /*
290 * Mark pasid_state as invalid, no more faults will we added to the
291 * work queue after this is visible everywhere.
292 */
293 pasid_state->invalid = true;
294
295 /* Make sure this is visible */
296 smp_wmb();
297
298 /* After this the device/pasid can't access the mm anymore */
Joerg Roedel8736b2c2011-11-24 16:21:52 +0100299 amd_iommu_domain_clear_gcr3(domain, pasid_state->pasid);
Joerg Roedel8736b2c2011-11-24 16:21:52 +0100300
301 /* Make sure no more pending faults are in the queue */
302 flush_workqueue(iommu_wq);
Joerg Roedel8736b2c2011-11-24 16:21:52 +0100303}
304
Joerg Roedel2d5503b2011-11-24 10:41:57 +0100305static void free_pasid_states_level1(struct pasid_state **tbl)
306{
307 int i;
308
309 for (i = 0; i < 512; ++i) {
310 if (tbl[i] == NULL)
311 continue;
312
313 free_page((unsigned long)tbl[i]);
314 }
315}
316
317static void free_pasid_states_level2(struct pasid_state **tbl)
318{
319 struct pasid_state **ptr;
320 int i;
321
322 for (i = 0; i < 512; ++i) {
323 if (tbl[i] == NULL)
324 continue;
325
326 ptr = (struct pasid_state **)tbl[i];
327 free_pasid_states_level1(ptr);
328 }
329}
330
331static void free_pasid_states(struct device_state *dev_state)
332{
333 struct pasid_state *pasid_state;
334 int i;
335
336 for (i = 0; i < dev_state->max_pasids; ++i) {
337 pasid_state = get_pasid_state(dev_state, i);
338 if (pasid_state == NULL)
339 continue;
340
Joerg Roedel2d5503b2011-11-24 10:41:57 +0100341 put_pasid_state(pasid_state);
Joerg Roedela40d4c62014-05-20 23:18:24 +0200342
343 /*
344 * This will call the mn_release function and
345 * unbind the PASID
346 */
347 mmu_notifier_unregister(&pasid_state->mn, pasid_state->mm);
Joerg Roedelc5db16a2014-07-08 14:15:45 +0200348
349 put_pasid_state_wait(pasid_state); /* Reference taken in
Joerg Roedeldaff2f92014-07-30 16:04:40 +0200350 amd_iommu_bind_pasid */
Joerg Roedel75058a32014-07-30 16:04:39 +0200351
352 /* Drop reference taken in amd_iommu_bind_pasid */
353 put_device_state(dev_state);
Joerg Roedel2d5503b2011-11-24 10:41:57 +0100354 }
355
356 if (dev_state->pasid_levels == 2)
357 free_pasid_states_level2(dev_state->states);
358 else if (dev_state->pasid_levels == 1)
359 free_pasid_states_level1(dev_state->states);
Joerg Roedel23d3a982015-08-13 11:15:13 +0200360 else
361 BUG_ON(dev_state->pasid_levels != 0);
Joerg Roedel2d5503b2011-11-24 10:41:57 +0100362
363 free_page((unsigned long)dev_state->states);
364}
365
Joerg Roedel8736b2c2011-11-24 16:21:52 +0100366static struct pasid_state *mn_to_state(struct mmu_notifier *mn)
367{
368 return container_of(mn, struct pasid_state, mn);
369}
370
371static void __mn_flush_page(struct mmu_notifier *mn,
372 unsigned long address)
373{
374 struct pasid_state *pasid_state;
375 struct device_state *dev_state;
376
377 pasid_state = mn_to_state(mn);
378 dev_state = pasid_state->device_state;
379
380 amd_iommu_flush_page(dev_state->domain, pasid_state->pasid, address);
381}
382
383static int mn_clear_flush_young(struct mmu_notifier *mn,
384 struct mm_struct *mm,
Andres Lagar-Cavilla57128462014-09-22 14:54:42 -0700385 unsigned long start,
386 unsigned long end)
Joerg Roedel8736b2c2011-11-24 16:21:52 +0100387{
Andres Lagar-Cavilla57128462014-09-22 14:54:42 -0700388 for (; start < end; start += PAGE_SIZE)
389 __mn_flush_page(mn, start);
Joerg Roedel8736b2c2011-11-24 16:21:52 +0100390
391 return 0;
392}
393
Joerg Roedel8736b2c2011-11-24 16:21:52 +0100394static void mn_invalidate_page(struct mmu_notifier *mn,
395 struct mm_struct *mm,
396 unsigned long address)
397{
398 __mn_flush_page(mn, address);
399}
400
Joerg Roedele7cc3dd2014-11-13 13:46:09 +1100401static void mn_invalidate_range(struct mmu_notifier *mn,
402 struct mm_struct *mm,
403 unsigned long start, unsigned long end)
Joerg Roedel8736b2c2011-11-24 16:21:52 +0100404{
405 struct pasid_state *pasid_state;
406 struct device_state *dev_state;
407
408 pasid_state = mn_to_state(mn);
409 dev_state = pasid_state->device_state;
410
Joerg Roedele7cc3dd2014-11-13 13:46:09 +1100411 if ((start ^ (end - 1)) < PAGE_SIZE)
412 amd_iommu_flush_page(dev_state->domain, pasid_state->pasid,
413 start);
414 else
415 amd_iommu_flush_tlb(dev_state->domain, pasid_state->pasid);
Joerg Roedel8736b2c2011-11-24 16:21:52 +0100416}
417
Joerg Roedela40d4c62014-05-20 23:18:24 +0200418static void mn_release(struct mmu_notifier *mn, struct mm_struct *mm)
419{
420 struct pasid_state *pasid_state;
421 struct device_state *dev_state;
Joerg Roedeld9e16112014-07-09 15:43:11 +0200422 bool run_inv_ctx_cb;
Joerg Roedela40d4c62014-05-20 23:18:24 +0200423
424 might_sleep();
425
Joerg Roedeld9e16112014-07-09 15:43:11 +0200426 pasid_state = mn_to_state(mn);
427 dev_state = pasid_state->device_state;
428 run_inv_ctx_cb = !pasid_state->invalid;
Joerg Roedela40d4c62014-05-20 23:18:24 +0200429
Dan Carpenter940f700d2015-02-20 13:52:01 +0300430 if (run_inv_ctx_cb && dev_state->inv_ctx_cb)
Joerg Roedela40d4c62014-05-20 23:18:24 +0200431 dev_state->inv_ctx_cb(dev_state->pdev, pasid_state->pasid);
432
Joerg Roedel61feb432014-07-08 14:19:35 +0200433 unbind_pasid(pasid_state);
Joerg Roedela40d4c62014-05-20 23:18:24 +0200434}
435
Julia Lawall759ce232015-11-29 23:02:50 +0100436static const struct mmu_notifier_ops iommu_mn = {
Joerg Roedela40d4c62014-05-20 23:18:24 +0200437 .release = mn_release,
Joerg Roedel8736b2c2011-11-24 16:21:52 +0100438 .clear_flush_young = mn_clear_flush_young,
Joerg Roedel8736b2c2011-11-24 16:21:52 +0100439 .invalidate_page = mn_invalidate_page,
Joerg Roedele7cc3dd2014-11-13 13:46:09 +1100440 .invalidate_range = mn_invalidate_range,
Joerg Roedel8736b2c2011-11-24 16:21:52 +0100441};
442
Joerg Roedel028eeac2011-11-24 12:48:13 +0100443static void set_pri_tag_status(struct pasid_state *pasid_state,
444 u16 tag, int status)
445{
446 unsigned long flags;
447
448 spin_lock_irqsave(&pasid_state->lock, flags);
449 pasid_state->pri[tag].status = status;
450 spin_unlock_irqrestore(&pasid_state->lock, flags);
451}
452
453static void finish_pri_tag(struct device_state *dev_state,
454 struct pasid_state *pasid_state,
455 u16 tag)
456{
457 unsigned long flags;
458
459 spin_lock_irqsave(&pasid_state->lock, flags);
460 if (atomic_dec_and_test(&pasid_state->pri[tag].inflight) &&
461 pasid_state->pri[tag].finish) {
462 amd_iommu_complete_ppr(dev_state->pdev, pasid_state->pasid,
463 pasid_state->pri[tag].status, tag);
464 pasid_state->pri[tag].finish = false;
465 pasid_state->pri[tag].status = PPR_SUCCESS;
466 }
467 spin_unlock_irqrestore(&pasid_state->lock, flags);
468}
469
Jesse Barnes9dc00f42014-12-12 16:55:30 -0800470static void handle_fault_error(struct fault *fault)
471{
472 int status;
473
474 if (!fault->dev_state->inv_ppr_cb) {
475 set_pri_tag_status(fault->state, fault->tag, PPR_INVALID);
476 return;
477 }
478
479 status = fault->dev_state->inv_ppr_cb(fault->dev_state->pdev,
480 fault->pasid,
481 fault->address,
482 fault->flags);
483 switch (status) {
484 case AMD_IOMMU_INV_PRI_RSP_SUCCESS:
485 set_pri_tag_status(fault->state, fault->tag, PPR_SUCCESS);
486 break;
487 case AMD_IOMMU_INV_PRI_RSP_INVALID:
488 set_pri_tag_status(fault->state, fault->tag, PPR_INVALID);
489 break;
490 case AMD_IOMMU_INV_PRI_RSP_FAIL:
491 set_pri_tag_status(fault->state, fault->tag, PPR_FAILURE);
492 break;
493 default:
494 BUG();
495 }
496}
497
Joerg Roedel7b5cc1a2015-11-17 16:11:36 +0100498static bool access_error(struct vm_area_struct *vma, struct fault *fault)
499{
500 unsigned long requested = 0;
501
502 if (fault->flags & PPR_FAULT_EXEC)
503 requested |= VM_EXEC;
504
505 if (fault->flags & PPR_FAULT_READ)
506 requested |= VM_READ;
507
508 if (fault->flags & PPR_FAULT_WRITE)
509 requested |= VM_WRITE;
510
511 return (requested & ~vma->vm_flags) != 0;
512}
513
Joerg Roedel028eeac2011-11-24 12:48:13 +0100514static void do_fault(struct work_struct *work)
515{
516 struct fault *fault = container_of(work, struct fault, work);
Jesse Barnes9dc00f42014-12-12 16:55:30 -0800517 struct vm_area_struct *vma;
Joerg Roedel492e7452015-11-17 16:11:38 +0100518 int ret = VM_FAULT_ERROR;
Joerg Roedel43c0ea22015-11-17 16:11:37 +0100519 unsigned int flags = 0;
520 struct mm_struct *mm;
Jesse Barnes9dc00f42014-12-12 16:55:30 -0800521 u64 address;
Joerg Roedel028eeac2011-11-24 12:48:13 +0100522
Jesse Barnes9dc00f42014-12-12 16:55:30 -0800523 mm = fault->state->mm;
524 address = fault->address;
Joerg Roedel028eeac2011-11-24 12:48:13 +0100525
Joerg Roedel43c0ea22015-11-17 16:11:37 +0100526 if (fault->flags & PPR_FAULT_USER)
527 flags |= FAULT_FLAG_USER;
528 if (fault->flags & PPR_FAULT_WRITE)
529 flags |= FAULT_FLAG_WRITE;
Dave Hansen1b2ee122016-02-12 13:02:21 -0800530 flags |= FAULT_FLAG_REMOTE;
Joerg Roedel43c0ea22015-11-17 16:11:37 +0100531
Jesse Barnes9dc00f42014-12-12 16:55:30 -0800532 down_read(&mm->mmap_sem);
533 vma = find_extend_vma(mm, address);
Joerg Roedel492e7452015-11-17 16:11:38 +0100534 if (!vma || address < vma->vm_start)
Jesse Barnes9dc00f42014-12-12 16:55:30 -0800535 /* failed to get a vma in the right range */
Jesse Barnes9dc00f42014-12-12 16:55:30 -0800536 goto out;
Joerg Roedel028eeac2011-11-24 12:48:13 +0100537
Joerg Roedel7b5cc1a2015-11-17 16:11:36 +0100538 /* Check if we have the right permissions on the vma */
Joerg Roedel492e7452015-11-17 16:11:38 +0100539 if (access_error(vma, fault))
Jay Cornwalld14f6fc2015-09-16 14:10:03 -0500540 goto out;
Jay Cornwalld14f6fc2015-09-16 14:10:03 -0500541
Kirill A. Shutemovdcddffd2016-07-26 15:25:18 -0700542 ret = handle_mm_fault(vma, address, flags);
Jesse Barnes9dc00f42014-12-12 16:55:30 -0800543out:
Joerg Roedel492e7452015-11-17 16:11:38 +0100544 up_read(&mm->mmap_sem);
545
546 if (ret & VM_FAULT_ERROR)
547 /* failed to service fault */
548 handle_fault_error(fault);
549
Joerg Roedel028eeac2011-11-24 12:48:13 +0100550 finish_pri_tag(fault->dev_state, fault->state, fault->tag);
551
552 put_pasid_state(fault->state);
553
554 kfree(fault);
555}
556
557static int ppr_notifier(struct notifier_block *nb, unsigned long e, void *data)
558{
559 struct amd_iommu_fault *iommu_fault;
560 struct pasid_state *pasid_state;
561 struct device_state *dev_state;
562 unsigned long flags;
563 struct fault *fault;
564 bool finish;
Baoquan Hedaae2d22017-08-09 16:33:43 +0800565 u16 tag, devid;
Joerg Roedel028eeac2011-11-24 12:48:13 +0100566 int ret;
Baoquan Hedaae2d22017-08-09 16:33:43 +0800567 struct iommu_dev_data *dev_data;
568 struct pci_dev *pdev = NULL;
Joerg Roedel028eeac2011-11-24 12:48:13 +0100569
570 iommu_fault = data;
571 tag = iommu_fault->tag & 0x1ff;
572 finish = (iommu_fault->tag >> 9) & 1;
573
Baoquan Hedaae2d22017-08-09 16:33:43 +0800574 devid = iommu_fault->device_id;
575 pdev = pci_get_bus_and_slot(PCI_BUS_NUM(devid), devid & 0xff);
576 if (!pdev)
577 return -ENODEV;
578 dev_data = get_dev_data(&pdev->dev);
579
580 /* In kdump kernel pci dev is not initialized yet -> send INVALID */
Joerg Roedel028eeac2011-11-24 12:48:13 +0100581 ret = NOTIFY_DONE;
Baoquan Hedaae2d22017-08-09 16:33:43 +0800582 if (translation_pre_enabled(amd_iommu_rlookup_table[devid])
583 && dev_data->defer_attach) {
584 amd_iommu_complete_ppr(pdev, iommu_fault->pasid,
585 PPR_INVALID, tag);
586 goto out;
587 }
588
Joerg Roedel028eeac2011-11-24 12:48:13 +0100589 dev_state = get_device_state(iommu_fault->device_id);
590 if (dev_state == NULL)
591 goto out;
592
593 pasid_state = get_pasid_state(dev_state, iommu_fault->pasid);
Joerg Roedel53d340e2014-07-08 15:01:43 +0200594 if (pasid_state == NULL || pasid_state->invalid) {
Joerg Roedel028eeac2011-11-24 12:48:13 +0100595 /* We know the device but not the PASID -> send INVALID */
596 amd_iommu_complete_ppr(dev_state->pdev, iommu_fault->pasid,
597 PPR_INVALID, tag);
598 goto out_drop_state;
599 }
600
601 spin_lock_irqsave(&pasid_state->lock, flags);
602 atomic_inc(&pasid_state->pri[tag].inflight);
603 if (finish)
604 pasid_state->pri[tag].finish = true;
605 spin_unlock_irqrestore(&pasid_state->lock, flags);
606
607 fault = kzalloc(sizeof(*fault), GFP_ATOMIC);
608 if (fault == NULL) {
609 /* We are OOM - send success and let the device re-fault */
610 finish_pri_tag(dev_state, pasid_state, tag);
611 goto out_drop_state;
612 }
613
614 fault->dev_state = dev_state;
615 fault->address = iommu_fault->address;
616 fault->state = pasid_state;
617 fault->tag = tag;
618 fault->finish = finish;
Alexey Skidanovb00675b2014-07-08 17:30:16 +0300619 fault->pasid = iommu_fault->pasid;
Joerg Roedel028eeac2011-11-24 12:48:13 +0100620 fault->flags = iommu_fault->flags;
621 INIT_WORK(&fault->work, do_fault);
622
623 queue_work(iommu_wq, &fault->work);
624
625 ret = NOTIFY_OK;
626
627out_drop_state:
Joerg Roedeldc88db72014-07-08 14:55:10 +0200628
629 if (ret != NOTIFY_OK && pasid_state)
630 put_pasid_state(pasid_state);
631
Joerg Roedel028eeac2011-11-24 12:48:13 +0100632 put_device_state(dev_state);
633
634out:
635 return ret;
636}
637
638static struct notifier_block ppr_nb = {
639 .notifier_call = ppr_notifier,
640};
641
Joerg Roedel2d5503b2011-11-24 10:41:57 +0100642int amd_iommu_bind_pasid(struct pci_dev *pdev, int pasid,
643 struct task_struct *task)
644{
645 struct pasid_state *pasid_state;
646 struct device_state *dev_state;
Joerg Roedelf0aac632014-07-08 15:15:07 +0200647 struct mm_struct *mm;
Joerg Roedel2d5503b2011-11-24 10:41:57 +0100648 u16 devid;
649 int ret;
650
651 might_sleep();
652
653 if (!amd_iommu_v2_supported())
654 return -ENODEV;
655
656 devid = device_id(pdev);
657 dev_state = get_device_state(devid);
658
659 if (dev_state == NULL)
660 return -EINVAL;
661
662 ret = -EINVAL;
663 if (pasid < 0 || pasid >= dev_state->max_pasids)
664 goto out;
665
666 ret = -ENOMEM;
667 pasid_state = kzalloc(sizeof(*pasid_state), GFP_KERNEL);
668 if (pasid_state == NULL)
669 goto out;
670
Joerg Roedelf0aac632014-07-08 15:15:07 +0200671
Joerg Roedel2d5503b2011-11-24 10:41:57 +0100672 atomic_set(&pasid_state->count, 1);
Joerg Roedel028eeac2011-11-24 12:48:13 +0100673 init_waitqueue_head(&pasid_state->wq);
Joerg Roedel2c13d472012-07-19 10:56:10 +0200674 spin_lock_init(&pasid_state->lock);
675
Joerg Roedelf0aac632014-07-08 15:15:07 +0200676 mm = get_task_mm(task);
Joerg Roedelf0aac632014-07-08 15:15:07 +0200677 pasid_state->mm = mm;
Joerg Roedel2d5503b2011-11-24 10:41:57 +0100678 pasid_state->device_state = dev_state;
679 pasid_state->pasid = pasid;
Joerg Roedeld9e16112014-07-09 15:43:11 +0200680 pasid_state->invalid = true; /* Mark as valid only if we are
681 done with setting up the pasid */
Joerg Roedel8736b2c2011-11-24 16:21:52 +0100682 pasid_state->mn.ops = &iommu_mn;
Joerg Roedel2d5503b2011-11-24 10:41:57 +0100683
684 if (pasid_state->mm == NULL)
685 goto out_free;
686
Joerg Roedelf0aac632014-07-08 15:15:07 +0200687 mmu_notifier_register(&pasid_state->mn, mm);
Joerg Roedel8736b2c2011-11-24 16:21:52 +0100688
Joerg Roedel2d5503b2011-11-24 10:41:57 +0100689 ret = set_pasid_state(dev_state, pasid_state, pasid);
690 if (ret)
Joerg Roedel8736b2c2011-11-24 16:21:52 +0100691 goto out_unregister;
Joerg Roedel2d5503b2011-11-24 10:41:57 +0100692
693 ret = amd_iommu_domain_set_gcr3(dev_state->domain, pasid,
694 __pa(pasid_state->mm->pgd));
695 if (ret)
696 goto out_clear_state;
697
Joerg Roedeld9e16112014-07-09 15:43:11 +0200698 /* Now we are ready to handle faults */
699 pasid_state->invalid = false;
700
Joerg Roedelf0aac632014-07-08 15:15:07 +0200701 /*
702 * Drop the reference to the mm_struct here. We rely on the
703 * mmu_notifier release call-back to inform us when the mm
704 * is going away.
705 */
706 mmput(mm);
707
Joerg Roedel2d5503b2011-11-24 10:41:57 +0100708 return 0;
709
710out_clear_state:
711 clear_pasid_state(dev_state, pasid);
712
Joerg Roedel8736b2c2011-11-24 16:21:52 +0100713out_unregister:
Joerg Roedelf0aac632014-07-08 15:15:07 +0200714 mmu_notifier_unregister(&pasid_state->mn, mm);
Pan Bian73dbd4a2017-04-23 18:23:21 +0800715 mmput(mm);
Joerg Roedel8736b2c2011-11-24 16:21:52 +0100716
Joerg Roedel2d5503b2011-11-24 10:41:57 +0100717out_free:
Joerg Roedel028eeac2011-11-24 12:48:13 +0100718 free_pasid_state(pasid_state);
Joerg Roedel2d5503b2011-11-24 10:41:57 +0100719
720out:
721 put_device_state(dev_state);
722
723 return ret;
724}
725EXPORT_SYMBOL(amd_iommu_bind_pasid);
726
727void amd_iommu_unbind_pasid(struct pci_dev *pdev, int pasid)
728{
Joerg Roedela40d4c62014-05-20 23:18:24 +0200729 struct pasid_state *pasid_state;
Joerg Roedel2d5503b2011-11-24 10:41:57 +0100730 struct device_state *dev_state;
731 u16 devid;
732
733 might_sleep();
734
735 if (!amd_iommu_v2_supported())
736 return;
737
738 devid = device_id(pdev);
739 dev_state = get_device_state(devid);
740 if (dev_state == NULL)
741 return;
742
743 if (pasid < 0 || pasid >= dev_state->max_pasids)
744 goto out;
745
Joerg Roedela40d4c62014-05-20 23:18:24 +0200746 pasid_state = get_pasid_state(dev_state, pasid);
747 if (pasid_state == NULL)
748 goto out;
749 /*
750 * Drop reference taken here. We are safe because we still hold
751 * the reference taken in the amd_iommu_bind_pasid function.
752 */
753 put_pasid_state(pasid_state);
754
Joerg Roedel53d340e2014-07-08 15:01:43 +0200755 /* Clear the pasid state so that the pasid can be re-used */
756 clear_pasid_state(dev_state, pasid_state->pasid);
757
Joerg Roedelf0aac632014-07-08 15:15:07 +0200758 /*
Joerg Roedelfcaa9602014-07-30 16:04:37 +0200759 * Call mmu_notifier_unregister to drop our reference
760 * to pasid_state->mm
Joerg Roedelf0aac632014-07-08 15:15:07 +0200761 */
Joerg Roedelfcaa9602014-07-30 16:04:37 +0200762 mmu_notifier_unregister(&pasid_state->mn, pasid_state->mm);
Joerg Roedel2d5503b2011-11-24 10:41:57 +0100763
Joerg Roedelc5db16a2014-07-08 14:15:45 +0200764 put_pasid_state_wait(pasid_state); /* Reference taken in
Joerg Roedeldaff2f92014-07-30 16:04:40 +0200765 amd_iommu_bind_pasid */
Joerg Roedel2d5503b2011-11-24 10:41:57 +0100766out:
Joerg Roedel75058a32014-07-30 16:04:39 +0200767 /* Drop reference taken in this function */
768 put_device_state(dev_state);
769
770 /* Drop reference taken in amd_iommu_bind_pasid */
Joerg Roedel2d5503b2011-11-24 10:41:57 +0100771 put_device_state(dev_state);
772}
773EXPORT_SYMBOL(amd_iommu_unbind_pasid);
774
Joerg Roedeled96f222011-11-23 17:30:39 +0100775int amd_iommu_init_device(struct pci_dev *pdev, int pasids)
776{
777 struct device_state *dev_state;
Joerg Roedel55c99a42015-07-28 16:58:47 +0200778 struct iommu_group *group;
Joerg Roedeled96f222011-11-23 17:30:39 +0100779 unsigned long flags;
780 int ret, tmp;
781 u16 devid;
782
783 might_sleep();
784
785 if (!amd_iommu_v2_supported())
786 return -ENODEV;
787
788 if (pasids <= 0 || pasids > (PASID_MASK + 1))
789 return -EINVAL;
790
791 devid = device_id(pdev);
792
793 dev_state = kzalloc(sizeof(*dev_state), GFP_KERNEL);
794 if (dev_state == NULL)
795 return -ENOMEM;
796
797 spin_lock_init(&dev_state->lock);
Joerg Roedel028eeac2011-11-24 12:48:13 +0100798 init_waitqueue_head(&dev_state->wq);
Joerg Roedel741669c2014-05-20 23:18:23 +0200799 dev_state->pdev = pdev;
800 dev_state->devid = devid;
Joerg Roedeled96f222011-11-23 17:30:39 +0100801
802 tmp = pasids;
803 for (dev_state->pasid_levels = 0; (tmp - 1) & ~0x1ff; tmp >>= 9)
804 dev_state->pasid_levels += 1;
805
806 atomic_set(&dev_state->count, 1);
807 dev_state->max_pasids = pasids;
808
809 ret = -ENOMEM;
810 dev_state->states = (void *)get_zeroed_page(GFP_KERNEL);
811 if (dev_state->states == NULL)
812 goto out_free_dev_state;
813
814 dev_state->domain = iommu_domain_alloc(&pci_bus_type);
815 if (dev_state->domain == NULL)
816 goto out_free_states;
817
818 amd_iommu_domain_direct_map(dev_state->domain);
819
820 ret = amd_iommu_domain_enable_v2(dev_state->domain, pasids);
821 if (ret)
822 goto out_free_domain;
823
Joerg Roedel55c99a42015-07-28 16:58:47 +0200824 group = iommu_group_get(&pdev->dev);
Dan Carpenter24c790f2016-11-24 14:05:44 +0300825 if (!group) {
826 ret = -EINVAL;
Joerg Roedeled96f222011-11-23 17:30:39 +0100827 goto out_free_domain;
Dan Carpenter24c790f2016-11-24 14:05:44 +0300828 }
Joerg Roedeled96f222011-11-23 17:30:39 +0100829
Joerg Roedel55c99a42015-07-28 16:58:47 +0200830 ret = iommu_attach_group(dev_state->domain, group);
831 if (ret != 0)
832 goto out_drop_group;
833
834 iommu_group_put(group);
835
Joerg Roedeled96f222011-11-23 17:30:39 +0100836 spin_lock_irqsave(&state_lock, flags);
837
Joerg Roedel741669c2014-05-20 23:18:23 +0200838 if (__get_device_state(devid) != NULL) {
Joerg Roedeled96f222011-11-23 17:30:39 +0100839 spin_unlock_irqrestore(&state_lock, flags);
840 ret = -EBUSY;
841 goto out_free_domain;
842 }
843
Joerg Roedel741669c2014-05-20 23:18:23 +0200844 list_add_tail(&dev_state->list, &state_list);
Joerg Roedeled96f222011-11-23 17:30:39 +0100845
846 spin_unlock_irqrestore(&state_lock, flags);
847
848 return 0;
849
Joerg Roedel55c99a42015-07-28 16:58:47 +0200850out_drop_group:
851 iommu_group_put(group);
852
Joerg Roedeled96f222011-11-23 17:30:39 +0100853out_free_domain:
854 iommu_domain_free(dev_state->domain);
855
856out_free_states:
857 free_page((unsigned long)dev_state->states);
858
859out_free_dev_state:
860 kfree(dev_state);
861
862 return ret;
863}
864EXPORT_SYMBOL(amd_iommu_init_device);
865
866void amd_iommu_free_device(struct pci_dev *pdev)
867{
868 struct device_state *dev_state;
869 unsigned long flags;
870 u16 devid;
871
872 if (!amd_iommu_v2_supported())
873 return;
874
875 devid = device_id(pdev);
876
877 spin_lock_irqsave(&state_lock, flags);
878
Joerg Roedelb87d2d72014-05-20 23:18:22 +0200879 dev_state = __get_device_state(devid);
Joerg Roedeled96f222011-11-23 17:30:39 +0100880 if (dev_state == NULL) {
881 spin_unlock_irqrestore(&state_lock, flags);
882 return;
883 }
884
Joerg Roedel741669c2014-05-20 23:18:23 +0200885 list_del(&dev_state->list);
Joerg Roedeled96f222011-11-23 17:30:39 +0100886
887 spin_unlock_irqrestore(&state_lock, flags);
888
Joerg Roedel2d5503b2011-11-24 10:41:57 +0100889 /* Get rid of any remaining pasid states */
890 free_pasid_states(dev_state);
891
Peter Zijlstra91f65fa2015-02-03 13:25:51 +0100892 put_device_state(dev_state);
893 /*
894 * Wait until the last reference is dropped before freeing
895 * the device state.
896 */
897 wait_event(dev_state->wq, !atomic_read(&dev_state->count));
898 free_device_state(dev_state);
Joerg Roedeled96f222011-11-23 17:30:39 +0100899}
900EXPORT_SYMBOL(amd_iommu_free_device);
901
Joerg Roedel175d6142011-11-28 14:36:36 +0100902int amd_iommu_set_invalid_ppr_cb(struct pci_dev *pdev,
903 amd_iommu_invalid_ppr_cb cb)
904{
905 struct device_state *dev_state;
906 unsigned long flags;
907 u16 devid;
908 int ret;
909
910 if (!amd_iommu_v2_supported())
911 return -ENODEV;
912
913 devid = device_id(pdev);
914
915 spin_lock_irqsave(&state_lock, flags);
916
917 ret = -EINVAL;
Joerg Roedelb87d2d72014-05-20 23:18:22 +0200918 dev_state = __get_device_state(devid);
Joerg Roedel175d6142011-11-28 14:36:36 +0100919 if (dev_state == NULL)
920 goto out_unlock;
921
922 dev_state->inv_ppr_cb = cb;
923
924 ret = 0;
925
926out_unlock:
927 spin_unlock_irqrestore(&state_lock, flags);
928
929 return ret;
930}
931EXPORT_SYMBOL(amd_iommu_set_invalid_ppr_cb);
932
Joerg Roedelbc216622011-12-07 12:24:42 +0100933int amd_iommu_set_invalidate_ctx_cb(struct pci_dev *pdev,
934 amd_iommu_invalidate_ctx cb)
935{
936 struct device_state *dev_state;
937 unsigned long flags;
938 u16 devid;
939 int ret;
940
941 if (!amd_iommu_v2_supported())
942 return -ENODEV;
943
944 devid = device_id(pdev);
945
946 spin_lock_irqsave(&state_lock, flags);
947
948 ret = -EINVAL;
Joerg Roedelb87d2d72014-05-20 23:18:22 +0200949 dev_state = __get_device_state(devid);
Joerg Roedelbc216622011-12-07 12:24:42 +0100950 if (dev_state == NULL)
951 goto out_unlock;
952
953 dev_state->inv_ctx_cb = cb;
954
955 ret = 0;
956
957out_unlock:
958 spin_unlock_irqrestore(&state_lock, flags);
959
960 return ret;
961}
962EXPORT_SYMBOL(amd_iommu_set_invalidate_ctx_cb);
963
Joerg Roedele3c495c2011-11-09 12:31:15 +0100964static int __init amd_iommu_v2_init(void)
965{
Joerg Roedel028eeac2011-11-24 12:48:13 +0100966 int ret;
Joerg Roedeled96f222011-11-23 17:30:39 +0100967
Joerg Roedel63ce3ae2015-02-04 16:12:55 +0100968 pr_info("AMD IOMMUv2 driver by Joerg Roedel <jroedel@suse.de>\n");
Joerg Roedel474d567d2012-03-15 12:46:40 +0100969
970 if (!amd_iommu_v2_supported()) {
Masanari Iida07db0402012-07-22 02:21:32 +0900971 pr_info("AMD IOMMUv2 functionality not available on this system\n");
Joerg Roedel474d567d2012-03-15 12:46:40 +0100972 /*
973 * Load anyway to provide the symbols to other modules
974 * which may use AMD IOMMUv2 optionally.
975 */
976 return 0;
977 }
Joerg Roedele3c495c2011-11-09 12:31:15 +0100978
Joerg Roedeled96f222011-11-23 17:30:39 +0100979 spin_lock_init(&state_lock);
980
Joerg Roedel028eeac2011-11-24 12:48:13 +0100981 ret = -ENOMEM;
Bhaktipriya Shridharcf7513e2016-06-18 13:58:30 +0530982 iommu_wq = alloc_workqueue("amd_iommu_v2", WQ_MEM_RECLAIM, 0);
Joerg Roedel8736b2c2011-11-24 16:21:52 +0100983 if (iommu_wq == NULL)
Joerg Roedel741669c2014-05-20 23:18:23 +0200984 goto out;
Joerg Roedel8736b2c2011-11-24 16:21:52 +0100985
Joerg Roedel028eeac2011-11-24 12:48:13 +0100986 amd_iommu_register_ppr_notifier(&ppr_nb);
987
Joerg Roedele3c495c2011-11-09 12:31:15 +0100988 return 0;
Joerg Roedel028eeac2011-11-24 12:48:13 +0100989
Joerg Roedel741669c2014-05-20 23:18:23 +0200990out:
Joerg Roedel028eeac2011-11-24 12:48:13 +0100991 return ret;
Joerg Roedele3c495c2011-11-09 12:31:15 +0100992}
993
994static void __exit amd_iommu_v2_exit(void)
995{
Joerg Roedeled96f222011-11-23 17:30:39 +0100996 struct device_state *dev_state;
Joerg Roedeled96f222011-11-23 17:30:39 +0100997 int i;
998
Joerg Roedel474d567d2012-03-15 12:46:40 +0100999 if (!amd_iommu_v2_supported())
1000 return;
1001
Joerg Roedel028eeac2011-11-24 12:48:13 +01001002 amd_iommu_unregister_ppr_notifier(&ppr_nb);
1003
1004 flush_workqueue(iommu_wq);
1005
1006 /*
1007 * The loop below might call flush_workqueue(), so call
1008 * destroy_workqueue() after it
1009 */
Joerg Roedeled96f222011-11-23 17:30:39 +01001010 for (i = 0; i < MAX_DEVICES; ++i) {
1011 dev_state = get_device_state(i);
1012
1013 if (dev_state == NULL)
1014 continue;
1015
1016 WARN_ON_ONCE(1);
1017
Joerg Roedeled96f222011-11-23 17:30:39 +01001018 put_device_state(dev_state);
Joerg Roedel028eeac2011-11-24 12:48:13 +01001019 amd_iommu_free_device(dev_state->pdev);
Joerg Roedeled96f222011-11-23 17:30:39 +01001020 }
1021
Joerg Roedel028eeac2011-11-24 12:48:13 +01001022 destroy_workqueue(iommu_wq);
Joerg Roedele3c495c2011-11-09 12:31:15 +01001023}
1024
1025module_init(amd_iommu_v2_init);
1026module_exit(amd_iommu_v2_exit);