Merge tag 'trace-v4.20' of git://git.kernel.org/pub/scm/linux/kernel/git/rostedt...
[linux-block.git] / mm / hmm.c
CommitLineData
133ff0ea
JG
1/*
2 * Copyright 2013 Red Hat Inc.
3 *
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation; either version 2 of the License, or
7 * (at your option) any later version.
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 * Authors: Jérôme Glisse <jglisse@redhat.com>
15 */
16/*
17 * Refer to include/linux/hmm.h for information about heterogeneous memory
18 * management or HMM for short.
19 */
20#include <linux/mm.h>
21#include <linux/hmm.h>
858b54da 22#include <linux/init.h>
da4c3c73
JG
23#include <linux/rmap.h>
24#include <linux/swap.h>
133ff0ea
JG
25#include <linux/slab.h>
26#include <linux/sched.h>
4ef589dc
JG
27#include <linux/mmzone.h>
28#include <linux/pagemap.h>
da4c3c73
JG
29#include <linux/swapops.h>
30#include <linux/hugetlb.h>
4ef589dc 31#include <linux/memremap.h>
7b2d55d2 32#include <linux/jump_label.h>
c0b12405 33#include <linux/mmu_notifier.h>
4ef589dc
JG
34#include <linux/memory_hotplug.h>
35
36#define PA_SECTION_SIZE (1UL << PA_SECTION_SHIFT)
133ff0ea 37
6b368cd4 38#if IS_ENABLED(CONFIG_HMM_MIRROR)
c0b12405
JG
39static const struct mmu_notifier_ops hmm_mmu_notifier_ops;
40
133ff0ea
JG
41/*
42 * struct hmm - HMM per mm struct
43 *
44 * @mm: mm struct this HMM struct is bound to
da4c3c73 45 * @lock: lock protecting ranges list
c0b12405 46 * @sequence: we track updates to the CPU page table with a sequence number
da4c3c73 47 * @ranges: list of range being snapshotted
c0b12405
JG
48 * @mirrors: list of mirrors for this mm
49 * @mmu_notifier: mmu notifier to track updates to CPU page table
50 * @mirrors_sem: read/write semaphore protecting the mirrors list
133ff0ea
JG
51 */
52struct hmm {
53 struct mm_struct *mm;
da4c3c73 54 spinlock_t lock;
c0b12405 55 atomic_t sequence;
da4c3c73 56 struct list_head ranges;
c0b12405
JG
57 struct list_head mirrors;
58 struct mmu_notifier mmu_notifier;
59 struct rw_semaphore mirrors_sem;
133ff0ea
JG
60};
61
62/*
63 * hmm_register - register HMM against an mm (HMM internal)
64 *
65 * @mm: mm struct to attach to
66 *
67 * This is not intended to be used directly by device drivers. It allocates an
68 * HMM struct if mm does not have one, and initializes it.
69 */
70static struct hmm *hmm_register(struct mm_struct *mm)
71{
c0b12405
JG
72 struct hmm *hmm = READ_ONCE(mm->hmm);
73 bool cleanup = false;
133ff0ea
JG
74
75 /*
76 * The hmm struct can only be freed once the mm_struct goes away,
77 * hence we should always have pre-allocated an new hmm struct
78 * above.
79 */
c0b12405
JG
80 if (hmm)
81 return hmm;
82
83 hmm = kmalloc(sizeof(*hmm), GFP_KERNEL);
84 if (!hmm)
85 return NULL;
86 INIT_LIST_HEAD(&hmm->mirrors);
87 init_rwsem(&hmm->mirrors_sem);
88 atomic_set(&hmm->sequence, 0);
89 hmm->mmu_notifier.ops = NULL;
da4c3c73
JG
90 INIT_LIST_HEAD(&hmm->ranges);
91 spin_lock_init(&hmm->lock);
c0b12405
JG
92 hmm->mm = mm;
93
94 /*
95 * We should only get here if hold the mmap_sem in write mode ie on
96 * registration of first mirror through hmm_mirror_register()
97 */
98 hmm->mmu_notifier.ops = &hmm_mmu_notifier_ops;
99 if (__mmu_notifier_register(&hmm->mmu_notifier, mm)) {
100 kfree(hmm);
101 return NULL;
102 }
103
104 spin_lock(&mm->page_table_lock);
105 if (!mm->hmm)
106 mm->hmm = hmm;
107 else
108 cleanup = true;
109 spin_unlock(&mm->page_table_lock);
110
111 if (cleanup) {
112 mmu_notifier_unregister(&hmm->mmu_notifier, mm);
113 kfree(hmm);
114 }
115
133ff0ea
JG
116 return mm->hmm;
117}
118
119void hmm_mm_destroy(struct mm_struct *mm)
120{
121 kfree(mm->hmm);
122}
c0b12405 123
c0b12405
JG
124static void hmm_invalidate_range(struct hmm *hmm,
125 enum hmm_update_type action,
126 unsigned long start,
127 unsigned long end)
128{
129 struct hmm_mirror *mirror;
da4c3c73
JG
130 struct hmm_range *range;
131
132 spin_lock(&hmm->lock);
133 list_for_each_entry(range, &hmm->ranges, list) {
134 unsigned long addr, idx, npages;
135
136 if (end < range->start || start >= range->end)
137 continue;
138
139 range->valid = false;
140 addr = max(start, range->start);
141 idx = (addr - range->start) >> PAGE_SHIFT;
142 npages = (min(range->end, end) - addr) >> PAGE_SHIFT;
143 memset(&range->pfns[idx], 0, sizeof(*range->pfns) * npages);
144 }
145 spin_unlock(&hmm->lock);
c0b12405
JG
146
147 down_read(&hmm->mirrors_sem);
148 list_for_each_entry(mirror, &hmm->mirrors, list)
149 mirror->ops->sync_cpu_device_pagetables(mirror, action,
150 start, end);
151 up_read(&hmm->mirrors_sem);
152}
153
e1401513
RC
154static void hmm_release(struct mmu_notifier *mn, struct mm_struct *mm)
155{
156 struct hmm_mirror *mirror;
157 struct hmm *hmm = mm->hmm;
158
159 down_write(&hmm->mirrors_sem);
160 mirror = list_first_entry_or_null(&hmm->mirrors, struct hmm_mirror,
161 list);
162 while (mirror) {
163 list_del_init(&mirror->list);
164 if (mirror->ops->release) {
165 /*
166 * Drop mirrors_sem so callback can wait on any pending
167 * work that might itself trigger mmu_notifier callback
168 * and thus would deadlock with us.
169 */
170 up_write(&hmm->mirrors_sem);
171 mirror->ops->release(mirror);
172 down_write(&hmm->mirrors_sem);
173 }
174 mirror = list_first_entry_or_null(&hmm->mirrors,
175 struct hmm_mirror, list);
176 }
177 up_write(&hmm->mirrors_sem);
178}
179
93065ac7 180static int hmm_invalidate_range_start(struct mmu_notifier *mn,
c0b12405
JG
181 struct mm_struct *mm,
182 unsigned long start,
93065ac7
MH
183 unsigned long end,
184 bool blockable)
c0b12405
JG
185{
186 struct hmm *hmm = mm->hmm;
187
188 VM_BUG_ON(!hmm);
189
190 atomic_inc(&hmm->sequence);
93065ac7
MH
191
192 return 0;
c0b12405
JG
193}
194
195static void hmm_invalidate_range_end(struct mmu_notifier *mn,
196 struct mm_struct *mm,
197 unsigned long start,
198 unsigned long end)
199{
200 struct hmm *hmm = mm->hmm;
201
202 VM_BUG_ON(!hmm);
203
204 hmm_invalidate_range(mm->hmm, HMM_UPDATE_INVALIDATE, start, end);
205}
206
207static const struct mmu_notifier_ops hmm_mmu_notifier_ops = {
e1401513 208 .release = hmm_release,
c0b12405
JG
209 .invalidate_range_start = hmm_invalidate_range_start,
210 .invalidate_range_end = hmm_invalidate_range_end,
211};
212
213/*
214 * hmm_mirror_register() - register a mirror against an mm
215 *
216 * @mirror: new mirror struct to register
217 * @mm: mm to register against
218 *
219 * To start mirroring a process address space, the device driver must register
220 * an HMM mirror struct.
221 *
222 * THE mm->mmap_sem MUST BE HELD IN WRITE MODE !
223 */
224int hmm_mirror_register(struct hmm_mirror *mirror, struct mm_struct *mm)
225{
226 /* Sanity check */
227 if (!mm || !mirror || !mirror->ops)
228 return -EINVAL;
229
c01cbba2 230again:
c0b12405
JG
231 mirror->hmm = hmm_register(mm);
232 if (!mirror->hmm)
233 return -ENOMEM;
234
235 down_write(&mirror->hmm->mirrors_sem);
c01cbba2
JG
236 if (mirror->hmm->mm == NULL) {
237 /*
238 * A racing hmm_mirror_unregister() is about to destroy the hmm
239 * struct. Try again to allocate a new one.
240 */
241 up_write(&mirror->hmm->mirrors_sem);
242 mirror->hmm = NULL;
243 goto again;
244 } else {
245 list_add(&mirror->list, &mirror->hmm->mirrors);
246 up_write(&mirror->hmm->mirrors_sem);
247 }
c0b12405
JG
248
249 return 0;
250}
251EXPORT_SYMBOL(hmm_mirror_register);
252
253/*
254 * hmm_mirror_unregister() - unregister a mirror
255 *
256 * @mirror: new mirror struct to register
257 *
258 * Stop mirroring a process address space, and cleanup.
259 */
260void hmm_mirror_unregister(struct hmm_mirror *mirror)
261{
c01cbba2
JG
262 bool should_unregister = false;
263 struct mm_struct *mm;
264 struct hmm *hmm;
265
266 if (mirror->hmm == NULL)
267 return;
c0b12405 268
c01cbba2 269 hmm = mirror->hmm;
c0b12405 270 down_write(&hmm->mirrors_sem);
e1401513 271 list_del_init(&mirror->list);
c01cbba2
JG
272 should_unregister = list_empty(&hmm->mirrors);
273 mirror->hmm = NULL;
274 mm = hmm->mm;
275 hmm->mm = NULL;
c0b12405 276 up_write(&hmm->mirrors_sem);
c01cbba2
JG
277
278 if (!should_unregister || mm == NULL)
279 return;
280
281 spin_lock(&mm->page_table_lock);
282 if (mm->hmm == hmm)
283 mm->hmm = NULL;
284 spin_unlock(&mm->page_table_lock);
285
286 mmu_notifier_unregister_no_release(&hmm->mmu_notifier, mm);
287 kfree(hmm);
c0b12405
JG
288}
289EXPORT_SYMBOL(hmm_mirror_unregister);
da4c3c73 290
74eee180
JG
291struct hmm_vma_walk {
292 struct hmm_range *range;
293 unsigned long last;
294 bool fault;
295 bool block;
74eee180
JG
296};
297
2aee09d8
JG
298static int hmm_vma_do_fault(struct mm_walk *walk, unsigned long addr,
299 bool write_fault, uint64_t *pfn)
74eee180
JG
300{
301 unsigned int flags = FAULT_FLAG_ALLOW_RETRY | FAULT_FLAG_REMOTE;
302 struct hmm_vma_walk *hmm_vma_walk = walk->private;
f88a1e90 303 struct hmm_range *range = hmm_vma_walk->range;
74eee180 304 struct vm_area_struct *vma = walk->vma;
50a7ca3c 305 vm_fault_t ret;
74eee180
JG
306
307 flags |= hmm_vma_walk->block ? 0 : FAULT_FLAG_ALLOW_RETRY;
2aee09d8 308 flags |= write_fault ? FAULT_FLAG_WRITE : 0;
50a7ca3c
SJ
309 ret = handle_mm_fault(vma, addr, flags);
310 if (ret & VM_FAULT_RETRY)
74eee180 311 return -EBUSY;
50a7ca3c 312 if (ret & VM_FAULT_ERROR) {
f88a1e90 313 *pfn = range->values[HMM_PFN_ERROR];
74eee180
JG
314 return -EFAULT;
315 }
316
317 return -EAGAIN;
318}
319
da4c3c73
JG
320static int hmm_pfns_bad(unsigned long addr,
321 unsigned long end,
322 struct mm_walk *walk)
323{
c719547f
JG
324 struct hmm_vma_walk *hmm_vma_walk = walk->private;
325 struct hmm_range *range = hmm_vma_walk->range;
ff05c0c6 326 uint64_t *pfns = range->pfns;
da4c3c73
JG
327 unsigned long i;
328
329 i = (addr - range->start) >> PAGE_SHIFT;
330 for (; addr < end; addr += PAGE_SIZE, i++)
f88a1e90 331 pfns[i] = range->values[HMM_PFN_ERROR];
da4c3c73
JG
332
333 return 0;
334}
335
5504ed29
JG
336/*
337 * hmm_vma_walk_hole() - handle a range lacking valid pmd or pte(s)
338 * @start: range virtual start address (inclusive)
339 * @end: range virtual end address (exclusive)
2aee09d8
JG
340 * @fault: should we fault or not ?
341 * @write_fault: write fault ?
5504ed29
JG
342 * @walk: mm_walk structure
343 * Returns: 0 on success, -EAGAIN after page fault, or page fault error
344 *
345 * This function will be called whenever pmd_none() or pte_none() returns true,
346 * or whenever there is no page directory covering the virtual address range.
347 */
2aee09d8
JG
348static int hmm_vma_walk_hole_(unsigned long addr, unsigned long end,
349 bool fault, bool write_fault,
350 struct mm_walk *walk)
da4c3c73 351{
74eee180
JG
352 struct hmm_vma_walk *hmm_vma_walk = walk->private;
353 struct hmm_range *range = hmm_vma_walk->range;
ff05c0c6 354 uint64_t *pfns = range->pfns;
da4c3c73
JG
355 unsigned long i;
356
74eee180 357 hmm_vma_walk->last = addr;
da4c3c73 358 i = (addr - range->start) >> PAGE_SHIFT;
74eee180 359 for (; addr < end; addr += PAGE_SIZE, i++) {
f88a1e90 360 pfns[i] = range->values[HMM_PFN_NONE];
2aee09d8 361 if (fault || write_fault) {
74eee180 362 int ret;
da4c3c73 363
2aee09d8
JG
364 ret = hmm_vma_do_fault(walk, addr, write_fault,
365 &pfns[i]);
74eee180
JG
366 if (ret != -EAGAIN)
367 return ret;
368 }
369 }
370
2aee09d8
JG
371 return (fault || write_fault) ? -EAGAIN : 0;
372}
373
374static inline void hmm_pte_need_fault(const struct hmm_vma_walk *hmm_vma_walk,
375 uint64_t pfns, uint64_t cpu_flags,
376 bool *fault, bool *write_fault)
377{
f88a1e90
JG
378 struct hmm_range *range = hmm_vma_walk->range;
379
2aee09d8
JG
380 *fault = *write_fault = false;
381 if (!hmm_vma_walk->fault)
382 return;
383
384 /* We aren't ask to do anything ... */
f88a1e90 385 if (!(pfns & range->flags[HMM_PFN_VALID]))
2aee09d8 386 return;
f88a1e90
JG
387 /* If this is device memory than only fault if explicitly requested */
388 if ((cpu_flags & range->flags[HMM_PFN_DEVICE_PRIVATE])) {
389 /* Do we fault on device memory ? */
390 if (pfns & range->flags[HMM_PFN_DEVICE_PRIVATE]) {
391 *write_fault = pfns & range->flags[HMM_PFN_WRITE];
392 *fault = true;
393 }
2aee09d8
JG
394 return;
395 }
f88a1e90
JG
396
397 /* If CPU page table is not valid then we need to fault */
398 *fault = !(cpu_flags & range->flags[HMM_PFN_VALID]);
399 /* Need to write fault ? */
400 if ((pfns & range->flags[HMM_PFN_WRITE]) &&
401 !(cpu_flags & range->flags[HMM_PFN_WRITE])) {
402 *write_fault = true;
2aee09d8
JG
403 *fault = true;
404 }
405}
406
407static void hmm_range_need_fault(const struct hmm_vma_walk *hmm_vma_walk,
408 const uint64_t *pfns, unsigned long npages,
409 uint64_t cpu_flags, bool *fault,
410 bool *write_fault)
411{
412 unsigned long i;
413
414 if (!hmm_vma_walk->fault) {
415 *fault = *write_fault = false;
416 return;
417 }
418
419 for (i = 0; i < npages; ++i) {
420 hmm_pte_need_fault(hmm_vma_walk, pfns[i], cpu_flags,
421 fault, write_fault);
422 if ((*fault) || (*write_fault))
423 return;
424 }
425}
426
427static int hmm_vma_walk_hole(unsigned long addr, unsigned long end,
428 struct mm_walk *walk)
429{
430 struct hmm_vma_walk *hmm_vma_walk = walk->private;
431 struct hmm_range *range = hmm_vma_walk->range;
432 bool fault, write_fault;
433 unsigned long i, npages;
434 uint64_t *pfns;
435
436 i = (addr - range->start) >> PAGE_SHIFT;
437 npages = (end - addr) >> PAGE_SHIFT;
438 pfns = &range->pfns[i];
439 hmm_range_need_fault(hmm_vma_walk, pfns, npages,
440 0, &fault, &write_fault);
441 return hmm_vma_walk_hole_(addr, end, fault, write_fault, walk);
442}
443
f88a1e90 444static inline uint64_t pmd_to_hmm_pfn_flags(struct hmm_range *range, pmd_t pmd)
2aee09d8
JG
445{
446 if (pmd_protnone(pmd))
447 return 0;
f88a1e90
JG
448 return pmd_write(pmd) ? range->flags[HMM_PFN_VALID] |
449 range->flags[HMM_PFN_WRITE] :
450 range->flags[HMM_PFN_VALID];
da4c3c73
JG
451}
452
53f5c3f4
JG
453static int hmm_vma_handle_pmd(struct mm_walk *walk,
454 unsigned long addr,
455 unsigned long end,
456 uint64_t *pfns,
457 pmd_t pmd)
458{
459 struct hmm_vma_walk *hmm_vma_walk = walk->private;
f88a1e90 460 struct hmm_range *range = hmm_vma_walk->range;
2aee09d8 461 unsigned long pfn, npages, i;
2aee09d8 462 bool fault, write_fault;
f88a1e90 463 uint64_t cpu_flags;
53f5c3f4 464
2aee09d8 465 npages = (end - addr) >> PAGE_SHIFT;
f88a1e90 466 cpu_flags = pmd_to_hmm_pfn_flags(range, pmd);
2aee09d8
JG
467 hmm_range_need_fault(hmm_vma_walk, pfns, npages, cpu_flags,
468 &fault, &write_fault);
53f5c3f4 469
2aee09d8
JG
470 if (pmd_protnone(pmd) || fault || write_fault)
471 return hmm_vma_walk_hole_(addr, end, fault, write_fault, walk);
53f5c3f4
JG
472
473 pfn = pmd_pfn(pmd) + pte_index(addr);
53f5c3f4 474 for (i = 0; addr < end; addr += PAGE_SIZE, i++, pfn++)
f88a1e90 475 pfns[i] = hmm_pfn_from_pfn(range, pfn) | cpu_flags;
53f5c3f4
JG
476 hmm_vma_walk->last = end;
477 return 0;
478}
479
f88a1e90 480static inline uint64_t pte_to_hmm_pfn_flags(struct hmm_range *range, pte_t pte)
2aee09d8
JG
481{
482 if (pte_none(pte) || !pte_present(pte))
483 return 0;
f88a1e90
JG
484 return pte_write(pte) ? range->flags[HMM_PFN_VALID] |
485 range->flags[HMM_PFN_WRITE] :
486 range->flags[HMM_PFN_VALID];
2aee09d8
JG
487}
488
53f5c3f4
JG
489static int hmm_vma_handle_pte(struct mm_walk *walk, unsigned long addr,
490 unsigned long end, pmd_t *pmdp, pte_t *ptep,
491 uint64_t *pfn)
492{
493 struct hmm_vma_walk *hmm_vma_walk = walk->private;
f88a1e90 494 struct hmm_range *range = hmm_vma_walk->range;
53f5c3f4 495 struct vm_area_struct *vma = walk->vma;
2aee09d8
JG
496 bool fault, write_fault;
497 uint64_t cpu_flags;
53f5c3f4 498 pte_t pte = *ptep;
f88a1e90 499 uint64_t orig_pfn = *pfn;
53f5c3f4 500
f88a1e90
JG
501 *pfn = range->values[HMM_PFN_NONE];
502 cpu_flags = pte_to_hmm_pfn_flags(range, pte);
503 hmm_pte_need_fault(hmm_vma_walk, orig_pfn, cpu_flags,
2aee09d8 504 &fault, &write_fault);
53f5c3f4
JG
505
506 if (pte_none(pte)) {
2aee09d8 507 if (fault || write_fault)
53f5c3f4
JG
508 goto fault;
509 return 0;
510 }
511
512 if (!pte_present(pte)) {
513 swp_entry_t entry = pte_to_swp_entry(pte);
514
515 if (!non_swap_entry(entry)) {
2aee09d8 516 if (fault || write_fault)
53f5c3f4
JG
517 goto fault;
518 return 0;
519 }
520
521 /*
522 * This is a special swap entry, ignore migration, use
523 * device and report anything else as error.
524 */
525 if (is_device_private_entry(entry)) {
f88a1e90
JG
526 cpu_flags = range->flags[HMM_PFN_VALID] |
527 range->flags[HMM_PFN_DEVICE_PRIVATE];
2aee09d8 528 cpu_flags |= is_write_device_private_entry(entry) ?
f88a1e90
JG
529 range->flags[HMM_PFN_WRITE] : 0;
530 hmm_pte_need_fault(hmm_vma_walk, orig_pfn, cpu_flags,
531 &fault, &write_fault);
532 if (fault || write_fault)
533 goto fault;
534 *pfn = hmm_pfn_from_pfn(range, swp_offset(entry));
535 *pfn |= cpu_flags;
53f5c3f4
JG
536 return 0;
537 }
538
539 if (is_migration_entry(entry)) {
2aee09d8 540 if (fault || write_fault) {
53f5c3f4
JG
541 pte_unmap(ptep);
542 hmm_vma_walk->last = addr;
543 migration_entry_wait(vma->vm_mm,
2aee09d8 544 pmdp, addr);
53f5c3f4
JG
545 return -EAGAIN;
546 }
547 return 0;
548 }
549
550 /* Report error for everything else */
f88a1e90 551 *pfn = range->values[HMM_PFN_ERROR];
53f5c3f4
JG
552 return -EFAULT;
553 }
554
2aee09d8 555 if (fault || write_fault)
53f5c3f4
JG
556 goto fault;
557
f88a1e90 558 *pfn = hmm_pfn_from_pfn(range, pte_pfn(pte)) | cpu_flags;
53f5c3f4
JG
559 return 0;
560
561fault:
562 pte_unmap(ptep);
563 /* Fault any virtual address we were asked to fault */
2aee09d8 564 return hmm_vma_walk_hole_(addr, end, fault, write_fault, walk);
53f5c3f4
JG
565}
566
da4c3c73
JG
567static int hmm_vma_walk_pmd(pmd_t *pmdp,
568 unsigned long start,
569 unsigned long end,
570 struct mm_walk *walk)
571{
74eee180
JG
572 struct hmm_vma_walk *hmm_vma_walk = walk->private;
573 struct hmm_range *range = hmm_vma_walk->range;
ff05c0c6 574 uint64_t *pfns = range->pfns;
da4c3c73 575 unsigned long addr = start, i;
da4c3c73
JG
576 pte_t *ptep;
577
578 i = (addr - range->start) >> PAGE_SHIFT;
da4c3c73
JG
579
580again:
581 if (pmd_none(*pmdp))
582 return hmm_vma_walk_hole(start, end, walk);
583
53f5c3f4 584 if (pmd_huge(*pmdp) && (range->vma->vm_flags & VM_HUGETLB))
da4c3c73
JG
585 return hmm_pfns_bad(start, end, walk);
586
587 if (pmd_devmap(*pmdp) || pmd_trans_huge(*pmdp)) {
da4c3c73
JG
588 pmd_t pmd;
589
590 /*
591 * No need to take pmd_lock here, even if some other threads
592 * is splitting the huge pmd we will get that event through
593 * mmu_notifier callback.
594 *
595 * So just read pmd value and check again its a transparent
596 * huge or device mapping one and compute corresponding pfn
597 * values.
598 */
599 pmd = pmd_read_atomic(pmdp);
600 barrier();
601 if (!pmd_devmap(pmd) && !pmd_trans_huge(pmd))
602 goto again;
74eee180 603
53f5c3f4 604 return hmm_vma_handle_pmd(walk, addr, end, &pfns[i], pmd);
da4c3c73
JG
605 }
606
607 if (pmd_bad(*pmdp))
608 return hmm_pfns_bad(start, end, walk);
609
610 ptep = pte_offset_map(pmdp, addr);
611 for (; addr < end; addr += PAGE_SIZE, ptep++, i++) {
53f5c3f4 612 int r;
74eee180 613
53f5c3f4
JG
614 r = hmm_vma_handle_pte(walk, addr, end, pmdp, ptep, &pfns[i]);
615 if (r) {
616 /* hmm_vma_handle_pte() did unmap pte directory */
617 hmm_vma_walk->last = addr;
618 return r;
74eee180 619 }
da4c3c73
JG
620 }
621 pte_unmap(ptep - 1);
622
53f5c3f4 623 hmm_vma_walk->last = addr;
da4c3c73
JG
624 return 0;
625}
626
f88a1e90
JG
627static void hmm_pfns_clear(struct hmm_range *range,
628 uint64_t *pfns,
33cd47dc
JG
629 unsigned long addr,
630 unsigned long end)
631{
632 for (; addr < end; addr += PAGE_SIZE, pfns++)
f88a1e90 633 *pfns = range->values[HMM_PFN_NONE];
33cd47dc
JG
634}
635
855ce7d2
JG
636static void hmm_pfns_special(struct hmm_range *range)
637{
638 unsigned long addr = range->start, i = 0;
639
640 for (; addr < range->end; addr += PAGE_SIZE, i++)
f88a1e90 641 range->pfns[i] = range->values[HMM_PFN_SPECIAL];
855ce7d2
JG
642}
643
da4c3c73
JG
644/*
645 * hmm_vma_get_pfns() - snapshot CPU page table for a range of virtual addresses
08232a45 646 * @range: range being snapshotted
86586a41
JG
647 * Returns: -EINVAL if invalid argument, -ENOMEM out of memory, -EPERM invalid
648 * vma permission, 0 success
da4c3c73
JG
649 *
650 * This snapshots the CPU page table for a range of virtual addresses. Snapshot
651 * validity is tracked by range struct. See hmm_vma_range_done() for further
652 * information.
653 *
654 * The range struct is initialized here. It tracks the CPU page table, but only
655 * if the function returns success (0), in which case the caller must then call
656 * hmm_vma_range_done() to stop CPU page table update tracking on this range.
657 *
658 * NOT CALLING hmm_vma_range_done() IF FUNCTION RETURNS 0 WILL LEAD TO SERIOUS
659 * MEMORY CORRUPTION ! YOU HAVE BEEN WARNED !
660 */
08232a45 661int hmm_vma_get_pfns(struct hmm_range *range)
da4c3c73 662{
08232a45 663 struct vm_area_struct *vma = range->vma;
74eee180 664 struct hmm_vma_walk hmm_vma_walk;
da4c3c73
JG
665 struct mm_walk mm_walk;
666 struct hmm *hmm;
667
da4c3c73 668 /* Sanity check, this really should not happen ! */
08232a45 669 if (range->start < vma->vm_start || range->start >= vma->vm_end)
da4c3c73 670 return -EINVAL;
08232a45 671 if (range->end < vma->vm_start || range->end > vma->vm_end)
da4c3c73
JG
672 return -EINVAL;
673
674 hmm = hmm_register(vma->vm_mm);
675 if (!hmm)
676 return -ENOMEM;
677 /* Caller must have registered a mirror, via hmm_mirror_register() ! */
678 if (!hmm->mmu_notifier.ops)
679 return -EINVAL;
680
855ce7d2 681 /* FIXME support hugetlb fs */
e1fb4a08
DJ
682 if (is_vm_hugetlb_page(vma) || (vma->vm_flags & VM_SPECIAL) ||
683 vma_is_dax(vma)) {
855ce7d2
JG
684 hmm_pfns_special(range);
685 return -EINVAL;
686 }
687
86586a41
JG
688 if (!(vma->vm_flags & VM_READ)) {
689 /*
690 * If vma do not allow read access, then assume that it does
691 * not allow write access, either. Architecture that allow
692 * write without read access are not supported by HMM, because
693 * operations such has atomic access would not work.
694 */
f88a1e90 695 hmm_pfns_clear(range, range->pfns, range->start, range->end);
86586a41
JG
696 return -EPERM;
697 }
698
da4c3c73 699 /* Initialize range to track CPU page table update */
da4c3c73
JG
700 spin_lock(&hmm->lock);
701 range->valid = true;
702 list_add_rcu(&range->list, &hmm->ranges);
703 spin_unlock(&hmm->lock);
704
74eee180
JG
705 hmm_vma_walk.fault = false;
706 hmm_vma_walk.range = range;
707 mm_walk.private = &hmm_vma_walk;
708
da4c3c73
JG
709 mm_walk.vma = vma;
710 mm_walk.mm = vma->vm_mm;
da4c3c73
JG
711 mm_walk.pte_entry = NULL;
712 mm_walk.test_walk = NULL;
713 mm_walk.hugetlb_entry = NULL;
714 mm_walk.pmd_entry = hmm_vma_walk_pmd;
715 mm_walk.pte_hole = hmm_vma_walk_hole;
716
08232a45 717 walk_page_range(range->start, range->end, &mm_walk);
da4c3c73
JG
718 return 0;
719}
720EXPORT_SYMBOL(hmm_vma_get_pfns);
721
722/*
723 * hmm_vma_range_done() - stop tracking change to CPU page table over a range
da4c3c73
JG
724 * @range: range being tracked
725 * Returns: false if range data has been invalidated, true otherwise
726 *
727 * Range struct is used to track updates to the CPU page table after a call to
728 * either hmm_vma_get_pfns() or hmm_vma_fault(). Once the device driver is done
729 * using the data, or wants to lock updates to the data it got from those
730 * functions, it must call the hmm_vma_range_done() function, which will then
731 * stop tracking CPU page table updates.
732 *
733 * Note that device driver must still implement general CPU page table update
734 * tracking either by using hmm_mirror (see hmm_mirror_register()) or by using
735 * the mmu_notifier API directly.
736 *
737 * CPU page table update tracking done through hmm_range is only temporary and
738 * to be used while trying to duplicate CPU page table contents for a range of
739 * virtual addresses.
740 *
741 * There are two ways to use this :
742 * again:
08232a45 743 * hmm_vma_get_pfns(range); or hmm_vma_fault(...);
da4c3c73
JG
744 * trans = device_build_page_table_update_transaction(pfns);
745 * device_page_table_lock();
08232a45 746 * if (!hmm_vma_range_done(range)) {
da4c3c73
JG
747 * device_page_table_unlock();
748 * goto again;
749 * }
750 * device_commit_transaction(trans);
751 * device_page_table_unlock();
752 *
753 * Or:
08232a45 754 * hmm_vma_get_pfns(range); or hmm_vma_fault(...);
da4c3c73 755 * device_page_table_lock();
08232a45
JG
756 * hmm_vma_range_done(range);
757 * device_update_page_table(range->pfns);
da4c3c73
JG
758 * device_page_table_unlock();
759 */
08232a45 760bool hmm_vma_range_done(struct hmm_range *range)
da4c3c73
JG
761{
762 unsigned long npages = (range->end - range->start) >> PAGE_SHIFT;
763 struct hmm *hmm;
764
765 if (range->end <= range->start) {
766 BUG();
767 return false;
768 }
769
08232a45 770 hmm = hmm_register(range->vma->vm_mm);
da4c3c73
JG
771 if (!hmm) {
772 memset(range->pfns, 0, sizeof(*range->pfns) * npages);
773 return false;
774 }
775
776 spin_lock(&hmm->lock);
777 list_del_rcu(&range->list);
778 spin_unlock(&hmm->lock);
779
780 return range->valid;
781}
782EXPORT_SYMBOL(hmm_vma_range_done);
74eee180
JG
783
784/*
785 * hmm_vma_fault() - try to fault some address in a virtual address range
08232a45 786 * @range: range being faulted
74eee180
JG
787 * @block: allow blocking on fault (if true it sleeps and do not drop mmap_sem)
788 * Returns: 0 success, error otherwise (-EAGAIN means mmap_sem have been drop)
789 *
790 * This is similar to a regular CPU page fault except that it will not trigger
791 * any memory migration if the memory being faulted is not accessible by CPUs.
792 *
ff05c0c6
JG
793 * On error, for one virtual address in the range, the function will mark the
794 * corresponding HMM pfn entry with an error flag.
74eee180
JG
795 *
796 * Expected use pattern:
797 * retry:
798 * down_read(&mm->mmap_sem);
799 * // Find vma and address device wants to fault, initialize hmm_pfn_t
800 * // array accordingly
08232a45 801 * ret = hmm_vma_fault(range, write, block);
74eee180
JG
802 * switch (ret) {
803 * case -EAGAIN:
08232a45 804 * hmm_vma_range_done(range);
74eee180
JG
805 * // You might want to rate limit or yield to play nicely, you may
806 * // also commit any valid pfn in the array assuming that you are
807 * // getting true from hmm_vma_range_monitor_end()
808 * goto retry;
809 * case 0:
810 * break;
86586a41
JG
811 * case -ENOMEM:
812 * case -EINVAL:
813 * case -EPERM:
74eee180
JG
814 * default:
815 * // Handle error !
816 * up_read(&mm->mmap_sem)
817 * return;
818 * }
819 * // Take device driver lock that serialize device page table update
820 * driver_lock_device_page_table_update();
08232a45 821 * hmm_vma_range_done(range);
74eee180
JG
822 * // Commit pfns we got from hmm_vma_fault()
823 * driver_unlock_device_page_table_update();
824 * up_read(&mm->mmap_sem)
825 *
826 * YOU MUST CALL hmm_vma_range_done() AFTER THIS FUNCTION RETURN SUCCESS (0)
827 * BEFORE FREEING THE range struct OR YOU WILL HAVE SERIOUS MEMORY CORRUPTION !
828 *
829 * YOU HAVE BEEN WARNED !
830 */
2aee09d8 831int hmm_vma_fault(struct hmm_range *range, bool block)
74eee180 832{
08232a45
JG
833 struct vm_area_struct *vma = range->vma;
834 unsigned long start = range->start;
74eee180
JG
835 struct hmm_vma_walk hmm_vma_walk;
836 struct mm_walk mm_walk;
837 struct hmm *hmm;
838 int ret;
839
840 /* Sanity check, this really should not happen ! */
08232a45 841 if (range->start < vma->vm_start || range->start >= vma->vm_end)
74eee180 842 return -EINVAL;
08232a45 843 if (range->end < vma->vm_start || range->end > vma->vm_end)
74eee180
JG
844 return -EINVAL;
845
846 hmm = hmm_register(vma->vm_mm);
847 if (!hmm) {
f88a1e90 848 hmm_pfns_clear(range, range->pfns, range->start, range->end);
74eee180
JG
849 return -ENOMEM;
850 }
851 /* Caller must have registered a mirror using hmm_mirror_register() */
852 if (!hmm->mmu_notifier.ops)
853 return -EINVAL;
854
855ce7d2 855 /* FIXME support hugetlb fs */
e1fb4a08
DJ
856 if (is_vm_hugetlb_page(vma) || (vma->vm_flags & VM_SPECIAL) ||
857 vma_is_dax(vma)) {
855ce7d2
JG
858 hmm_pfns_special(range);
859 return -EINVAL;
860 }
861
86586a41
JG
862 if (!(vma->vm_flags & VM_READ)) {
863 /*
864 * If vma do not allow read access, then assume that it does
865 * not allow write access, either. Architecture that allow
866 * write without read access are not supported by HMM, because
867 * operations such has atomic access would not work.
868 */
f88a1e90 869 hmm_pfns_clear(range, range->pfns, range->start, range->end);
86586a41
JG
870 return -EPERM;
871 }
74eee180 872
86586a41
JG
873 /* Initialize range to track CPU page table update */
874 spin_lock(&hmm->lock);
875 range->valid = true;
876 list_add_rcu(&range->list, &hmm->ranges);
877 spin_unlock(&hmm->lock);
878
74eee180 879 hmm_vma_walk.fault = true;
74eee180
JG
880 hmm_vma_walk.block = block;
881 hmm_vma_walk.range = range;
882 mm_walk.private = &hmm_vma_walk;
883 hmm_vma_walk.last = range->start;
884
885 mm_walk.vma = vma;
886 mm_walk.mm = vma->vm_mm;
887 mm_walk.pte_entry = NULL;
888 mm_walk.test_walk = NULL;
889 mm_walk.hugetlb_entry = NULL;
890 mm_walk.pmd_entry = hmm_vma_walk_pmd;
891 mm_walk.pte_hole = hmm_vma_walk_hole;
892
893 do {
08232a45 894 ret = walk_page_range(start, range->end, &mm_walk);
74eee180
JG
895 start = hmm_vma_walk.last;
896 } while (ret == -EAGAIN);
897
898 if (ret) {
899 unsigned long i;
900
901 i = (hmm_vma_walk.last - range->start) >> PAGE_SHIFT;
f88a1e90
JG
902 hmm_pfns_clear(range, &range->pfns[i], hmm_vma_walk.last,
903 range->end);
08232a45 904 hmm_vma_range_done(range);
74eee180
JG
905 }
906 return ret;
907}
908EXPORT_SYMBOL(hmm_vma_fault);
c0b12405 909#endif /* IS_ENABLED(CONFIG_HMM_MIRROR) */
4ef589dc
JG
910
911
df6ad698 912#if IS_ENABLED(CONFIG_DEVICE_PRIVATE) || IS_ENABLED(CONFIG_DEVICE_PUBLIC)
4ef589dc
JG
913struct page *hmm_vma_alloc_locked_page(struct vm_area_struct *vma,
914 unsigned long addr)
915{
916 struct page *page;
917
918 page = alloc_page_vma(GFP_HIGHUSER, vma, addr);
919 if (!page)
920 return NULL;
921 lock_page(page);
922 return page;
923}
924EXPORT_SYMBOL(hmm_vma_alloc_locked_page);
925
926
927static void hmm_devmem_ref_release(struct percpu_ref *ref)
928{
929 struct hmm_devmem *devmem;
930
931 devmem = container_of(ref, struct hmm_devmem, ref);
932 complete(&devmem->completion);
933}
934
935static void hmm_devmem_ref_exit(void *data)
936{
937 struct percpu_ref *ref = data;
938 struct hmm_devmem *devmem;
939
940 devmem = container_of(ref, struct hmm_devmem, ref);
941 percpu_ref_exit(ref);
942 devm_remove_action(devmem->device, &hmm_devmem_ref_exit, data);
943}
944
945static void hmm_devmem_ref_kill(void *data)
946{
947 struct percpu_ref *ref = data;
948 struct hmm_devmem *devmem;
949
950 devmem = container_of(ref, struct hmm_devmem, ref);
951 percpu_ref_kill(ref);
952 wait_for_completion(&devmem->completion);
953 devm_remove_action(devmem->device, &hmm_devmem_ref_kill, data);
954}
955
956static int hmm_devmem_fault(struct vm_area_struct *vma,
957 unsigned long addr,
958 const struct page *page,
959 unsigned int flags,
960 pmd_t *pmdp)
961{
962 struct hmm_devmem *devmem = page->pgmap->data;
963
964 return devmem->ops->fault(devmem, vma, addr, page, flags, pmdp);
965}
966
967static void hmm_devmem_free(struct page *page, void *data)
968{
969 struct hmm_devmem *devmem = data;
970
2fa147bd
DW
971 page->mapping = NULL;
972
4ef589dc
JG
973 devmem->ops->free(devmem, page);
974}
975
976static DEFINE_MUTEX(hmm_devmem_lock);
977static RADIX_TREE(hmm_devmem_radix, GFP_KERNEL);
978
979static void hmm_devmem_radix_release(struct resource *resource)
980{
1e926419 981 resource_size_t key;
4ef589dc
JG
982
983 mutex_lock(&hmm_devmem_lock);
984 for (key = resource->start;
985 key <= resource->end;
986 key += PA_SECTION_SIZE)
987 radix_tree_delete(&hmm_devmem_radix, key >> PA_SECTION_SHIFT);
988 mutex_unlock(&hmm_devmem_lock);
989}
990
991static void hmm_devmem_release(struct device *dev, void *data)
992{
993 struct hmm_devmem *devmem = data;
994 struct resource *resource = devmem->resource;
995 unsigned long start_pfn, npages;
996 struct zone *zone;
997 struct page *page;
998
999 if (percpu_ref_tryget_live(&devmem->ref)) {
1000 dev_WARN(dev, "%s: page mapping is still live!\n", __func__);
1001 percpu_ref_put(&devmem->ref);
1002 }
1003
1004 /* pages are dead and unused, undo the arch mapping */
1005 start_pfn = (resource->start & ~(PA_SECTION_SIZE - 1)) >> PAGE_SHIFT;
1006 npages = ALIGN(resource_size(resource), PA_SECTION_SIZE) >> PAGE_SHIFT;
1007
1008 page = pfn_to_page(start_pfn);
1009 zone = page_zone(page);
1010
1011 mem_hotplug_begin();
d3df0a42 1012 if (resource->desc == IORES_DESC_DEVICE_PRIVATE_MEMORY)
da024512 1013 __remove_pages(zone, start_pfn, npages, NULL);
d3df0a42
JG
1014 else
1015 arch_remove_memory(start_pfn << PAGE_SHIFT,
da024512 1016 npages << PAGE_SHIFT, NULL);
4ef589dc
JG
1017 mem_hotplug_done();
1018
1019 hmm_devmem_radix_release(resource);
1020}
1021
4ef589dc
JG
1022static int hmm_devmem_pages_create(struct hmm_devmem *devmem)
1023{
1024 resource_size_t key, align_start, align_size, align_end;
1025 struct device *device = devmem->device;
1026 int ret, nid, is_ram;
4ef589dc
JG
1027
1028 align_start = devmem->resource->start & ~(PA_SECTION_SIZE - 1);
1029 align_size = ALIGN(devmem->resource->start +
1030 resource_size(devmem->resource),
1031 PA_SECTION_SIZE) - align_start;
1032
1033 is_ram = region_intersects(align_start, align_size,
1034 IORESOURCE_SYSTEM_RAM,
1035 IORES_DESC_NONE);
1036 if (is_ram == REGION_MIXED) {
1037 WARN_ONCE(1, "%s attempted on mixed region %pr\n",
1038 __func__, devmem->resource);
1039 return -ENXIO;
1040 }
1041 if (is_ram == REGION_INTERSECTS)
1042 return -ENXIO;
1043
d3df0a42
JG
1044 if (devmem->resource->desc == IORES_DESC_DEVICE_PUBLIC_MEMORY)
1045 devmem->pagemap.type = MEMORY_DEVICE_PUBLIC;
1046 else
1047 devmem->pagemap.type = MEMORY_DEVICE_PRIVATE;
1048
e7744aa2 1049 devmem->pagemap.res = *devmem->resource;
4ef589dc
JG
1050 devmem->pagemap.page_fault = hmm_devmem_fault;
1051 devmem->pagemap.page_free = hmm_devmem_free;
1052 devmem->pagemap.dev = devmem->device;
1053 devmem->pagemap.ref = &devmem->ref;
1054 devmem->pagemap.data = devmem;
1055
1056 mutex_lock(&hmm_devmem_lock);
1057 align_end = align_start + align_size - 1;
1058 for (key = align_start; key <= align_end; key += PA_SECTION_SIZE) {
1059 struct hmm_devmem *dup;
1060
18be460e
TH
1061 dup = radix_tree_lookup(&hmm_devmem_radix,
1062 key >> PA_SECTION_SHIFT);
4ef589dc
JG
1063 if (dup) {
1064 dev_err(device, "%s: collides with mapping for %s\n",
1065 __func__, dev_name(dup->device));
1066 mutex_unlock(&hmm_devmem_lock);
1067 ret = -EBUSY;
1068 goto error;
1069 }
1070 ret = radix_tree_insert(&hmm_devmem_radix,
1071 key >> PA_SECTION_SHIFT,
1072 devmem);
1073 if (ret) {
1074 dev_err(device, "%s: failed: %d\n", __func__, ret);
1075 mutex_unlock(&hmm_devmem_lock);
1076 goto error_radix;
1077 }
1078 }
1079 mutex_unlock(&hmm_devmem_lock);
1080
1081 nid = dev_to_node(device);
1082 if (nid < 0)
1083 nid = numa_mem_id();
1084
1085 mem_hotplug_begin();
1086 /*
1087 * For device private memory we call add_pages() as we only need to
1088 * allocate and initialize struct page for the device memory. More-
1089 * over the device memory is un-accessible thus we do not want to
1090 * create a linear mapping for the memory like arch_add_memory()
1091 * would do.
d3df0a42
JG
1092 *
1093 * For device public memory, which is accesible by the CPU, we do
1094 * want the linear mapping and thus use arch_add_memory().
4ef589dc 1095 */
d3df0a42 1096 if (devmem->pagemap.type == MEMORY_DEVICE_PUBLIC)
24e6d5a5
CH
1097 ret = arch_add_memory(nid, align_start, align_size, NULL,
1098 false);
d3df0a42
JG
1099 else
1100 ret = add_pages(nid, align_start >> PAGE_SHIFT,
24e6d5a5 1101 align_size >> PAGE_SHIFT, NULL, false);
4ef589dc
JG
1102 if (ret) {
1103 mem_hotplug_done();
1104 goto error_add_memory;
1105 }
1106 move_pfn_range_to_zone(&NODE_DATA(nid)->node_zones[ZONE_DEVICE],
1107 align_start >> PAGE_SHIFT,
a99583e7 1108 align_size >> PAGE_SHIFT, NULL);
4ef589dc
JG
1109 mem_hotplug_done();
1110
966cf44f
AD
1111 /*
1112 * Initialization of the pages has been deferred until now in order
1113 * to allow us to do the work while not holding the hotplug lock.
1114 */
1115 memmap_init_zone_device(&NODE_DATA(nid)->node_zones[ZONE_DEVICE],
1116 align_start >> PAGE_SHIFT,
1117 align_size >> PAGE_SHIFT, &devmem->pagemap);
4ef589dc 1118
4ef589dc
JG
1119 return 0;
1120
1121error_add_memory:
1122 untrack_pfn(NULL, PHYS_PFN(align_start), align_size);
1123error_radix:
1124 hmm_devmem_radix_release(devmem->resource);
1125error:
1126 return ret;
1127}
1128
1129static int hmm_devmem_match(struct device *dev, void *data, void *match_data)
1130{
1131 struct hmm_devmem *devmem = data;
1132
1133 return devmem->resource == match_data;
1134}
1135
1136static void hmm_devmem_pages_remove(struct hmm_devmem *devmem)
1137{
1138 devres_release(devmem->device, &hmm_devmem_release,
1139 &hmm_devmem_match, devmem->resource);
1140}
1141
1142/*
1143 * hmm_devmem_add() - hotplug ZONE_DEVICE memory for device memory
1144 *
1145 * @ops: memory event device driver callback (see struct hmm_devmem_ops)
1146 * @device: device struct to bind the resource too
1147 * @size: size in bytes of the device memory to add
1148 * Returns: pointer to new hmm_devmem struct ERR_PTR otherwise
1149 *
1150 * This function first finds an empty range of physical address big enough to
1151 * contain the new resource, and then hotplugs it as ZONE_DEVICE memory, which
1152 * in turn allocates struct pages. It does not do anything beyond that; all
1153 * events affecting the memory will go through the various callbacks provided
1154 * by hmm_devmem_ops struct.
1155 *
1156 * Device driver should call this function during device initialization and
1157 * is then responsible of memory management. HMM only provides helpers.
1158 */
1159struct hmm_devmem *hmm_devmem_add(const struct hmm_devmem_ops *ops,
1160 struct device *device,
1161 unsigned long size)
1162{
1163 struct hmm_devmem *devmem;
1164 resource_size_t addr;
1165 int ret;
1166
e7638488 1167 dev_pagemap_get_ops();
4ef589dc
JG
1168
1169 devmem = devres_alloc_node(&hmm_devmem_release, sizeof(*devmem),
1170 GFP_KERNEL, dev_to_node(device));
1171 if (!devmem)
1172 return ERR_PTR(-ENOMEM);
1173
1174 init_completion(&devmem->completion);
1175 devmem->pfn_first = -1UL;
1176 devmem->pfn_last = -1UL;
1177 devmem->resource = NULL;
1178 devmem->device = device;
1179 devmem->ops = ops;
1180
1181 ret = percpu_ref_init(&devmem->ref, &hmm_devmem_ref_release,
1182 0, GFP_KERNEL);
1183 if (ret)
1184 goto error_percpu_ref;
1185
1186 ret = devm_add_action(device, hmm_devmem_ref_exit, &devmem->ref);
1187 if (ret)
1188 goto error_devm_add_action;
1189
1190 size = ALIGN(size, PA_SECTION_SIZE);
1191 addr = min((unsigned long)iomem_resource.end,
1192 (1UL << MAX_PHYSMEM_BITS) - 1);
1193 addr = addr - size + 1UL;
1194
1195 /*
1196 * FIXME add a new helper to quickly walk resource tree and find free
1197 * range
1198 *
1199 * FIXME what about ioport_resource resource ?
1200 */
1201 for (; addr > size && addr >= iomem_resource.start; addr -= size) {
1202 ret = region_intersects(addr, size, 0, IORES_DESC_NONE);
1203 if (ret != REGION_DISJOINT)
1204 continue;
1205
1206 devmem->resource = devm_request_mem_region(device, addr, size,
1207 dev_name(device));
1208 if (!devmem->resource) {
1209 ret = -ENOMEM;
1210 goto error_no_resource;
1211 }
1212 break;
1213 }
1214 if (!devmem->resource) {
1215 ret = -ERANGE;
1216 goto error_no_resource;
1217 }
1218
1219 devmem->resource->desc = IORES_DESC_DEVICE_PRIVATE_MEMORY;
1220 devmem->pfn_first = devmem->resource->start >> PAGE_SHIFT;
1221 devmem->pfn_last = devmem->pfn_first +
1222 (resource_size(devmem->resource) >> PAGE_SHIFT);
1223
1224 ret = hmm_devmem_pages_create(devmem);
1225 if (ret)
1226 goto error_pages;
1227
1228 devres_add(device, devmem);
1229
1230 ret = devm_add_action(device, hmm_devmem_ref_kill, &devmem->ref);
1231 if (ret) {
1232 hmm_devmem_remove(devmem);
1233 return ERR_PTR(ret);
1234 }
1235
1236 return devmem;
1237
1238error_pages:
1239 devm_release_mem_region(device, devmem->resource->start,
1240 resource_size(devmem->resource));
1241error_no_resource:
1242error_devm_add_action:
1243 hmm_devmem_ref_kill(&devmem->ref);
1244 hmm_devmem_ref_exit(&devmem->ref);
1245error_percpu_ref:
1246 devres_free(devmem);
1247 return ERR_PTR(ret);
1248}
1249EXPORT_SYMBOL(hmm_devmem_add);
1250
d3df0a42
JG
1251struct hmm_devmem *hmm_devmem_add_resource(const struct hmm_devmem_ops *ops,
1252 struct device *device,
1253 struct resource *res)
1254{
1255 struct hmm_devmem *devmem;
1256 int ret;
1257
1258 if (res->desc != IORES_DESC_DEVICE_PUBLIC_MEMORY)
1259 return ERR_PTR(-EINVAL);
1260
e7638488 1261 dev_pagemap_get_ops();
d3df0a42
JG
1262
1263 devmem = devres_alloc_node(&hmm_devmem_release, sizeof(*devmem),
1264 GFP_KERNEL, dev_to_node(device));
1265 if (!devmem)
1266 return ERR_PTR(-ENOMEM);
1267
1268 init_completion(&devmem->completion);
1269 devmem->pfn_first = -1UL;
1270 devmem->pfn_last = -1UL;
1271 devmem->resource = res;
1272 devmem->device = device;
1273 devmem->ops = ops;
1274
1275 ret = percpu_ref_init(&devmem->ref, &hmm_devmem_ref_release,
1276 0, GFP_KERNEL);
1277 if (ret)
1278 goto error_percpu_ref;
1279
1280 ret = devm_add_action(device, hmm_devmem_ref_exit, &devmem->ref);
1281 if (ret)
1282 goto error_devm_add_action;
1283
1284
1285 devmem->pfn_first = devmem->resource->start >> PAGE_SHIFT;
1286 devmem->pfn_last = devmem->pfn_first +
1287 (resource_size(devmem->resource) >> PAGE_SHIFT);
1288
1289 ret = hmm_devmem_pages_create(devmem);
1290 if (ret)
1291 goto error_devm_add_action;
1292
1293 devres_add(device, devmem);
1294
1295 ret = devm_add_action(device, hmm_devmem_ref_kill, &devmem->ref);
1296 if (ret) {
1297 hmm_devmem_remove(devmem);
1298 return ERR_PTR(ret);
1299 }
1300
1301 return devmem;
1302
1303error_devm_add_action:
1304 hmm_devmem_ref_kill(&devmem->ref);
1305 hmm_devmem_ref_exit(&devmem->ref);
1306error_percpu_ref:
1307 devres_free(devmem);
1308 return ERR_PTR(ret);
1309}
1310EXPORT_SYMBOL(hmm_devmem_add_resource);
1311
4ef589dc
JG
1312/*
1313 * hmm_devmem_remove() - remove device memory (kill and free ZONE_DEVICE)
1314 *
1315 * @devmem: hmm_devmem struct use to track and manage the ZONE_DEVICE memory
1316 *
1317 * This will hot-unplug memory that was hotplugged by hmm_devmem_add on behalf
1318 * of the device driver. It will free struct page and remove the resource that
1319 * reserved the physical address range for this device memory.
1320 */
1321void hmm_devmem_remove(struct hmm_devmem *devmem)
1322{
1323 resource_size_t start, size;
1324 struct device *device;
d3df0a42 1325 bool cdm = false;
4ef589dc
JG
1326
1327 if (!devmem)
1328 return;
1329
1330 device = devmem->device;
1331 start = devmem->resource->start;
1332 size = resource_size(devmem->resource);
1333
d3df0a42 1334 cdm = devmem->resource->desc == IORES_DESC_DEVICE_PUBLIC_MEMORY;
4ef589dc
JG
1335 hmm_devmem_ref_kill(&devmem->ref);
1336 hmm_devmem_ref_exit(&devmem->ref);
1337 hmm_devmem_pages_remove(devmem);
1338
d3df0a42
JG
1339 if (!cdm)
1340 devm_release_mem_region(device, start, size);
4ef589dc
JG
1341}
1342EXPORT_SYMBOL(hmm_devmem_remove);
858b54da
JG
1343
1344/*
1345 * A device driver that wants to handle multiple devices memory through a
1346 * single fake device can use hmm_device to do so. This is purely a helper
1347 * and it is not needed to make use of any HMM functionality.
1348 */
1349#define HMM_DEVICE_MAX 256
1350
1351static DECLARE_BITMAP(hmm_device_mask, HMM_DEVICE_MAX);
1352static DEFINE_SPINLOCK(hmm_device_lock);
1353static struct class *hmm_device_class;
1354static dev_t hmm_device_devt;
1355
1356static void hmm_device_release(struct device *device)
1357{
1358 struct hmm_device *hmm_device;
1359
1360 hmm_device = container_of(device, struct hmm_device, device);
1361 spin_lock(&hmm_device_lock);
1362 clear_bit(hmm_device->minor, hmm_device_mask);
1363 spin_unlock(&hmm_device_lock);
1364
1365 kfree(hmm_device);
1366}
1367
1368struct hmm_device *hmm_device_new(void *drvdata)
1369{
1370 struct hmm_device *hmm_device;
1371
1372 hmm_device = kzalloc(sizeof(*hmm_device), GFP_KERNEL);
1373 if (!hmm_device)
1374 return ERR_PTR(-ENOMEM);
1375
1376 spin_lock(&hmm_device_lock);
1377 hmm_device->minor = find_first_zero_bit(hmm_device_mask, HMM_DEVICE_MAX);
1378 if (hmm_device->minor >= HMM_DEVICE_MAX) {
1379 spin_unlock(&hmm_device_lock);
1380 kfree(hmm_device);
1381 return ERR_PTR(-EBUSY);
1382 }
1383 set_bit(hmm_device->minor, hmm_device_mask);
1384 spin_unlock(&hmm_device_lock);
1385
1386 dev_set_name(&hmm_device->device, "hmm_device%d", hmm_device->minor);
1387 hmm_device->device.devt = MKDEV(MAJOR(hmm_device_devt),
1388 hmm_device->minor);
1389 hmm_device->device.release = hmm_device_release;
1390 dev_set_drvdata(&hmm_device->device, drvdata);
1391 hmm_device->device.class = hmm_device_class;
1392 device_initialize(&hmm_device->device);
1393
1394 return hmm_device;
1395}
1396EXPORT_SYMBOL(hmm_device_new);
1397
1398void hmm_device_put(struct hmm_device *hmm_device)
1399{
1400 put_device(&hmm_device->device);
1401}
1402EXPORT_SYMBOL(hmm_device_put);
1403
1404static int __init hmm_init(void)
1405{
1406 int ret;
1407
1408 ret = alloc_chrdev_region(&hmm_device_devt, 0,
1409 HMM_DEVICE_MAX,
1410 "hmm_device");
1411 if (ret)
1412 return ret;
1413
1414 hmm_device_class = class_create(THIS_MODULE, "hmm_device");
1415 if (IS_ERR(hmm_device_class)) {
1416 unregister_chrdev_region(hmm_device_devt, HMM_DEVICE_MAX);
1417 return PTR_ERR(hmm_device_class);
1418 }
1419 return 0;
1420}
1421
1422device_initcall(hmm_init);
df6ad698 1423#endif /* CONFIG_DEVICE_PRIVATE || CONFIG_DEVICE_PUBLIC */